DatePickerControl.onSelect = function(inputid)
  {
    if (inputid == "DPC_arrive"){
      cal_A = document.getElementById("DPC_arrive");
      cal_B = document.getElementById("DPC_depart");
      cal_B.setMinDate(cal_A.value);
      cal_B.disabled = false;
      //setTimeout("document.getElementById('DPC_depart').focus()", 5);
    }
  }