
function sendForm() { document.full.submit(); }


$(document).ready(function(){        
$("#text_mesto").autocomplete("/pocasi/whisper_pocasi.dat",	
  {
  delay:10,
  max:10,
  minChars:1,
  matchSubset:1,
  matchContains:1,
  cacheLength:1,
  autoFill:true,
  maxItemsToShow: 15,
  onItemSelect: sendForm
  }
  );
});

