$(document).ready(function(){
    $(".selectcity").click(function(){
	    $(".white_content").show();		
		return false;
	});
	 $(".white_content").mouseover(function(){
		 $(".white_content").show();
	 }).mouseout(function(){
		$(".white_content").hide();
		return false;
	 });
	 
	 $(".closecity").click(function(){
	    $(".white_content").hide();
		return false;
	});
});
