$('.searchForm').live('submit',function(){
    var cookie = $.cookie($(this).attr('id')+"CityID");
    if (cookie != null)
        return true;
    $.blockUI({
        message: "<div id='"+$(this).attr('id')+"'>\n\
<h2>Выберете город</h2>\n\
<p><a href='' class='cityID' id='1'>Тольятти</a></p>\n\
<p><a href='' class='cityID' id='2'>Самара</a></p>\n\
</div>"
    });
    return false;
});

$('.cityID').live('click', function(){
    var parent = $(this).parent().parent();
    $.cookie(parent.attr('id')+'CityID', $(this).attr('id'), {
        path: '/'
    });
    $('#'+parent.attr('id')).submit();
    return false;
});
