JQuery i zmiana typu pola wejściowego
jQery
$('#myPasswordField').attr('type', 'text');
OR
javascript
document.getElementById('myPasswordField').type = 'text';
Xanthous Xenomorph