// JavaScript Document
	function validate1(){
	if (document.movingForm.date.value==""){
			alert('For The Best Quote Please Select A Moving Date!');
			document.movingForm.date.focus();
			return false;
		}
	if(!/^\d{1,2}\/\d{1,2}\/\d{4}$/.test(document.movingForm.date.value)) {
			alert('Date must use the following format: MM/DD/YYY');
			document.movingForm.date.focus();
			return false;
	}
		
		if (document.movingForm.Moving_From_City.value==""){
			alert('Please enter your Pickup City');
			document.movingForm.Moving_From_City.focus();
			return false;
		}
		   
	if (document.movingForm.Moving_From_State.value==""){
			alert('Please select your Pickup State.');
			document.movingForm.Moving_From_State.focus();
			return false;
		}
		   
	if (document.movingForm.Moving_To_City.value==""){
			alert('Please enter your Delivery City');
			document.movingForm.Moving_To_City.focus();
			return false;
		}
		
		if (document.movingForm.Moving_To_State.value==""){
			alert('Please select your Delivery State.');
			document.movingForm.Moving_To_State.focus();
			return false;
		}
		
		return true;
	}
	
	
	