function checkForm() 
{
	// Check for correct zip code
	reZip = new RegExp(/(^\d{5}$)|(^\d{5}-\d{4}$)/);
 
	if (!reZip.test(document.CLICKinsureQuote.zipcode.value)) {
		alert("Zip Code Is Not Valid");
		return false;
	}
	return true;
} 