$(document).ready(function () {
    $('#country_id').change(function () {
        var country_id = $(this).val();
        if (country_id == '0') {
            $('#region_id').html('');
            $('#region_id').attr('disabled', true);
            return(false);
        }
        $('#region_id').attr('disabled', true);
        $('#region_id').html('<option>Загрузка...</option>');
        var url = 'http://xado.ru/kk.php';
        $.get(
            url,
            'country_id=' + country_id,
            function (result) {
                /*
                 * В случае неудачи мы получим результат с type равным error.
                 * Если все прошло успешно, то в type будет success,
                 * а также массив regions, содержащий данные по регионам
                 * в формате 'id'=>'1', 'title'=>'название региона'.
                 */
                    var options = '';
                    options += result;
                    $('#region_id').html(options);
                    $('#region_id').attr('disabled', false);
            }
        );
    });
});
