$('#auto').focus(function () {
if ($(this).val() == $(this).attr('valueDef')) {
$(this).val('');
}
$(this).css({ 'color': '#000' });
});
$('#auto').blur(function () {
if ($(this).val() == '') {
$(this).val($(this).attr('valueDef'));
$(this).css({ 'color': '#93999e' });
} else {
$(this).css({ 'color': '#000' });
}
});