$(function(){
	$("input[name=\'ind\']").autocomplete("/ajax/ind",{
		max: 20,
		minChars: 1,
		width:300,
		formatItem: function(row, i, max) {
			return row[1];
		},
		formatMatch: function(row, i, max) {
			return row[1];
		},
		formatResult: function(row) {
			return row[1];
		} 
	});
});
