Ext.onReady(function(){
    Ext.select('.clearInputValue', true).on('click', function(){
        this.dom.value = "";
    });

    Ext.select('.clearInputValue', true).on('blur', function(){                
        var label = Ext.select('label[for='+this.dom.name+']', true).first();
        if(this.dom.value == ''){
           this.dom.value = label.dom.innerHTML;
        }
    });
});

