<!--
// changes the lable on the message text area on the donate online page.
function simcha_message(element) {
	var message_label = document.getElementById('message_label');
	var initial_value = 'Send us a short message with your donation:';
	var simcha_note = document.getElementById('simcha_note');
	if ( element.value == 'Simcha' ) {
		simcha_note.style.display = 'block';
		message_label.innerHTML = 'Please tell us the names of your family or friends who are celebrating a simcha:';
	}
	else {
		simcha_note.style.display = 'none';
		message_label.innerHTML = initial_value;
	}
}
//-->