Ext.onReady(function(){
    Ext.select('select.ext-combo').each(function(e){
        var converted = new Ext.form.ComboBox({
            typeAhead: true,
            triggerAction: 'all',
            transform:e,
            width:100,
            forceSelection:true
        });
    });
});
