$(function() {  
     //onload
	 $(".cityList, #stateList ul").hide();	 
	 $(".toggle").click(function(){
		$(this).parent().next("ul").toggle();		
		if($("span", this).text() == "Show"){
			$("span", this).text("Hide");
		}else{
		$("span", this).text("Show");
		}
		return false;
	 });
});
