
$(document).ready(function(){function adjustCountry(){var countryValue=$('#countryAuto').val();var tmpSelect=$('#directionAuto');if(countryValue==0){tmpSelect.attr('disabled','disabled');tmpSelect.clearSelect();$('#bgDirectionAuto').addClass('disabledSelect').html('');adjustHodel();}else{$.getJSON('assets/libs/cascadeSelectCountryAuto.php',{country:countryValue},function(data){tmpSelect.fillSelect(data).attr('disabled','');adjustHodel();$('#bgDirectionAuto').removeClass('disabledSelect').html('Направление');});}};function adjustHodel(){var countryValue=$('#countryAuto').val();var directionValue=$('#directionAuto').val();var tmpSelect=$('#hotelAuto');if(countryValue==0||directionValue==0){tmpSelect.attr('disabled','disabled');tmpSelect.clearSelect();$('#bgHotelAuto').addClass('disabledSelect').html('');}else{$.getJSON('/assets/libs/cascadeSelectHotelAuto.php',{country:countryValue,direction:directionValue},function(data){tmpSelect.fillSelect(data).attr('disabled','');$('#bgHotelAuto').removeClass('disabledSelect').html('Отель');});}};$('#countryAuto').change(function(){adjustCountry();}).change();$('#directionAuto').change(adjustHodel);});
