Start Registration
2
Select Program
3
Your Information
4
Confirm & Submit

Which volunteer project are you interested in?

If you’re not sure which program to choose yet, our team is always ready to provide personalized recommendations that perfectly match your interests. 







Will you be traveling alone or with others? *


Нийт үнэ: -

document.addEventListener('DOMContentLoaded', function () { const prices = { children: [0, 420, 700, 945, 1120], nomads: [0, 560, 980, 1365, 1680], teaching: [0, 420, 700, 945, 1120] }; const program = document.getElementById("program"); const duration = document.getElementById("duration"); const total = document.getElementById("total"); function calculate() { const prog = program.value; const dur = parseInt(duration.value); if (prog && dur && prices[prog]) { total.textContent = "$" + prices[prog][dur]; } else { total.textContent = "-"; } } if (program && duration && total) { program.addEventListener("change", calculate); duration.addEventListener("change", calculate); } });