function changeIt()
	{
	var i = 	document.getElementById('total').value;
	i++;
	document.getElementById('my_div').innerHTML += "<p>Picture "+i+" : &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <input type=\"file\" name=\"pic"+i+"\"></p>";
	document.getElementById('total').value = i;

	}