if (document.getElementById("ddlDonate"))
{
	var don = document.getElementById("ddlDonate");
	var oth = document.getElementById("dOther");
	if (don.selectedIndex != 5)
		oth.style.display = "none";
	don.onchange = donateChange;
}

function donateChange()
{
	var oth = document.getElementById("dOther");

	if (this.selectedIndex == 5)
		oth.style.display = "inline";
	else
		oth.style.display = "none";
}

