function lowerCase(x)
{
var y=document.getElementById(x).value
document.getElementById(x).value=y.toLowerCase()
}

