Selectbox - tag option or optgroup

Selectbox - tag option or optgroup

Hi, I need help with selectbox, I would like doing with option css styl or when I put tag <optgroup label="  "></optgroup> it is not work!

Thank you

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
    <meta http-equiv="Content-type" content="text/html; charset=utf-8" />
    <title>Styling Select Boxes</title>
    <link rel="stylesheet" type="text/css" href="selectbox.css" />
    <script src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js" type="text/javascript" charset="utf-8"></script>
    <script type="text/javascript" src="jquery.selectbox-0.5.js"></script>
    <script type="text/javascript">
    $(document).ready(function() {
        $('#Items').selectbox();
    });

 
 
  </script>

</head>
<body>
    <select name="Items" id="Items">
    <option value="option1">option1</option>
        <option value="option2">option2</option>
        <option  class="example" value="option3">option3</option>
        <option value="option4">option4</option
<optgroup label="example "></optgroup>
  </select>
</body>
</html>