$(document).ready(function(){
   $("#regNum").val("");
   hideRegionChoices();
   $("#submit").hide();
   $("#regNum").change(function(){
		hideRegionChoices();
		$("#region"+$(this).val()).show();
		$("#submit").show();
	});
});

function hideRegionChoices(){
	$("#region1").hide();
	$("#reg1").val("");
	$("#region2").hide();
	$("#reg2").val("");
	$("#region3").hide();
	$("#reg3").val("");
	$("#region4").hide();
	$("#reg4").val("");
	$("#region5").hide();
	$("#reg5").val("");
	$("#region6").hide();
	$("#reg6").val("");
	$("#region8").hide();
	$("#reg8").val("");
	$("#region9").hide();
	$("#reg9").val("");
}


