<style>
textarea
{
border-width:0px;
background-color:navy;
color:#FFFFFF;
overflow:hidden;
t:expression(this.onkeyup=function(){change(this)})
}
</style>
<script>
function change(obj)
{
obj.style.height=obj.scrollHeight;
}
</script>