var a_PAP = new Array();
var a_PDF = new Array();
var a_PAPDF = new Array();

var limitedMessage = "Les abonnements 'papier' sont limités aux abonnés habitant en France.";

function updatePrice()
{
  var theForm = document.getElementById("new_abo");
  if (theForm)
  {
  var duration = theForm.aboDuration.options[theForm.aboDuration.selectedIndex].value;
      
  var a_type = theForm.abonnement.options[theForm.abonnement.selectedIndex].value;
  if (a_type==2) theForm.prix.value = a_PDF[duration];
  else if (a_type==1) theForm.prix.value = a_PAP[duration];
  else if (a_type==3) theForm.prix.value = a_PAPDF[duration];
  else theForm.prix.value = "???";
  if (a_type==1 || a_type==3)
  {
    if (!(theForm.pays.options[theForm.pays.selectedIndex].value=='0'))
      alert(limitedMessage);
  }
  }

}
  

