List type
<html> <body> <ol id="myOl"> <li>Item One</li> <li>Item Two</li> <li>Item Three</li> </ol> <script language="JavaScript"> document.getElementById("myOl").type = "i" </script> </body> </html>