<!--
function form_Validator(theForm)
{

 if (theForm.feet.value == "select")
 {
  alert("Please select your height in feet");
  theForm.feet.focus();
  return (false);
 }

 if (theForm.inches.value == "select")
 {
  alert("Please select your height in inches");
  theForm.inches.focus();
  return (false);
 }

 if (theForm.weight.value == "select")
 {
  alert("Please select your weight");
  theForm.weight.focus();
  return (false);
 }
 
  if (theForm.DD.value == "select")
 {
  alert("Please a Day for your Date of Birth");
  theForm.DD.focus();
  return (false);
 }
 
  if (theForm.MM.value == "select")
 {
  alert("Please a Month for your Date of Birth");
  theForm.MM.focus();
  return (false);
 }
 
  if (theForm.YY.value == "select")
 {
  alert("Please a Year for your Date of Birth");
  theForm.YY.focus();
  return (false);
 }
 
   if (theForm.tobacco.value == "select")
 {
  alert("Please answer the question regarding tobacco use");
  theForm.tobacco.focus();
  return (false);
 }
 
   if (theForm.coverageamount.value == "select")
 {
  alert("Please select a coverage amount");
  theForm.coverageamount.focus();
  return (false);
 }
 
   if (theForm.plan.value == "select")
 {
  alert("Please select a length of term");
  theForm.plan.focus();
  return (false);
 }

 if (theForm.state.value == "select")
 {
  alert("Please specify your state of residence");
  theForm.state.focus();
  return (false);
 }

 if (theForm.sex.value == "select")
 {
  alert("Please select a gender");
  theForm.sex.focus();
  return (false);
 }

 return (true);
}


//-->