$(document).ready(function(e){
	$("#firmasehir").bind('change',sehirgetir);
});

function sehirgetir(){
	$.post('/firmailce.php',{iId:$("#firmasehir").val()},function(output){
		$("#firmailce option").remove();
		$("#firmailce").append(output);
	});
}