/*
 * Ext JS Library 2.0
 * Copyright(c) 2006-2007, Ext JS, LLC.
 * licensing@extjs.com
 * 
 * http://extjs.com/license
 */

Ext.onReady(function(){

    var converted = new Ext.form.ComboBox({
        typeAhead: false,
        triggerAction: 'all',
        transform:'age',
        width:135,
        forceSelection:true
    });
	
    var converted = new Ext.form.ComboBox({
        typeAhead: false,
        triggerAction: 'all',
        transform:'size',
        width:135,
        forceSelection:true
    });
	
    var converted = new Ext.form.ComboBox({
        typeAhead: false,
        triggerAction: 'all',
        transform:'rating',
        width:135,
        forceSelection:true
    });       


});