$(document).ready(function(){
   if ( $("body").is("." + "add-restaurant") ) {
      showmore();
   }
});


function showmore () {
   $("select.selectwithother").change(function() {
   var thevalueselect = "foo";
      var thevalueselect = $(this).attr("value");
      if ( (thevalueselect == "Other") ) {
         $(this).siblings(".onlyshowmeonother").css({display: "block"});
      } else {
         $(this).siblings(".onlyshowmeonother").css({display: "none"});
      }
   });
}

