function citySelected(city){
    $('#cityChooser').val(city);
    selectDis();
    if(city == 2){
        //Wybiera Oaze dla Wrocławia
        showInvestment(26);
    }else{
        //Wybiera Adrie
        showInvestment(12);
    }
}
function showInvestment(uid)
{
    $.ajax({
        url: 'index.php?type=21401',
        type: "POST",
        data: ({
            uid: uid
        }),
        success: function(data){
            $('.searchbox').children().eq(1).remove();
           $('.searchbox').children().eq(0).after(data);
            descPane();
            tabChooser();
            gallery();
            showImg(0);
            showCounter(1);
        }
    });
    return false;
}
function getImage(name)
{
    $.post(
        'index.php?type=22402',
        {
            img: name
        },
        function(data)
        {
                
            $('#gal_img_main').html(data);
        }
        );
    return false;
}
function selectDis(){
    if($('select[name="city"]').val() == 2){
        $('select[name="location"]').val(0);
        $('select[name="location"]').attr('disabled','disabled')


    }else{
        $('select[name="location"]').removeAttr('disabled');
    }
}
$(document).ready(function(){
    selectDis();
    $('select[name="city"]').live('change', function(){
        selectDis();
    });
});
