
$(function() {

	$('select[name=marque]').change (function () {

		if ($(this).val() > -1) {
			window.open(RACINE+'produits/marques/marque,'+$(this).val()+'/', '_self');
		}

	});


});
