mas que limpiar el float en la tabla, que no tiene ningún sentido, es limpiarlo en el <br>
Cita: <br style="clear: both;">
pero tampoco tiene lógica, ya que, por qué está flotado el botón??. quita el float left al botón
en cuanto a los errores, puedes verlos
aquí
ya por último, usar cloneNode es mucho mas sencillo de lo que te piensas. se trata de crear el bloque (oculto) y los controles, algo de css y ya está
Cita: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="es" lang="es">
<head>
<meta http-equiv="Content-Type" content="application/xhtml; charset=utf-8" />
<title></title>
<script type="text/javascript">
var i = 1;
function fnc() {
var d = document.getElementsByTagName('div')[0];
var bloque = d.cloneNode(true);
bloque.id = 'div' + i++;
document.getElementById('fiel').appendChild(bloque );
}
</script>
<style type="text/css">
#div0 {display:none;}
.bloqueStyle {width:500px;}
</style>
</head>
<body>
<div id="div0" class="bloqueStyle">
<select name="sel[]">
<option value="a">a</option>
<option value="b">b</option>
<option value="c">c</option>
<option value="d">d</option>
</select>
<input type="text" value="" name="txt[]" />
<input type="button" value="eliminar" onclick="fnc2()" />
</div>
<form method="post" action="algo.php">
<fieldset id="fiel">
<input type="button" value="Crear" onclick="fnc()" />
</fieldset>
</form>
</body>
</html>