/*global $ */ $(function () { 'use strict'; $("body").delegate("input[type=radio][class=typ-servisu-radio]", "change", function () { var data_string = 'typ_servisu=' + $(this).val(); $.ajax({ type: "POST", url: window.location, data: data_string, dataType: 'json', success: function (response) { $('#druh_vozidla_select').html(response.druh_vozidla_select); $('#typ_prace_select').html(response.typ_prace_select); } }); return false; }); });