onclick change value of input type text field



<form action="" method="post">
<input   name="" onblur="this.value=!this.value?'Onclick Change Value':this.value;" onclick="this.value='';" onfocus="this.select()" type="text" value="onclick change value" />
</form>