var popAutoInput = function()
{
    if($("#otomobilvar").attr("checked"))
        $("#oto-right").show();
    else
        $("#oto-right").hide();
}

var getModels = function()
{
    var select = $("#user_model");
    select.hide();
    var loading = $.create("div",{"class":"loading"}).appendTo(select.parent());
    $.get("/uyelik/getmodels.aspx", {brand:$("#user_brand").val()}, function(data){
        
        select.removeOption(/./);
        select.addOption(data, false);
        loading.remove();
        select.show();
    },"json");
}


$().ready(function(){
    popAutoInput();
    
    $("#user_country_id").change(function(){
        
        if($(this).val() != "1")
            $("#user_city_id").hide();
        else
            $("#user_city_id").show();
            
    });
    
    if($("#user_country_id").val() == "0")
    {        
        $("#user_country_id").selectOptions("1");
    }
});