|
DONATE
. . . . .
Music Changes Lives,
Inc. is fortunate to have the support of our wonderful community.
You can do your part to help the community. Listed below are ways
you can help. Whether volunteering, participating in a fundraising
event, or making a donation... your support is greatly appreciated.
function validateAmount(amount){
if(amount.value.match( /^[0-9]+(\.([0-9]+))?$/)){
return true;
}else{
alert('You must enter a valid donation.');
amount.focus();
return false;
}
}
|