This works perfectly in FF and Safari but not in IE... Here is the function:
  function my_totals(){
 $.ajax({
     type: "GET",
     url: "ajax.php",
    data: "action=my_items",
    success: function(data){
      $("#usage").html(data);
     }
 });
}