/*  
This script is part of the force customers to choose options
*/
function validate(theForm)
{
submitOK="True"
for (i = 0; i < theForm.elements.length ; i++) {
  if (theForm.elements[i].value == "default") {
    submitOK="False"
alert("Please " + theForm.elements[i].options[0].text )
  }
}
if (submitOK=="False")
 {
 return false
 }
}  