$(document).ready(function() {
	$('.filtreProduitForm select').change(function() {
		if ($(this).val()) {
			window.location = $(this).val();
		}
	});
});
