dojo.behavior.add({
	'input.autoclear': {
		onfocus: function(e) {
			if (this.defaultValue == this.value)
				this.value = '';
			}
		}
});
