jQuery(document).ready(function($) {

 //$('.searchform #cat option.level-0').attr('disabled', 'disabled');

 

 $('.searchform').submit(function() {

   if($(this).find('.s').val() == '') {

     $(this).find('.s').append($('<input />')

       .attr({type: 'hidden', name: 's', value: '+'}));

   }

 });

});
