Este es el codigo del formulario dinamico:
Código HTML:
<script type="text/javascript"> icremento =0; function crear(obj) { icremento++; field = document.getElementById('field'); contenedor = document.createElement('div'); contenedor.id = 'div'+icremento; field.appendChild(contenedor); boton = document.createElement('input'); boton.type = 'text'; boton.name = 'text'+'[]'; boton.id = 'textfield1'; contenedor.appendChild(boton); boton = document.createElement('input'); boton.type = 'button'; boton.value = 'Borrar'; boton.name = 'div'+icremento; boton.onclick = function () {borrar(this.name)} contenedor.appendChild(boton); } function borrar(obj) { field = document.getElementById('field'); field.removeChild(document.getElementById(obj)); } </script>