codice:
<html> 
<head> 
<script>
function dai() {
 document.myform.testo.value = "\"ciao\"";
}
</script>
</head> 
<body onLoad="dai()"> 
<form name="myform">
<input type="text" name="testo">
</form>
</body> 
</html>