...
<?
$num = $_GET['num'];
?>
...
<select name="num" onChange="recargarreciboc(this)">
<option>1</option>
<option>2</option>
<option>3</option>
<option>4</option>
<option>5</option>
</select>
...
<?
for($i = 1;$i <= $num;$i++){
?>
<tr>
<td bgcolor="#00FF99"><p align="center"><input name="concrc_cod_<?=$i?>" type="text" size="20" maxlength="20" onKeyUp="borralet(this)"></p></td>
<td colspan="3" bgcolor="#00FF99"><input name="concrc_cuenta_<?=$i?>" type="text" size="50" maxlength="50" onKeyUp="borranum(this)"></td>
<td bgcolor="#00FF99"><input name="concrc_debito_<?=$i?>" type="text" size="25" maxlength="25" onKeyUp="borralet(this)"></td>
<td bgcolor="#00FF99"><input name="concrc_credito_<?=$i?>" type="text" size="25" maxlength="25" onKeyUp="borralet(this)"></td>
<td colspan="3" bgcolor="#00FF99"> </td>
</tr>
<?
}
?>