function form_check()
{
	if(form1.phone.value=="")
	{
	alert("Please enter the phone no.");
	form1.phone.focus();
	return false;
	}
 
	  if(form1.Job_type.value=="")
	{
		alert("Please select the job type");
		form1.Job_type.focus();
		return false;
	}
	  if(form1.Suburb.value=="")
	{
		alert("Please select the suburb where job is located");
		form1.Suburb.focus();
		return false;
	}
	
	if(!document.getElementById("verify").value){
alert('Please enter the verification code given below');
document.getElementById("verify").focus();
return false;
}
if(document.getElementById("verify").value!=document.getElementById("vp").value){
alert('Verification code does not match');
document.getElementById("verify").value='';
document.getElementById("verify").focus();
return false;
}	
}


