aqui va mi aporte:
Código HTML:
<html>
<head>
<script type="text/javascript">
function cambia(esto)
{
esto=document.getElementById(esto);
esto.setAttribute("type","password");
esto.value="";
}
</script>
</head>
<body>
<form>
<input name="pass" id="pass" type="text" value="Aqui escribe tu password" onfocus="cambia('pass')" />
</form>
</body>
</html>
;)