$(document).ready(function(){
	var refresh = true;
	$('#find-suburb').insertAfter('#profile_suburb_id');
	$('#profile_suburb_id').hide();
	$('#suburb-autocomplete').autocomplete("/ajax/suburbs", {
		minChars: 2,		
		width: 300,
		max: 20,
		highlight: false,
		scroll: true,
		scrollHeight: 300,
		mustMatch: true,			
		extraParams: { provinceId: '1' }
	}).result(function(event, data, formatted){
		$('#profile_suburb_id').val(data[1]);
	});
	$('#profile_province_id').change(function(){
		$('#suburb-autocomplete').setOptions({
			extraParams: { provinceId: $(this).val() }
		}).flushCache();		
		if (!refresh){
			$('#suburb-autocomplete').val(null);
			$('#profile_suburb_id').val(null);			
		}
	}).change();
	refresh = false;	
});
