function do_oil_change_lube_service_report_card_form_validation()

{

 	if (document.oil_change_lube_service_report_card_form.service_month.value=="")
 	{ 	 
   		alert("Please Select a Month Choice for Date of Visit!");
 		document.oil_change_lube_service_report_card_form.service_month.focus()
   		return false;
      	}

 	if (document.oil_change_lube_service_report_card_form.service_day.value=="")
 	{ 	 
   		alert("Please Select a Day Choice for Date of Visit!");
 		document.oil_change_lube_service_report_card_form.service_day.focus()
   		return false;
      	}

 	if (document.oil_change_lube_service_report_card_form.service_year.value=="")
 	{ 	 
   		alert("Please Select a Year Choice for Date of Visit!");
 		document.oil_change_lube_service_report_card_form.service_year.focus()
   		return false;
      	}

 	if (document.oil_change_lube_service_report_card_form.service_location.value=="")
 	{ 	 
   		alert("Please Select a Service Location Choice!");
 		document.oil_change_lube_service_report_card_form.service_location.focus()
   		return false;
      	}

 	if (document.oil_change_lube_service_report_card_form.overall_service_experience.value=="")
 	{ 	 
   		alert("Please Select a Satisfaction of Overall Experience Choice!");
 		document.oil_change_lube_service_report_card_form.overall_service_experience.focus()
   		return false;
      	}

   document.oil_change_lube_service_report_card_form.submit();

}
