function validateForm()
{
	var form = document.gibbstown;
	
//  FOR NORMAL TEXT FIELD VALIDATIUON
	if(form.name.value=="")
	{
		alert("Please Enter Your Name") ;
		form.name.focus() ;
		return false;
	}
	
//  FOR NORMAL TEXT FIELD VALIDATIUON
	if(form.address.value=="")
	{
		alert("Please Enter Your Address") ;
		form.address.focus() ;
		return false;
	}
	
		if(form.town.value=="")
	{
		alert("Please Enter Your Town") ;
		form.town.focus() ;
		return false;
	}
	
		if(form.occupation.value=="")
	{
		alert("Please Enter Your Occupation") ;
	form.occupation.focus() ;
	return false;
	}
	
		if(form.dl.value=="")
	{
		alert("Please Enter Your DL") ;
		form.dl.focus() ;
		return false;
	}
	
	/*	if(form.state.value=="")
	{
		alert("Please Enter Your State") ;
		form.state.focus() ;
		return false;
	}*/
	

// FOR NUMARIC PHONE VALIDATIUON

	if(form.phone.value=="")
	{
		alert("Please Enter Your Phone number") ;
		form.phone.focus() ;
		return false;
	}
		if(isNaN(form.phone.value)==true)
		{
			alert("Phone number must be Numeric") ;
			form.phone.focus();
			form.phone.value="";
			return false;
		}	
		
		if(form.cell.value=="")
	{
		alert("Please Enter Your Cell Phone") ;
		form.cell.focus() ;
		return false;
	}
		if(isNaN(form.cell.value)==true)
		{
			alert("Cell Number must be numeric") ;
			form.cell.focus();
			form.cell.value="";
			return false;
	}
	
		if(form.age.value=="")
	{
		alert("Please Enter Your Age") ;
		form.age.focus() ;
		return false;
	}
		if(isNaN(form.age.value)==true)
		{
			alert("Age must be numeric") ;
			form.age.focus();
			form.age.value="";
			return false;
	}	
		
	
//  FOR DROPDOWN MENU VALIDATIUON
/*	if(form.timeformat.value=="")
	{
		alert("Please Select AM or PM") ;
		form.timeformat.focus() ;
		return false;
	}
		*/
//  FOR E-MAIL ID VALIDATIUON

	/*if(form.email.value=="")
	{
		alert("Please Enter Your Email ID!") ;
		form.email.focus() ;
		return false;
	}	
		if (!form.email.value.match(/^[\w\.\-]+@([\w\-]+\.)+[a-zA-Z]+$/))
		{
			alert("Please enter a valid E-mail ID!");
			form.email.focus();
			//form.email.value="";
			return false;
		}*/

	

//  FOR NORMAL TEXT FIELD VALIDATIUON
	if(form.mstatus.value=="")
	{
		alert("Please Enter Your Marital Status") ;
		form.mstatus.focus() ;
		return false;
	}
//  FOR NORMAL TEXT FIELD VALIDATIUON
	if(form.ss.value=="")
	{
		alert("Please Enter Your SS") ;
		form.ss.focus() ;
		return false;
	}
//  FOR NORMAL TEXT FIELD VALIDATIUON
	if(form.employer.value=="")
	{
		alert("Please Enter Your Company") ;
		form.employer.focus() ;
		return false;
	}
//  FOR NORMAL TEXT FIELD VALIDATIUON
	if(form.sign.value=="")
	{
		alert("Please Enter Your Signature") ;
		form.sign.focus() ;
		return false;
	}
	
		return;
}