$(document).ready(function(){
	
	$("#city").autocomplete("/wspolne/cities/", {
		delay: 100,
        width: 200,
        minChars: 2,
        max: 8,
        multiple: false,
        mustMatch: false,
        scroll: true,
        scrollHeight: 300,
	});

});


