jQuery(document).ready(function() {
    defaultValue = jQuery('#input_bg').val();  
    jQuery('#input_bg').click(function() {
        if( this.value == defaultValue ) {
            jQuery(this).val("");
        }
    });
});