$(document).ready(function()
{
	$("#world_to_buy").change(function()
	{
		$("#world_to_buy_spinn").html("<img src='img/spinner.gif'/>").fadeIn("slow");
		
		var selected_world = $(this).val();
		if(selected_world == "Агларонд")
		{
			$("#world_to_buy_spinn").html("").fadeIn("slow");
			//$("button#sbm_clc_btn").attr("disabled", "disabled");
		}
		else
		{
			$("button#sbm_clc_btn").attr("disabled", "");
			$("#world_to_buy_spinn").html("").fadeIn("slow");
		}
	});
});
