function selectItem(li) {
	if (li.extra) {
		//alert("That's '" + li.extra[0] + "' you picked.")
	}
}
function formatItem(row) {
	return row[0] + "<br>";
}
$(document).ready(function() {
	$("#frm_plan_name").autocomplete("/includes/ajaxScripts/homePlanSearch.php", { minChars:3, matchSubset:1, matchContains:1, cacheLength:10, onItemSelect:selectItem, formatItem:formatItem, selectOnly:1 });
});