(function($){

                      
    $(function()
    {
      $('#ilocal-form').submit(function()
        {
            var what = $('#ilocal-what').val() != null ? $('#ilocal-what').val() : ""; 
            var where = $('#ilocal-where').val() != null ? $('#ilocal-where').val() : "" ;   
            if (what == '' && where == '')
                return false;
            else
                return true    
        });
    });



})(jQuery);
