document.getElementById('donateNow').addEventListener('click', function() {
// Capture the selected causeId from the dropdown
var causeId = document.getElementById('causeSelect').value;
// Capture the entered donation amount
var amount = document.getElementById('donationAmount').value;
// Construct the URL with the selected causeId and the entered amount
// Note: The 'type' parameter is omitted as per your request
var redirectUrl = `https://crm.saveanorphanglobal.org/checkout.html?causeId=${causeId}&amount=${amount}`;
// Redirect the user to the constructed URL
window.location.href = redirectUrl;
});