function checkProduct(){
	var obj = document.productForm;	
	if(obj.selectOne.value==0){
		window.alert("You must select an option");
		}else{
		document.productForm.submit();
		}
	}