po naciśnięciu plusa trzykrotnie dynamicznie stworzą się kolejne nowe pola jedno pod drugim:
macie namiary na jakieś gotowe skrypty lub (lepiej


pozdrawiam

<script type="text/javascript"> i=0; function wstaw() { i++; var tekst = document.createTextNode('pole '+i+': '); var input = document.createElement('input' ); input.setAttribute('type', 'text'); input.setAttribute('name', 'p[]'); input.setAttribute('size', '4'); var br = document.createElement('br'); var div = document.createElement('div'); div.appendChild(tekst); div.appendChild(input); div.appendChild(br); document.getElementById('pola').appendChild(div); } function wstaw2() { i++; var tekst = document.createTextNode('pole '+i+': '); var input = document.createElement('textarea'); input.setAttribute('name', 'p[]'); input.setAttribute('rows', '3'); input.setAttribute('cols', '100'); var br = document.createElement('br'); var div = document.createElement('div'); div.appendChild(tekst); div.appendChild(input); div.appendChild(br); document.getElementById('pola').appendChild(div); } </script>
function _show( strValue ) { if ( strValue == "inny" ) { document.getElementById( 'jakies_id' ).style.display = 'block'; } else { document.getElementById('jakies_id').innerHTML = ''; document.getElementById( 'jakies_id' ).style.display = 'none'; } }