function ajaxModels(id) { var val = $('#'+id).val(); $.ajax({ url: "http://www.vykup-aut.sk/www/default/templates/js/ajax_get_models.php", cache: false, type: "GET", dataType: "html", data: ({ brand: val }), success: function(options){ $('#smid, #frm-model').hide().html(options).fadeIn('slow'); //alert(html); } }); //alert(val); } function getBrands(id) { var val = $('#'+id).val() $.ajax({ url: "http://www.vykup-aut.sk/www/default/templates/js/ajax_get_brands.php", cache: false, type: "GET", dataType: "html", data: ({ brand: val }), success: function(html){ $('#model_select').hide().html(html).fadeIn('slow'); } }); } $(document).ready(function() { $('.contact_user').click(function() { $('#sendform').slideToggle(); }); });