function cargarComboIdiomas(){

    var array = [
        ['es', localize('espanol')],
        ['en', localize('ingles')]
    ];

	var store = new Ext.data.SimpleStore({
    	fields: ['id', 'texto'],
    	data : array
		});
	
   var combo = new Ext.form.ComboBox({
	    store: store,
	    displayField:'texto',
	    typeAhead: true,
	    width:60,
	    mode: 'local',
	    triggerAction: 'all',
	    selectOnFocus:true,
	    valueField:'id',
	    triggerClass : 'my-trigger-class',
	    cls: 'my-input-class'
	});    	
	
}