Código PHP:
function crear(obj) {
num++;
fi = document.getElementById('fiel'); // ponemos en el field
contenedor = document.createElement('div');
contenedor.id = 'div'+num;
fi.appendChild(contenedor);
ele=document.createElement('input');
ele.type='text';
ele.name='text-'+num;
contenedor.appendChild(ele);
ele = document.createElement('input');
ele.type = 'radio';
ele.name='a';
ele.value='id-'+num;
contenedor.appendChild(ele); //el appendchild parece q no funciona (innerhtml)
ele = document.createElement('input');
ele.type = 'button';
ele.value = 'Borrar';
ele.name = 'div'+num;
ele.onclick = function () {borrar(this.name)}
contenedor.appendChild(ele);