<input type="text" value="Текст" onclick="inp(this)">
function inp(obj) { alert(obj.value); obj.value="text"; alert(obj.value); }