$(document).ready(function(){	
	$("#postitoimipaikka").change(function() { showResellers(); }); 
});

function showResellers() {
	$("#loading").fadeIn('normal');
	var options = { 
		dataType:  'json',
		success:    function (_response) {
			$("#loading").fadeOut('normal');
			$("#tableContainer").html(_response.html);
		},
		error: 		function (XMLHttpRequest, textStatus, errorThrown) {
			$("#loading").fadeOut('normal');
			switch(XMLHttpRequest.status) {
				case 404:
					errorTxt = 'Virhe hinnaston noutamisessa (404)';
				break;
				default:
					errorTxt = 'Tuntematon virhe';
				break;
			}
			alert(errorTxt);
		}
	}; 
	$('#toimipaikka_form').ajaxForm(options);
	$('#toimipaikka_form').submit();
}