$(document).ready(function () {
    $('#serverId').change(function () {
		    var serverId = $(this).val();
				var gid = $('#gameId').val();
				$.ajax({
				    type: 'POST', 
						timeout: 10000, 
						url: 'ajax/fit.gold.package.ajax.php', 
						data: {'gid':gid, 'serverId':serverId}, 
						dataType: 'html', 
						error: function (a, b) { 
						    alert('Sorry, request timeout, click confirm to reload this page.');
								window.location.reload(document.URL);
						},
						beforeSend: function () { 
						    $('#fitPackStore').html('Please wait, loading...'); 
						}, 
						success: function (data) { 
						    $('#fitPackStore').html(data); 
						}
				});
		});
});
