function initializeOptions (formObject) {
  if (document.getElementById("allowedTypes").value == "Screenprinting") {
    updateAdditionals('Screenprinting')
  }
  else if (document.getElementById("allowedTypes").value == "Embroidery") {
    updateAdditionals('Embroidery')
  }
  else if (document.getElementById("allowedTypes").value == "Both") {
    if (document.getElementById("rdoType_1").checked) updateAdditionals('Screenprinting');
  }
}

function updateAdditionals (radioClicked) {
  if (radioClicked == "Screenprinting") {
      document.getElementById("additionalOptions").style.display = "block";
  }
  if (radioClicked == "Embroidery") {
      document.getElementById("additionalLocations").value = "0"
      document.getElementById("additionalColors").value = "0"
      document.getElementById("additionalOptions").style.display = "none";
  }
}