jQuery(document).ready(function($) {
  
	
	//jQuery(".article .thebody").hide();
	//jQuery("#container .article ul")
	//.prepend("<li class='readbody'><a href='' title='Read the article'>Read Body</a></li>");
	
	//jQuery(".actions li.readbody a").click(function(event){
		
		//jQuery(this).parents("ul").prev(".thebody").toggle();
		
		// Stop the link click from doing its normal thing
		//event.preventDefault();
	
	
	  // look for the div that has the Locations List
	
	jQuery("#locationsSelect").change(function () {
        
		  var str = "";
         jQuery("select option:selected").each(function () {
                str += $(this).val() + " ";
              });
			  
			jQuery("#LocWrapper ul").hide();
			  
          jQuery("#locations-"+str).show();
        })
        .change();


	   
});