html cliquez sur Masquer la zone de texte
//hide
document.getElementById("idOfTextField").style.display = 'none';
//visible
document.getElementById("idOfTextField").style.display = '';
Upset Unicorn