
function autoCleanInput(input){
	if( input.value == input.defaultValue){
		input.value='';
	}
}
