function validate(theForm) {
	if(theForm.State.selectedIndex == 0) {
		alert("Please select your state of residence.");
		theForm.State.focus();
		return false;
	}
	if(theForm.BirthMonth.selectedIndex == 0) {
		alert("Please indicate what month you were born.");
		theForm.BirthMonth.focus();
		return false;
	}
	if(theForm.Birthday.selectedIndex == 0) {
		alert("Please indicate what day you were born.");
		theForm.Birthday.focus();
		return false;
	}
	
	if(theForm.Feet.selectedIndex == 0) {
		alert("Please Select Your Height.");
		theForm.Feet.focus();
		return false;
	}
	
	if(theForm.Inches.selectedIndex == 0) {
		alert("Please Select Your Height.");
		theForm.Inches.focus();
		return false;
	}
	
	if(theForm.BirthYear.selectedIndex == 0) {
		alert("Please indicate what year you were born.");
		theForm.BirthYear.focus();
		return false;
	}
	if(theForm.Weight.value == "") {
		alert("Please Enter a Valid Weight");
		theForm.Weight.focus();
		return false;
	}
	return true;
}