Gracias a todos por sus aportaciones pero ninguno le atino...
Segui buscando y encontre una tabal en donde el boton Borrar si sirve, estoy utilizando ese ejemplo para hacer la mia. Gracias de todas maneras, les dejo aqui el codigo.
Cita: <html>
<script language="javascript">
var numero = 0;
function addNewRow()
{
// obtenemos acceso a la tabla por su ID
var TABLE = document.getElementById("tabla");
// obtenemos acceso a la fila maestra por su ID
var TROW = document.getElementById("celda");
// tomamos la celda
var content = TROW.getElementsByTagName("td");
// creamos una nueva fila
var newRow = TABLE.insertRow(-1);
newRow.className = TROW.attributes['class'].value;
// creamos una nueva celda
var newCell = newRow.insertCell(newRow.cells.length)
// creamos una nueva ID para el examinador
newID = 'file_' + (++numero);
// creamos un nuevo control
txt = '<input type="file" id="' + newID + '" size="50" />'
// y lo asignamos a la celda
newCell.innerHTML = txt
// aviso ;)
alert(txt)
}
function removeLastRow()
{
// obtenemos la tabla
var TABLE = document.getElementById("tabla");
// si tenemos mas de una fila, borramos
if(TABLE.rows.length > 2)
{
TABLE.deleteRow(TABLE.rows.length-1);
--numero;
}
}
function verElementos(evento)
{
for (i=0; i<=numero; i++)
{
var my_id = "file_" + i;
var my_file = document.getElementById(my_id);
alert ("id: " + my_id + " value: " + my_file.value);
}
}
</script>
<body>
<table border="0" id="tabla" width="100%">
<tr class="celda">
<td colspan="3">Pulse [+] para añadir un examinador de archivos<br/>
Pulse [-] para eliminar un examinador de archivos<br/>
Desarrolladores => Pulse [v] para ver el contenido de los examinadores<br/>
</td>
<td>
<input type="button" class="boton" value="[+]" onClick="addNewRow(event)" alt="Adicionar">
<input type="button" class="boton" value="[-]" onClick="removeLastRow(event)" alt="Remover">
<input type="button" class="boton" value="[v]" onClick="verElementos(event)" alt="Ver elementos">
</td>
</tr>
<tr id="celda" class="celda">
<td>
<input id="file_0" name="files" type="file" size="50">
</td>
</tr>
</table>
</body>
</html>