$(document).ready(function() {
    $("#city_search").unbind().autocomplete();
    $("#city_search").autocomplete("cities_search.html", {
            minChars: 3,
            width: 310,
            matchContains: true,
            autoFill: false
    });
    
    function findValueCallback(event, data, formatted) {
            if (data) {
                window.location.href="http://"+data[3]+"."+strBaseHrefNoHttp+""
                $("#cityid").val(data[1]).appendTo("#result");
            }
    }
    
    $(":text, textarea").result(findValueCallback).next().click(function() {
            $(this).prev().search();
    });
});