<html>
<body>
<script>
function disegno()
{
document.getElementById('ciao').innerHTML="<input type='text' name='cucu'>"
}
</script>
<form name="pippo">
<div id="ciao"></div>
<input type="button" onclick="disegno">
</form>
</body>
</html>