$(document).ready(function(){
  $('.furnished_radio').change(function(event){
  	if($('input[name=Furnished]:checked').val()=='Y'){
  		$('#furnishing_packages').show();
  		$('#internet_options').show();
  	} else {
	  	$('#furnishing_packages').hide();
	  	$('#internet_options').hide();
  	}
  	
  	$('#garage_options').show();
  	$('#maid_options').show();
  });
  
  $('.maid_radio').change(function(event){
    if($('input[name=Maid]:checked').val()=='Y'){
  		$('#frequency_options').show();
  	} else {
  		$('#frequency_options').hide();
  	}
  });
});
