$(document).ready(function(){

  $(".otherregionsclick").click(function(e){
    e.preventDefault();
    $("div.otherregionsholder").css("display","block");
  });
  
  $("#closeothers").click(function(e){
    $("div.otherregionsholder").css("display","none");
  })
    
  
  
})
