jQuery(document).ready(function($) { /** autocompleters **/ $('#team_1').autocomplete('ajax_responser.php?action=getTeamsMatch', { matchContains: true, minChars: 2, resultsClass: "ac_team_results", formatItem: function(row, i, max) { return '
' + row[0] + '
' + row[2] + '
'; } }); $('#team_1').result(function(event, data, formatted){ $('#team_id').attr('value',data[1]); return data[1]; }); $('#country_id').change(function(){ $.ajax({ type: "POST", url: "/ajax_responser.php", data: "action=getStates&country_id=" + $(this).attr('value'), dataType: "json", success: function(result){ $("#state_label").html(result.stateType); $("#region_id").html(result.stateId); } }); }); })