//éè
$(document).ready(function(){
						   
	$("select.changetotal").change(function(){
		
		var total = (($("select[@name=forfait] option:selected").val() * $("select[@name=mois] option:selected").val()) / 100).toFixed(2).replace(".",",");
		
		$("#total").html(total);
	
	});
						   
});
