function setDropDownValue()
{
//alert ("indropdownjs");

var mylist=document.getElementById("SelectToEmailAddress");
//alert (mylist.options[mylist.selectedIndex].text);

document.getElementById("towhom").value=mylist.options[mylist.selectedIndex].text; 
document.getElementById("contactID").value=mylist.options[mylist.selectedIndex].value; 
} 

