﻿function ToLowerCase(TextBox)
{
    TextBox.value = TextBox.value.toLowerCase();
    return true;
}