	$(document).ready(function() {
		$('#selecione').change(function(){
		
			// Se caso a opcao for matriz
			if($(this).val() == 'matriz'){
				$('#map-nj').hide('slow');
				$('#map-ma').hide('slow');			
				$('#map-ct').hide('slow');
				$('#map-matriz').show('slow');				
			}
			
			// Se caso a opcao for newjersey
			if($(this).val() == 'newjersey'){
				$('#map-ma').hide('slow');			
				$('#map-ct').hide('slow');														
				$('#map-matriz').hide('slow');
				$('#map-nj').show('slow');
			}	
			
			// Se caso a opcao for massachusetts
			if($(this).val() == 'massachusetts'){
				$('#map-ct').hide('slow');			
				$('#map-matriz').hide('slow');														
				$('#map-nj').hide('slow');
				$('#map-ma').show('slow');
			}

			// Se caso a opcao for connecticut
			if($(this).val() == 'connecticut'){
				$('#map-matriz').hide('slow');			
				$('#map-nj').hide('slow');														
				$('#map-ma').hide('slow');
				$('#map-ct').show('slow');
			}
		});
	});	

