// Place your application-specific JavaScript functions and classes here
// This file is automatically included by javascript_include_tag :defaults
function ajuster_prix(select) {
	if (!select) { return; }

	select = $(select);
	if (!select) { return; }

	var code = select.attr('id').split('unite_')[1];
	if (!code) { return; }

	var unite = select.val();
	if (!unite) { return; }

	var prix = eval("window.price_" + code + "_" + unite);
	if (!prix) { return; }

	$('#price_' + code).html(prix);
}

