function checkForm(form) {
	if(form.quantity.value <= 0) {
		alert('Please enter a Quantity');
		return false;
	}
}