$(document).ready(function() {
	
	var type = $('#want').val();
	
	$('#rent_period').hide().prev('label').hide();
	if (type == 'Rent') {
		$('#rent_period').show().prev('label').show();	
	}

	$('#want').change(function() {
		type = $(this).val();
		
		if (type == 'Rent') {
			$('#rent_period').show().prev('label').show();	
		}
		
		if (type != 'Rent') {
			$('#rent_period').hide().prev('label').hide();	
		}		
	});

});



$(document).ready(function() {
	
	var type = $('#want').val();
	
	$('#minprice_rent').hide().prev('label').hide();
	$('#maxprice_rent').hide().prev('label').hide();
	$('#rent_period').hide().prev('label').hide();
	if (type == 'Rent') {
		$('#minprice_rent').show().prev('label').show();
		$('#minprice').hide().prev('label').hide();
		$('#maxprice_rent').show().prev('label').show();
		$('#maxprice').hide().prev('label').hide();
		$('#rent_period').show().prev('label').show();
	}

	$('#want').change(function() {
		type = $(this).val();
		
		if (type == 'Rent') {
			$('#minprice_rent').show().prev('label').show();
			$('#maxprice_rent').show().prev('label').show();
			$('#minprice').hide().prev('label').hide();
			$('#maxprice').hide().prev('label').hide();
			$('#rent_period').show().prev('label').show();
		}
		
		if (type != 'Rent') {
			$('#minprice_rent').hide().prev('label').hide();
			$('#minprice').show().prev('label').show();
			$('#maxprice_rent').hide().prev('label').hide();
			$('#maxprice').show().prev('label').show();
			$('#rent_period').hide().prev('label').hide();

		}		
	});

});



