function observeOrigin() {
  origin = document.getElementById("origin").value;
  wrapper = document.getElementById("otherOrigin-wrapper");
  if (origin == "Other") {
    wrapper.style.display = '';
    document.getElementById("otherOrigin").focus();
  } else {
    wrapper.style.display = 'none';
  }
}
