window.addEvent('domready', function() {
	new Autocompleter.Request.JSON('location', '_scripts/autoComplete/get-locations.php', {
		'postVar': 'location',
		minLength: 1,
		maxChoices: 10,
		autoSubmit: false,
		cache: true,
		delay: 10,
		onRequest: function() {
			$('location').setStyles({
				'background-image':'url(/images/indicator.gif)',
				'background-position':'20px 7px',
				'background-repeat':'no-repeat'
			});
		},
		onComplete: function() {
			$('location').setStyle('background','');
		}
	});
	
});
