function GetCharCount(e)
{
///Get the text from the control
varTheText = e.value
/// return the name of the control and the length of the text
 CountDisplay.innerText = parseInt(varTheText.length) 
}
