function validateForm(thisform) 
{
    if ( thisform.zip.value == '' || thisform.spa.value == '') 
	{
	    alert("Please fill out zip code and choose career interest.")
		return false;
	}
	return true;
}

function validateForm2(thisform) 
{
    if ( thisform.zip.value == '' || thisform.beauty.value == '') 
	{
	    alert("Please fill out zip code and choose career interest.")
		return false;
	}
	return true;
}
