function inserisci(n)
{
document.getElementById("marca").remove();
alert("successo"+n);
if(document.getElementById && document.createTextNode)
{
frase = document.createTextNode("Marca/Modello");
immagine = document.createElement("Input")
immagine.setAttribute("type","text")
immagine.setAttribute("name","marca")
immagine.setAttribute("id","marca")


document.getElementById("par"+n).appendChild(frase );
document.getElementById("par"+n).appendChild(immag ine);
}
}