С автонумерацией вопрос решен, скрипт нашел на этом форуме СПАСИБО участнику форума РОНИ. Осталось чтобы
select на печать не выводился. Спецы жду помощи.
<!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">
<head>
<meta charset="UTF-8">
<style>
table input{
display:block;
width:98.8%;}
</style>
</head>
<body>
<p><strong>Динамическая таблица.</strong></p>
<caption>
<!-- Кол-во элементов option и их значения value можно задать произвольно //-->
<select id="rows_setup" >
<option value="0">--Установить кол-во строк--</option>
<option value="0">Скрыть таблицу</option>
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
<option value="5">5</option>
</select>
</caption>
<p><p/>
<form id= Tablica method="post" action="">
<table table id="tab" width="600px" border="1" cellspacing="0" cellpadding="4">
<!-- Заголовки //-->
<thead>
<tr>
<th width=20px scope="col">Поле 1</th>
<th width=300px scope="col">Поле 2</th>
<th width=80px scope="col">Поле 3</th>
<th width=100px scope="col">Поле 4</th>
</tr>
</thead>
<!-- Сюда будем добавлять строки //-->
<tbody id="dynamic"></tbody>
</table>
</form>
<script>
/* Навешиваем логику: */
setupTable(
"dynamic", /* ID элемента <tbody> таблицы */
"rows_setup", /* ID элемента <select> для установки кол-ва строк */
{1:"val1", 2:"val2", 3:"val3", 4:"val4"} /* Конфигурация строки таблицы */
);
function setupTable(tableId, selectId, fields) {
var htmlTBody = document.getElementById(tableId),
htmlSelect = document.getElementById(selectId),
rowTpl = document.createElement("TR");
/* Строим шаблон строки таблицы один раз, в дальнейшем будем просто его клонировать */
for(var field in fields) {
if (false === fields.hasOwnProperty(field)) continue;
var TD = document.createElement("TD"),
INPUT = document.createElement("INPUT");
INPUT.name = fields[field] + "[]";
TD.appendChild(INPUT);
rowTpl.appendChild(TD);
}
// Вешаем обработчик на элемент управления кол-вом строк
htmlSelect.onchange = function (e) {
var numRows = htmlSelect.options[htmlSelect.selectedIndex].value;
/* Отслеживаем отрицательные значения а то мало ли какие там значения в option понаставят */
numRows = numRows < 0 ? 0 : numRows;
/* Удаляем те строки которые есть. */
while(htmlTBody.firstChild) htmlTBody.removeChild(htmlTBody.firstChild);
for (var i = 0; i < numRows; i++) {
htmlTBody.appendChild(rowTpl.cloneNode(true));
}
/* Нумерация */
var table1 = document.getElementById('tab'),
rows1 = table1.rows,
text1 = 'textContent' in document ? 'textContent' : 'innerText';
for (var i1 = 1; i1 < rows1.length; i1++) {
rows1[i1].cells[0][text1] = i1 + rows1[i1].cells[0][text1];
}
if (numRows == 0) {
htmlTBody.parentNode.style.display = "none";
} else {
htmlTBody.parentNode.style.display = "";
}
};
}
</script>
</body>