$(document).ready(function() {
    var content = $('#city').html();
    $('#city').html('');
    $.fancybox(
        content,
        {
            'autoDimensions':false,
            'width':'auto',
            'height':'auto',
            'padding': 0,
            'centerOnScroll':true,
            'showCloseButton':false,
            onCleanup : function(){
                $("#city_form").submit();
            }
        }
    );
});
