function setCity(city, head, noupload) {
    /* пишем время нового города */
    clearTimeout(time_timer);
    showTime(city);
    
    /* изменяем город на ссылке */
    document.getElementById('city_link').innerHTML = head;
    
    /* скрываем плашку со списком городов */
    document.getElementById('city-box').style.display = 'none';
    
    if (!noupload) {
        /* добавляем город в куки */
        JsHttpRequest.query('/?setcity', {
            "city_id": city,
            "city_head": head
        }, function(result, errors){
            if (errors) {
                alert(errors);
                return;
            }
            
            JsHttpRequest.query('/offices/?ajax', {
            }, function(result, errors){
                if (errors) {
                    alert(errors);
                    return;
                }
                document.getElementById('offices').href = result['doc']['offices_link'];
                document.getElementById('bankomats').href = result['doc']['banks_link'];
            }, true);
            
        }, true);
    }
    
    return false;
}
