onchange load not working!

onchange load not working!

Hi
Is there something wrong with my code?
It doesn;t do anything! I put alert there and alert works! I checked the ids and they exist there too! Can't find out why its not working! I appreciate any help.

Thanks

  1. <script>
  2.         $(document).ready(function() {
  3.                
  4.                 $(function()
  5.                     {
  6.                         $("#category").change(function(e)
  7.                             {
  8.                                 $("#subcategories_box").load("index.php",
  9.                                     {
  10.                                         'category': $("#category").val()
  11.                                     }
  12.                                 );
  13.                             }
  14.                         );
  15.                     });
  16.         });
  17.     </script>