// DISPLAY CORRECT AMOUNT OF ATTENDEE FIELDS function showAttendees(dropdown) { if ((dropdown.value == 1) || (dropdown.value == 2) || (dropdown.value == 3)) { document.getElementById('attendee1').style.display = ''; document.registration.numofdays.value = ''; document.registration.totalcharge.value = ''; } else { document.getElementById('attendee1').style.display = 'none'; } if ((dropdown.value == 2) || (dropdown.value == 3)) { document.getElementById('attendee2').style.display = ''; document.registration.numofdays.value = ''; document.registration.totalcharge.value = ''; } else { document.getElementById('attendee2').style.display = 'none'; } if (dropdown.value == 3) { document.getElementById('attendee3').style.display = ''; document.registration.numofdays.value = ''; document.registration.totalcharge.value = ''; } else { document.getElementById('attendee3').style.display = 'none'; } } // SHOW CREDIT CARD EXTRA FIELDS FUNCTION function showCCInfo(dropdown) { if (dropdown.value == 'Credit Card') { document.getElementById('select_ccinfo').style.display = ''; } else { document.getElementById('select_ccinfo').style.display = 'none'; } } // SHOW REFERER EXTRA FIELD FUNCTION function showHearOfUs(dropdown) { if (dropdown.value == 'Other') { document.getElementById('select_other').style.display = ''; } else { document.getElementById('select_other').style.display = 'none'; } }