// Get bands and models
$(document).ready(function()
{
  $("#search_size").change(function()
  {
            $("#search_brand").removeOption(/./); 
           
            var size = $("#search_size").val();
            
            $.ajax({
                        type: "POST",
                        url: "http://www.bras-galore.com/_get_search_data.php",
                        data: 'size='+size,
                        dataType: "xml",
                        success: function(xml)
                        {
                            $(xml).find('brand').each(function()
                            {
                              $("#search_brand").addOption($(this).text(), $(this).text()+" ("+$(this).attr("qty")+")");
                            });
                            $("#search_brand").addOption("","Any Brand");
                        }
            }); 
  });  
});