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

