<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
<HEAD>
<TITLE> New Document </TITLE>
<META NAME="Generator" CONTENT="EditPlus">
<META NAME="Author" CONTENT="">
<META NAME="Keywords" CONTENT="">
<META NAME="Description" CONTENT="">
</HEAD>
<script language = "javaScript">
function warp(){
document.Frm_test.Txtarea.value = document.Frm_test.Type.options[document.Frm_test.Type.selectedIndex].value ;
}//End of warp()
</script>
<BODY>
<form name = "Frm_test" Action = "Test.html" Method = "POST" >
<TABLE>
<TR>
<TD valign = top>
<select name = "Type" onChange="warp();">
<option value = "Computer">Computer
<option value = "Printer">Printer
<option value = "Scanner">Scanner
</select>
</TD>
<TD>
<textarea name = "Txtarea" rows = "5" cols = "15" >
</textarea>
</TD>
</TR>
</TABLE>
</form>