$(document).ready(function(){ function liFormat (row, i, num) { var result = row[0]; return result; } function selectItem(li) { if( li == null ) var sValue = "А ничего не выбрано!"; if( !!li.extra ) var sValue = li.extra[2]; else var sValue = li.selectValue; var zn = $(".inp-address").val()+" "; // я добавил = Добавляет фокус и пробел $(".inp-address").val(zn); // я добавил $(".inp-address").focus(); // я добавил } $("#poisk").autocomplete("http://etokarta.com/autocomplete/autocomplete.php?gorod=", { delay:10, minChars:1, matchSubset:1, autoFill:true, matchContains:1, cacheLength:10, selectFirst:true, formatItem:liFormat, maxItemsToShow:10, onItemSelect:selectItem }); });