	function chkAction(){
		var a=document.form;   
			if(!a.Business.value) {
				alert("Please fill in your select Type of Business");
				a.Business.focus();
				return false;
			}     
			if(!a.Firstname.value) {
				alert("Please fill in your Firstname");
				a.Firstname.focus();
				return false;
			}
			if(!a.Lastname.value) {
				alert("Please fill in your Lastname");
				a.Lastname.focus();
				return false;
			}
			if(!a.Address.value) {
				alert("Please fill in your Address");
				a.Address.focus();
				return false;
			}
			if(!a.City.value) {
				alert("Please fill in your City");
				a.City.focus();
				return false;
			}
			if(!a.StateProvince.value) {
				alert("Please fill in your State / Province");
				a.StateProvince.focus();
				return false;
			}
			if(!a.Country .value) {
				alert("Please fill in your Country ");
				a.Country .focus();
				return false;
			}
			if(!a.Postcode.value) {
				alert("Please fill in your Postcode");
				a.Postcode.focus();
				return false;
			}
			if ( !(/[0-9_\.\-]+/ig).test( a.Postcode.value ) ){
				alert( "Postcode you entered does not exist or is incorrect." );
				a.Postcode.focus();
				return false; 
			  }
			if(!a.Tel.value) {
				alert("Please fill in your Phone number");
				a.Tel.focus();
				return false;
			}
           if ( !(/[0-9_\.\-]+/ig).test( a.Tel.value ) ){
				alert( "Phone number you entered does not exist or is incorrect." );
				a.Tel.focus();
				return false; 
			  }
			if(!a.Email.value) {
				alert("Please fill in your E-mail");
				a.Email.focus();
				return false;
			}
			 if ( !(/[0-9a-zA-Z_\.\-]+@[0-9a-zA-Z_\.\-]+.[a-zA-Z]+/ig).test( a.Email.value ) ){
				alert( "E-Mail address you entered does not exist or is incorrect.");
				a.Email.focus();
				return false; 
			  }
			if(!a.wpcodeCON.value) {
				alert("Please fill in your Verification Code");
				a.wpcodeCON.focus();
				return false;
			}
			if(a.wpcodeCON.value != a.wpcode.value) {
				alert("Verification Code you entered does not exist or is incorrect.");
				a.wpcodeCON.focus();
				return false;
			}
		return true;
	}