Free Access to Exclusive Admissions Data

Stay ahead with access to the latest dental school admissions data from 2023 - 2024. Make informed decisions and take the next step in your journey.

Create an Account

Thank you! Your submission has been received!
Oops! Something went wrong while submitting the form.
Already have an account? Log in

Data and Dentistry

Dental School Admissions Rankings 2023-24
See Details
The 4 New Dental Schools are... Still New
See Details

Path32 Blog

Data journalism for dentists
Path32
© 2024, Path32
Terms of Use
// When the dropdown value changes, show/hide the "Other" input field document.addEventListener('DOMContentLoaded', function() { const selectElement = document.querySelector('.select-role'); // Replace with your select element's class const otherInput = document.querySelector('.other-input'); // Replace with your input field's class selectElement.addEventListener('change', function() { if (selectElement.value === 'Other') { otherInput.style.display = 'block'; } else { otherInput.style.display = 'none'; } }); });