// JavaScript Document
	function validate1(){
	if (document.movingForm.date.value=="" || document.movingForm.date.value==" Move Date"){
			alert('For The Best Quote Please Select A Moving Date!');
			document.movingForm.date.focus();
			return false;
		}		
		if (document.movingForm.moving_service.value==""){
			alert('Please select your Moving Services Needed.');
			document.movingForm.moving_service.focus();
			return false;
		}
		if(document.movingForm.Moving_From_Zip.value.search(/^\d{5}([\-]\d{4})?$/)==-1)
		   {
			  alert("The zip code you entered is not valid.\r\nPlease enter a 5 digit or a 10 digit zip code.");
			  document.movingForm.Moving_From_Zip.focus();
			  return false;
		   }
		if (document.movingForm.Moving_To_City.value=="" || document.movingForm.Moving_To_City.value=="Delivery City"){
			alert('Please Enter your Delivery City');
			document.movingForm.Moving_To_City.focus();
			return false;
		}
		
		if (document.movingForm.move_from_state.value==""){
			alert('Please Select your Delivery State.');
			document.movingForm.move_from_state.focus();
			return false;
		}
			if (document.movingForm.size_residence.value==""){
			alert('Please Select the Size of your Move.');
			document.movingForm.size_residence.focus();
			
			return false;
		}
		
		return true;
	}
	
	
	