								function validateUsedVehicleForm(form) {
								
								
										if (form.first_vehicle_make.value == "") {
		  									 alert("Please select the Vehicle Maker.");
		  									 form.first_vehicle_make.focus( );
		  									 return false;
		   								}									
										
										return true;  
									}
