function boutique_prix()
 {
  if ($("ms")) { t_ms = parseInt($("ms").value,10); }else{ t_ms = 0; };
  if ($("cs")) { t_cs = parseInt($("cs").value,10); }else{ t_cs = 0; };
  if ($("ns")) { t_ns = parseInt($("ns").value,10); }else{ t_ns = 0; };
  if ($("vs")) { t_vs = parseInt($("vs").value,10); }else{ t_vs = 0; };
  if ($("mm")) { t_mm = parseInt($("mm").value,10); }else{ t_mm = 0; };
  if ($("cm")) { t_cm = parseInt($("cm").value,10); }else{ t_cm = 0; };
  if ($("nm")) { t_nm = parseInt($("nm").value,10); }else{ t_nm = 0; };
  if ($("vm")) { t_vm = parseInt($("vm").value,10); }else{ t_vm = 0; };
  if ($("ml")) { t_ml = parseInt($("ml").value,10); }else{ t_ml = 0; };
  if ($("cl")) { t_cl = parseInt($("cl").value,10); }else{ t_cl = 0; };
  if ($("nl")) { t_nl = parseInt($("nl").value,10); }else{ t_nl = 0; };
  if ($("vl")) { t_vl = parseInt($("vl").value,10); }else{ t_vl = 0; };
  if ($("mx")) { t_mx = parseInt($("mx").value,10); }else{ t_mx = 0; };
  if ($("cx")) { t_cx = parseInt($("cx").value,10); }else{ t_cx = 0; };
  if ($("nx")) { t_nx = parseInt($("nx").value,10); }else{ t_nx = 0; };
  if ($("vx")) { t_vx = parseInt($("vx").value,10); }else{ t_vx = 0; };
  
  quantite = t_ms + t_cs + t_ns + t_vs + t_mm + t_cm + t_nm + t_vm + t_ml + t_cl + t_nl + t_vl + t_mx + t_cx + t_nx + t_vx;
  if (quantite <= 3) { port = quantite * 2; }else{ port = 0; }
  prix = quantite * 15 + port;
  $("comm_achat").innerHTML = quantite * 15;
  $("comm_port").innerHTML = port;
  $("comm_total").innerHTML = prix;
  $("prix_e").innerHTML = prix;
  $("prix_cf").innerHTML = prix * 100;
  
 }


