	function validateForm(theForm) {
		if(theForm.product.options[theForm.product.selectedIndex].value.length <= 0) {
			alert("Please select a Product.");
			return false;
		}
		return true;
	}