$(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();
	
	$('#price_rent').hide().prev('label').hide();
	if (type == 'Rent') {
		$('#price_rent').show().prev('label').show();
		$('#price').hide().prev('label').hide();
	}

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

		}		
	});

});



