一个是 combo 另一个是 panel或者textfield
    当 选择 combo 时 从后台获得数据 显示在 panel或者textfield中      在这基础上改 
    
        var openzzfhOpenzzfhForm = new Ext.form.FormPanel({
            id:'openzzfhOpenzzfhForm',
            frame: true,
            layout: 'form',
            labelAlign:'right',
            url: path + "/openzzfhManageCon.do",
            items:[{
                name: 'addczzhzh',
                width: 300,
                fieldLabel: '归属财政专户',
                id: 'iaddczzhzh',
                hiddenName: 'haddczzhzh',
                xtype: 'combo',
                typeAhead: true,
                editable:false,
                triggerAction : 'all',
                selectOnFocus:true,
                forceSelection: true,
                mode: 'local',
                store: czzhzhdsInfoStore,
                displayField: 'zh',
                valueField: 'hm',
                listeners : {
                    specialkey : function(f, e) {
                        if (e.getKey() == e.ENTER || e.getKey() == 40 ) {
                            openzzfhOpenzzfhForm.getForm().findField('addsjzhflag').focus(true,true);
                        }
                    },
                    select : function(combo,record,index) {
                        <!-- 当发生选择事件的时候 就从后台获得数据 显示到下面的panel元素中 -->
                    }
                }
            },{
                name: 'addzh',
                width: 100,
                fieldLabel: zhncStore,
                xtype: 'panel'
            }]
        })