$(document).ready(function() {
    $('.clear').click(
        function() {
            if (this.value == this.defaultValue) {
                this.value = '';
            }
        }
    );
    $('.clear').blur(
        function() {
            if (this.value == '') {
                this.value = this.defaultValue;
            }
        }
    );
});
