
$(document).ready(function(){
	$('#rd_tariff2, #rd_street2, #rd_house2').change(function(){
		var val=$(this).find('select option:selected').val();
		$(this).find('span').text(val);
	});

	$('#rd_street2').change(function(){
		var val=$(this).find('select option:selected').val();

		kk = val.indexOf("(");
		val_street = val.substring(0,kk);
		kkk = val.indexOf(")");
		val_dom = val.substring(kk+1,kkk);
		var s = val_dom.split(/,/);
		
		var obj = '<span>Дом</span><select name="r_house"><option>Дом</option>';
		if(val_dom != ''){
			for(var i=0; i<s.length; i++) {
				obj = obj + '<option value="'+ s[i] +'">'+ s[i] +'</option>';
			}
			$(this).find('span').text(val_street);
			$('#r_street_dop').val(val_street);
		}else{
			$(this).find('span').text('Улица');
			$('#r_street_dop').val('Улица');
		}
		obj = obj + '</select>';

		$('#rd_house2').html(obj);
	});

	$('#rd_house2').change(function(){
		var val=$(this).find('select option:selected').val();
		$('#r_house_dop').val(val);
	});

})
