function _frquicksearch2()
{
	var offer = 1;
	offer = $('#frquicksearch2_offer').get(0).options[$('#frquicksearch2_offer').get(0).options.selectedIndex].value;

	bkAjaxFillCombo($('#frquicksearch2_city').get(0),
		'deytahomes::dscity_lkp2',
		'dscity_lkp2.offer='+offer);
	bkAjaxFillCombo($('#frquicksearch2_category').get(0),
		'deytahomes::dscategory_lkp2',
		'dscategory_lkp2.offer='+offer);

	$('#frquicksearch2_ilce_row').hide();
	$('#frquicksearch2_semt_row').hide();
	$('#frquicksearch2_subcategory_row').hide();

	$('#frquicksearch2_offer').change(function () {
		offer = this.options[this.options.selectedIndex].value;

		bkAjaxFillCombo($('#frquicksearch2_city').get(0),
			'deytahomes::dscity_lkp2',
			'dscity_lkp2.offer='+offer);
		bkAjaxFillCombo($('#frquicksearch2_category').get(0),
			'deytahomes::dscategory_lkp2',
			'dscategory_lkp2.offer='+offer);
		$('#frquicksearch2_ilce_row').hide();
		$('#frquicksearch2_semt_row').hide();
		$('#frquicksearch2_subcategory_row').hide();

	} );
	$('#frquicksearch2_city').change(function () {
		var i = this.options[this.options.selectedIndex].value;

		bkAjaxFillCombo( $('#frquicksearch2_ilce').get(0),
			'deytahomes::dsilce_lkp2',
			'dsilce_lkp2.flt.city_fid='+i+';;1'+
			'&dsilce_lkp2.offer='+offer);
		if (this.options.selectedIndex == 0)
		{
			$('#frquicksearch2_ilce_row').fadeOut('slow');
			$('#frquicksearch2_semt_row').fadeOut('slow');
		}
		else
		{
			$('#frquicksearch2_ilce_row').fadeIn('slow');
		}
		$('#frquicksearch2_semt').get(0).options.length = 0;
	} );
	$('#frquicksearch2_ilce').change(function () {
		var i = this.options[this.options.selectedIndex].value;
		bkAjaxFillCombo($('#frquicksearch2_semt').get(0),
			'deytahomes::dssemt_lkp2',
			'dssemt_lkp2.flt.ilce_no='+i+';;1'+
			'&dssemt_lkp2.offer='+offer);
		if (this.options.selectedIndex == 0)
		{
			$('#frquicksearch2_semt_row').fadeOut('slow');
		}
		else
		{
			$('#frquicksearch2_semt_row').fadeIn('slow');
		}
	} );
	$('#frquicksearch2_category').change(function () {
		var i = this.options[this.options.selectedIndex].value;
		bkAjaxFillCombo($('#frquicksearch2_subcategory').get(0),
			'deytahomes::dssubcategory_lkp2',
			'dssubcategory_lkp2.flt.category_fid='+i+';;1'+
			'&dssubcategory_lkp2.offer='+offer);
		if (this.options.selectedIndex == 0)
		{
			$('#frquicksearch2_subcategory_row').fadeOut('slow');
		}
		else
		{
			$('#frquicksearch2_subcategory_row').fadeIn('slow');
		}
	} );
}