function js_p3_quote_for_employers() {
  var idQuoteEmployer = document.getElementById('p3_quote_for_employers_yes');
  var idQuoteEmployerDropDown = document.getElementById('p3_quote_for_employers_drop_down');
  if (idQuoteEmployer.checked) {
    idQuoteEmployerDropDown.style.display = 'block';
  } else {
    idQuoteEmployerDropDown.style.display = 'none';
  }
}

function js_p3_bonfire() {
  var idBonfireYes = document.getElementById('p3_bonfire_yes');
  var idBonfireConditions = document.getElementById('p3_bonfire_conditions');
  if (idBonfireYes.checked) {
    idBonfireConditions.style.display = 'block';
  } else {
    idBonfireConditions.style.display = 'none';
  }
}