function submitIt() {
				var errors = 0;
				if (document.forms[0].LastName.value == "") {
					errors = 1;
				} else if (document.forms[0].FirstName.value == "") {
					errors = 1;
				} else if (document.forms[0].Email.value == "") {
					errors = 1;
				} else if (document.forms[0].City.value == "") {
					errors = 1;
				} else if (document.forms[0].Zip.value == "") {
					errors = 1;
				} else if (document.forms[0].Positions.value == "") {
					errors = 1;
				}
				
				if (errors > 0) {
					alert("One or more required fields have not been filled out, please go back and fill them in");
				} else {
					document.forms[0].submit();
				}
			}
			
			
			function dpPositionscheck() {
				if ((document.forms[0].Positions.value == "ExperiencedRN") || (document.forms[0].Positions.value == "StudentNursing") || (document.forms[0].Positions.value == "CanadianNursing")) {
					var month = new Array("Please Select ", "Trauma & Surgical Services", "Cardiac", "Rehab", "Children's Hospital", "Women's Services", "Emergency Services", "Behavioral Health", "Perioperative Services");
					removeAllOptions(document.forms[0].subPositions);
					for (var i = 0; i < month.length; ++i) {
						addOption(document.forms[0].subPositions, month[i], month[i]);
					}
					document.forms[0].subPositions.disabled = false;
				} else if (document.forms[0].Positions.value == "Allied Health") {
					removeAllOptions(document.forms[0].subPositions);
					var optionVal = new Array("Please Select ", "Occupational Therapy", "Pharmacy", "Physical Therapy", "Respiratory Care", "Speech Language Pathology");
					for (var i = 0; i < optionVal.length; ++i) {
						addOption(document.forms[0].subPositions, optionVal[i], optionVal[i]);
					}
					document.forms[0].subPositions.disabled = false;
				} else {
					document.forms[0].subPositions.disabled = true;
				}
			}
			
			
			function addOption(selectbox, text, value) {
				var optn = document.createElement("OPTION");
				optn.text = text;
				optn.value = value;
				selectbox.options.add(optn);
			}
			
			
			function removeAllOptions(selectbox) {
				var i;
				for (i = selectbox.options.length - 1; i >= 0; i--) {
					selectbox.remove(i);
				}
			} 
