function submit_locator() {
    $('#locator-form').submit();
}

$(function() {
    $('#locator-input').autocomplete(locator_url_base, {
        minChars: 2,
        selectFirst: true,
        cacheLength: 10,
        onItemSelect: submit_locator,
        maxItemsToShow: 15
    });

});