<!--//--><![CDATA[//><!--
	$(document).ready(function () {
	$('#lg_Id').change(function () {
		var lg_Id = $('#lg_Id').val();	
			$.ajax({
				url:'mainop.php/?action=chgLg',
			   type:'post',
		   dataType:'json',
		       data:'lg_Id='+lg_Id,
			success:chgLg,
		      error:chgLg_error
		});
	});
});
function chgLg(json) {
	if (json.msg == 'success') {
		window.location.reload();
	} else 
		alert("Failure.");
}
function chgLg_error() {
	alert("Check setting");
}

//--><!]]>
