To make it appear like the text is lowercase, without changing the value of the field in reality when submitted to the server or when copy-pasted, use this CSS:
form input[type="text"] {
text-transform: lowercase;
}
If you want to lowercase a string in JavaScript, use this code:
var text = "This Is My Text.";
var lowercase = text.toLowerCase();