function bindAjax(inputname) { var val = $('#'+inputname).val(); var type = $("input[@name='typ']:checked").val(); xhr = $.ajax({ url: "https://www.reisen.cz/components/search_control/ajax/get_combo.php", cache: false, type: "GET", data: ({ relation_id : val, typ : type }), success: function(html){ $('#destination_box').hide().html(html).fadeIn('slow'); } }); } function multiSelectAjax() { var $data = $('#searchform').serialize(); $.ajax({ url: "https://www.reisen.cz/components/search_control/ajax/get_multiSelect.php", cache: false, type: "GET", data: $data, success: function(html){ $('#multiSelectTd').hide().html(html).fadeIn('slow'); //InicializateMultiSelect(); } }); }