I've this enum in the xsd file:
<xs:simpleType name="SO">
<xs:restriction base="xs:string">
<xs:enumeration value="Mac OS X"/>
<xs:enumeration value="Windows Server"/>
<xs:enumeration value="Windows Vista"/>
<xs:enumeration value="Windows XP"/>
<xs:enumeration value="Windows 7"/>
<xs:enumeration value="Windows 8"/>
<xs:enumeration value="Windows 8.1"/>
<xs:enumeration value="Ubuntu"/>
</xs:restriction>
</xs:simpleType>
and I need to get it in the XSL to use it in a javascript combobox. There's any way to do it?