// JavaScript Documentli-2-11
 $(document).ready(function() {
   // do stuff when DOM is ready
   
   $("#li--12").hide();
   $("#li--13").hide();
   $("#li-2-11").hide();
   $("#li-2-12").hide();
   $("#li-2-24").hide();
   
   $("#country").change( function() {
	  // check input ($(this).val()) for validity here
	  if ($(this).val() == "US") {
		  $("#li--12").show();
		 
	  }
	  else {
		  $("#li--12").hide();
		
	  }

	  if ($(this).val() == "CA") {
		  $("#li--13").show();
		
	  }
	  else {
		  $("#li--13").hide();
		  
	  }
	
	});
   
    $("#country1").change( function() {
	  // check input ($(this).val()) for validity here
	  if ($(this).val() == "US") {
	$("#li-2-11").show();
	  }
	  else {
		  
		   $("#li-2-11").hide();
	  }

	  if ($(this).val() == "CA") {
	$("#li-2-12").show();
	  }
	  else {
	 $("#li-2-12").hide();
	  }
	
	});
   
   
   $("#ALB-9").click( function() {
  if ($(this).val() == "other") {
		  $("#li-2-24").show();
		 
	  }
	  else {
		  $("#li-2-24").hide();
		  
	  }   

});
 });




