$(document).ready(function() {
	$("#hub").change(function () { 
		var hubid = $(this).attr("value");
		if (hubid != "") {
			$("#towncity_select").html(hub[hubid]);	
			$("#towncity").show();
			$(".servicelevel").hide();

			$("#town").change(function () { 
				var val = $(this).attr("value");
				if (val !== "") {
					$("#servicelevelinfo").html(val);
					$(".servicelevel").show();
				} else { 
					$(".servicelevel").hide();
				}				
			});
		} else { 
			$("#towncity").hide();
			$(".servicelevel").hide();
		}
	});
});