$(document).ready(function() {

	$('input#location_parent').autocomplete("/locations/auto_complete_for_location_name_with_states_and_countries", 
																					{ matchContains:1, 
																						delay:400,
																						minChars:2, 
																						matchSubset:false, 
																						cacheLength:1, 
																						selectFirst:true,
																						max:10 });

	$('input#location_parent').result(function(event, data, formatted) {
		if (data[1] != 0) {
			$('#location_parent_id').val(data[1]);
		} else {
			$('input#parent_location').val('').change();
		}
	});
	
	$('input#location_parent').blur(function() {
		if ($(this).val() == '') {
			$('#location_parent_id').val('');
		}
	});

});