Appointment

0.00

Reviews

There are no reviews yet.

Be the first to review “Appointment”

Your email address will not be published. Required fields are marked *

document.addEventListener('DOMContentLoaded', function(){ const pricing = { ibidun:{ 2:60000, 4:110000, full:200000 }, idunnu:{ 1:35000, 4:110000, full:240000 }, ibudo:{ 4:220000, full:400000 } }; const studioSelect = document.getElementById('studio'); const sessionSelect = document.getElementById('session'); const priceDisplay = document.getElementById('price'); function updatePrice(){ const studio = studioSelect.value; const session = sessionSelect.value; let price = 0; if(pricing[studio] && pricing[studio][session]){ price = pricing[studio][session]; } priceDisplay.innerHTML = '₦' + price.toLocaleString(); } if(studioSelect && sessionSelect){ studioSelect.addEventListener('change', updatePrice); sessionSelect.addEventListener('change', updatePrice); } });