

Ext.onReady(function(){
    Ext.QuickTips.init();

	
var store = new Ext.data.SimpleStore({
    fields: ['ID', 'LC2', 'Land'],
    data : Ext.daten.Laender
});
var combo = new Ext.form.ComboBox({
    store: store,
    displayField:'Land',
    typeAhead: true,
    mode: 'local',
    triggerAction: 'all',
    emptyText:'Bitte Land wählen...',
    selectOnFocus:true,
    applyTo: 'local-states',
    onSelect: function(record){ // override default onSelect to do redirect
        window.location =
            String.format('laenderinfo_8.php?land={0}', record.data.ID);
	}
});


});

