<input type=textbox id=txt name=txt onkeypress=limit();>
function limit()
{
if(window.event.keyCode <= 97 || window.event.keyCode >= 122 )
{
alert ("Only small case alphabets allowed.");
window.event.keyCode=0;
}
}
the above code restricts the usage of any characters other than the small case alphabets. u can work on this to achieve ur goal.