function formatItem(row) {
	return row;
}
$(document).ready(function() {
$("#VOI_LIBELLE").autocomplete(
	SERVER_ROOT+"rechercheTypeVoirieAjax.php",
	{
		delay:500,
		minChars:1,
		matchSubset:1,
		matchContains:0,
		cacheLength:50,
		maxItemsToShow:20,
		formatItem:formatItem,
		autoFill:false
	}
);
});


