	
	<!-- dynamically add a HTML element. //-->
	
var upload_number = 2;
function addFileInput() {
 	var d = document.createElement("div");
 	var file = document.createElement("input");
 	file.setAttribute("type", "file");
 	file.setAttribute("name", "attachment[]");
	file.setAttribute("size", 35);
	file.setAttribute("style", 'margin-top:2px; margin-bottom:2px;');
 	d.appendChild(file);
 	document.getElementById("moreUploads").appendChild(d);
 	upload_number++;
}