 $(document).ready(function(){
   $('.default-value').each(function() {
    var default_value = this.value;
$(this).css('color', '#0B66BD');
    $(this).focus(function() {
        if(this.value == default_value) {
            this.value = '';
$(this).css('color', '#0B66BD');

        }
    });
    $(this).blur(function() {
        if(this.value == '') {
$(this).css('color', '#0B66BD');

            this.value = default_value;
        }
    });
});

 });
