function loadArabaCombos(type){
	var il = $('#model').val();	
	var marka = $('#marka').val();
	var model = $('#model').val();
	$.post('/jax/index/loadArabaCombos/', {
		il : il,
		marka : marka,
		model : model,
		type : type
	}, function(options) {
		if(type == "il"){
			$("select#marka").html(options);
		}
		else if (type == "marka") {
			$("select#model").html(options);
		}
	});
}

function loadEmlakCombos(type) {
	var emlakTipi = $('#emlakTipi').val();
	var durum = $('#durum').val();
	var konutTipi = $('#konutTipi').val();
	var il = $('#emlakIl').val();
	var ilce = $('#emlakIlce').val();
	var semt = $('#emlakSemt').val();
	if (emlakTipi < 5 || emlakTipi > 6) {// arsa
		$('#durum').hide();
		$('#konutTipi').hide();
	} else {
		$('#durum').show();
		$('#konutTipi').show();
	}
	if (type == "emlakTipi") {
		$("select#durum").html("");
		$("select#konutTipi").html("");
		$("select#emlakIlce").html("");
		$("select#emlakSemt").html("");
	} else if (type == "durum") {
		$("select#konutTipi").html("");
	} else if (type == "il") {
		$("select#emlakIlce").html("");
		$("select#emlakSemt").html("");
	} else if (type == "ilce") {
		$("select#emlakSemt").html("");
	}
	$.post('/jax/index/loadEmlakCombos/', {
		emlakTipi : emlakTipi,
		durum : durum,
		konutTipi : konutTipi,
		il : il,
		ilce : ilce,
		semt : semt,
		type : type
	}, function(options) {
		if (type == "emlakTipi") {
			if (emlakTipi == 5 || emlakTipi == 6) { // arsa ise
				$("select#durum").html(options);
			}
		} else if (type == "durum") {
			$("select#konutTipi").html(options);
		} else if (type == "il") {
			$("select#emlakIlce").html(options);
		} else if (type == "ilce") {
			$("select#emlakSemt").html(options);
		}

	});
}
function loadEmlakIller() {
	$.post('/jax/index/loadEmlakCombos/', {
		type : "iller"
	}, function(options) {
		$("select#emlakIl").html(options);
	});
}
function removeLokasyon(lokasyon, lokId) {
	$('#emlakLo' + lokId).remove();


}
