	function listele(il){
		$('#tvbilgiler').hide();
		$('#hesaplama').hide();
		$('#tv_hesap').hide();
		$('#ilbilgiler').show();
		$.ajax({
	   type: "POST",
	   url: "il.php",
	   data: "il="+il,
	   success: function(data){$('#ilbilgiler').html(data);}
	});
	
	}
	function listeletv(tv){
		$('#ilbilgiler').hide();
		$('#tv_hesap').hide();
		$('#hesaplama').hide();
		$('#tvbilgiler').show();
		$.ajax({
	   type: "POST",
	   url: "tv.php",
	   data: "il="+tv,
	   success: function(data){$('#tvbilgiler').html(data);}
	});
	
	}
