﻿$(function() {
	$("#Country").change(function() {
		var country = $("#Country> option:selected").attr("value");
		if (country != null && country != "") {
			$.getJSON("/Outfitters/GetStatesByCountry/" + country, function(data) {
				var list = "<option value=''>Choose State</option>";
				if (country == "CA") {
					list = "<option value=''>Choose Province</option>";
				}

				$.each(data, function(i, state) {
					list += "<option value='" + state.Value + "'>" + state.Text + "</option>";
				});
				$("#State").html(list);
			});
		}
		else {
			//$("#State").val("Choose State");
			document.getElementById('State').selectedIndex = 0;
		}
	});
});