$(document).ready(function(){
		$("#UTInfo").hide();
		$("#UTInfo2").hide();
		$("#TexasStateInfo").hide();
		$("#TexasStateInfo2").hide();
		$("#campus").change(onSelectchange);
	});
	function onSelectchange(){
		var selected = $("#campus option:selected");
		if (selected.val() == "1")
		{
			$("#TexasStateInfo").hide();
			$("#TexasStateInfo2").hide();
			$("#UTInfo").show("slow");
			$("#UTInfo2").show("slow");

		}
		else if (selected.val() == "3")
		{
			$("#UTInfo").hide();
			$("#UTInfo2").hide();
			$("#TexasStateInfo").show("slow");
			$("#TexasStateInfo2").show("slow");
		}
		else
		{
			$("#UTInfo").hide();
			$("#UTInfo2").hide();
			$("#TexasStateInfo").hide();
			$("#TexasStateInfo2").hide();
		}
	}
