Jeśli mamy taki kod co należy dorobić aby po dodaniu elementu pokazał sie div id=file2
<div> <input type="file" name="_file_1" id="_file_1" value="" class="input" onChange="showInputFile(this, 'file2')"> </div> <div id="file2" style="display: none"> <input type="file" name="_file_2" id="_file_2" value="" class="input"> </div> <script> function showInputFile( input, divID ) { if ( input.value != '') { document.getElementById( divID ).style.display = 'block'; } } </script>