
function ajoute(canton){
	var input = document.getElementById(canton);
	input.setAttribute('value', 'oui');
	
}

function supprime(canton){
	var input = document.getElementById(canton);
	input.setAttribute('value', 'non');
	
}

function setPrice(prixMin, prixMax){
	var minElement = document.getElementById('prixMin');
	var maxElement = document.getElementById('prixMax');
	
	minElement.setAttribute('value', prixMin);
	maxElement.setAttribute('value', prixMax);
}