<!--function checkType() {      var thisElement = document.getElementById('field_text');      var otherElement = document.getElementById('field_password');if (thisElement.value === 'Passwort') {                    otherElement.style.display = 'inline';         thisElement.style.display = 'none';         otherElement.focus();      }   }//--> 
