function CheckForm() {
		if(document.helper.Loan_Amount.value == -1) {

			alert('Please Select Loan Amount.');

			document.helper.Loan_Amount.value = '-1';

			document.helper.Loan_Amount.focus();

			return false;
		}

		if(document.helper.fullname.value == "") {

			alert('Your Full Name is required.');

			document.helper.fullname.value = '';

			document.helper.fullname.focus();

			return false;
		}

		validRegExp = /^([A-Za-z0-9_\-\.])+\@([A-Za-z0-9_\-\.])+\.([A-Za-z]{2,4})$/;;

		if(document.helper.Email != null){

			strEmail = document.helper.Email.value;

			if (strEmail.search(validRegExp) == -1) {

				alert('Please enter a valid Email');

				document.helper.Email.value = '';

				document.helper.Email.focus();

				return false;

			}

		}

		validRegExp = /^([2-9]{1})+([0-9]{9})$/;

		if(document.helper.Home_Phone != null){

			strHome_Phone = document.helper.Home_Phone.value;

			if (strHome_Phone.search(validRegExp) == -1) {

				alert('Please enter a valid Home Phone');

				document.helper.Home_Phone.value = '';

				document.helper.Home_Phone.focus();

				return false;

			}

		}

		if(document.helper.State.value == -1) {

			alert('Please Select State.');

			document.helper.State.value = '-1';

			document.helper.State.focus();

			return false;

		}
		return true;

	}
