 $(document).ready(function(){
   $('#Citychange').bind('change',citychange);
   $('#PendingCityId').bind('change',citychange);

   $('#up').bind('click',function(){
   		$(this).hide();
		$('#down').show();
		$('.club_content_wrapper *').hide();
   });
   $('#down').bind('click',function(){
   		$(this).hide();
		$('#up').show();
		$('.club_content_wrapper *').show();	
   });
   
 });
 
 
 function citychange(){
 	window.location = window.location+"?newcity="+$(this).val();
 }

 