function ValidateForm()
{
	if(document.OwnerInf.Title.options.selectedIndex==0)
	{
		alert("Select your Title");
		document.OwnerInf.Title.focus();
		return false;
	}
	else if(document.OwnerInf.Title.options.selectedIndex==4 && document.OwnerInf.OtherTitle.value==0)
	{
		alert("Specify the Title");
		document.OwnerInf.OtherTitle.focus();	
		return false;
					
	}	
	else if(document.OwnerInf.Title.options.selectedIndex==4 && document.OwnerInf.OtherTitle.value=="Specify Other")
	{
		alert("Specify the Title");
		document.OwnerInf.OtherTitle.focus();	
		document.OwnerInf.OtherTitle.select();	
		return false;							
	}
	
	else if (document.OwnerInf.Name.value==0)
	{
		alert("Enter Full Name");
		document.OwnerInf.Name.focus();
		return false;
	}
	else if (document.OwnerInf.IDNO.value==0)
	{
		alert("Enter your ID number");
		document.OwnerInf.IDNO.focus();
		return false;
	}
	else if(document.OwnerInf.WPhoneNumber.value==0)
	{
		alert("Enter Mobile Phone Number");
		document.OwnerInf.WPhoneNumber.focus();
		return false;
	}									
	else if(document.OwnerInf.emailID.value==0)
	{
		alert("Enter your Email");
		document.OwnerInf.emailID.focus();
		return false;
	}									
	else if(document.OwnerInf.City.options.selectedIndex==0)
	{
		alert("Select A City");
		document.OwnerInf.City.focus();
		return false;
	}
	else if(document.OwnerInf.Make.options.selectedIndex==0)
	{
		alert("Specify A Vehicle Make");
		document.OwnerInf.Make.focus();
		return false;
	}

	else if (document.OwnerInf.Model.value==0)
	{
		alert("Enter Model Year");
		document.OwnerInf.Model.focus();
		return false;
	}
	else if(document.OwnerInf.Chassis.value==0)
	{
		alert("Enter Six Digit Chassis No. ");
		document.OwnerInf.Chassis.focus();
		return false;
	}
	else if(document.OwnerInf.Plateno.value==0)
	{
		alert("Enter Plate No. ");
		document.OwnerInf.Plateno.focus();
		return false;
	}

	
	document.OwnerInf.submit();
	return true;
}

