window.addEvent('domready', function() {
	var recherche_text = 'Ville, Code postal';

	var recherche = $('mod-search-pharmacie');
	if(recherche) {
		recherche.setProperty('autocomplete', 'off');
		recherche.addEvent('click', function(e) {
			if(recherche.value == recherche_text)
				recherche.value = '';
		});
		new Autocompleter.Request.HTML('mod-search-pharmacie', 'index.php?option=com_pharmacie&view=autocompletion&format=raw', {
			'indicatorClass': 'autocompleter-loading',
			'postVar': 'mot_cle',
			'minLength': 2,
			'zIndex':100,
			/*'postData': {
				'fieldName': 'nom' // send additional POST data, check the PHP code
			},*/
			'onSelection': function(choice, selected, value) {
			// choice is one <li> element

				var ville = selected.getFirst('._ville');
				// the first element in this <li> is the <span> with the city name
				var valueVille = ville.innerHTML;
				$('ville').value = valueVille;

				var codePostal = selected.getFirst('._cp');
				// the second element in this <li> is the <span> with the city code
				var valueCP = codePostal.innerHTML;
				$('cp').value = valueCP;

				$('mod-search-pharmacie').value=valueVille+' ('+valueCP+')';
			}
		});
	}
});

