

$(document).ready(function(){
    
    $("a.show_other_mp_cities").click(function () { 
      
	  if ($(".other_mp_cities").css("display")=='none'){
	  		$(".other_mp_cities").show();
	  }
	 
	  
	   
    });
 

});

