function toggleBilling(id) {
  var select = document.getElementById(id);
  select.checked = true;
}
