<!-- //hide the script
function form_validator(theForm)
{

	if(theForm.LowPrice.value == "") {
		 alert("Please select a low price.");
		 theForm.LowPrice.focus();
		 return(false);
	}

	if(theForm.HighPrice.value == "") {
		 alert("Please select a high price.");
		 theForm.HighPrice.focus();
		 return(false);
	}
	

	return (true);
}
// end script hiding -->