jQuery(function() {

    jQuery('#provinces').change(function() {
        var item = jQuery('#provinces option:selected').val();
        if (item == '...') item = '-';
        window.location = base_url + item;
    });

    jQuery('#cities').change(function() {
        var item = jQuery('#cities option:selected').val();
        if (item == '...') item = '-';
        window.location = base_url + item;
    });

    jQuery("#object_name").click(function () {
        jQuery(this).val("");
    });

    jQuery("#city_search").click(function () {
        jQuery(this).val("");
    });

});

function clicked(id){
    jQuery.ajax({
        type: 'GET',
        url: base_url + 'statistic/add_click/' + id + '/' + from
    });
}


function clicks(name){
    jQuery.ajax({
       type: 'GET',
       url: base_url + 'statistic/clicks/' + name
    });
}
