jQuery(document).ready(function(){
   jQuery('.button-submit').bind('click', function(e){
   
     e.preventDefault();
     e.stopPropagation();
   
     jQuery(this).parents("form").submit();
   });
   
   jQuery('.submit-phone').bind('click', function(e){
   
     e.preventDefault();
     e.stopPropagation();
   
     jQuery(this).parents("form").submit();
   });

   jQuery('.no-selected-category').hide();
   jQuery('.selected-category').show();
});