Denver police are still searching for suspect information after a 19-year-old man was shot and killed outside of the Downtown Denver Aquarium in February.
The Denver Police Department (DPD) has raised the reward for any information leading to the arrest of a suspect in connection to the fatal shooting that occurred on Feb. 14 when Dacien Salazar was killed.
Metro Denver Crime Stoppers initially offered a $2,000 reward for information following the fatal shooting in February. The amount has now been raised to $3,000, according to a news release from DPD.
Police initially responded to reports of a drive-by shooting outside of the aquarium, at 700 Water Street, around 3 p.m. on Feb. 14. Salazar was found with injuries and taken to a nearby hospital where he died.
Initial investigations found that the shooting was likely targeted and “does not appear to be a random incident,” the department said in the press release.
Salazar’s family continues to plead for suspect information, according to the release, hoping to find justice for the young man.
“The hardest goodbyes are the ones that you don’t expect,” Salazar’s mother, Roxanne Coca told The Denver Gazette’s news partner, 9News. “I mean the grief, I mean, it’s just been an awful thing to continue to wake up to.”
“It’s sad that he passed at such an early age because I know he would have done tremendous things,” said Bobby Salazar, the victim’s dad. “He really was a shining light to those around him.”
Anyone with information about this case, especially those who might have seen suspicious vehicles or individuals around the time of the shooting, are asked to contact Crime Stoppers at 720-913-7867.
9News contributed to this report
Catch up with a rundown of the 7 most important and interesting stories delivered to your inbox every Thursday.
Success! Thank you for subscribing to our newsletter.
function subscribeSuccess() {
var nsltrform = document.querySelector(“#nsltr”);
var nsltrSuccess = document.querySelector(“#successnsltr”);
nsltrform.classList.add(“hideblock”);
nsltrSuccess.classList.remove(“hideblock”);
}
function validateEmail(email) {
return String(email)
.toLowerCase()
.match(
/^(([^()[].,;:s@”]+(.[^()[].,;:s@”]+)*)|(“.+”))@(([[0-9]{1,3}.[0-9]{1,3}.[0-9]{1,3}.[0-9]{1,3}])|(([a-zA-Z-0-9]+.)+[a-zA-Z]{2,}))$/
);
}
function validateEmailAddress() {
const result = document.querySelector(“#result”);
const email = document.querySelector(“#email”).value;
result.innerText = “”;
if(validateEmail(email)) {
newsletterSubscribe(email);
} else {
result.innerText = ‘The email entered: ‘ + email + ‘ is not valid :(‘;
result.style.color = “red”;
}
return false;
}
function newsletterSubscribe(email) {
fetch(“https://services.gazette.com/mg2-newsletters.php?action=subscribe&site=denvergazette.com&emailPreferenceId=69&email=” + email, {
method: “POST”
}).then(res => {
console.log(“SUCCESSFUL POST”);
subscribeSuccess();
});
}
#nsltr {
min-width: 100%;
margin: 10px 0;
padding: 10px 20px;
background-color: #2076b3;
background-image: url(https://static.gazette.com/emails/circ/Audience%20Images/dg%20weekly%207.png);
background-size: cover;
}
#nsltr-header {
color: #fff4f4;
}
#nsltr-body {
text-align: center;
color: #ffffff;
}
#nsltr-button {
margin-top: 5px;
}
#successnsltr {
min-width: 100%;
margin: 10px 0;
padding: 10px 20px;
background-color: green;
text-align: center;
color: white;
}
#successnsltr a {
color: white;
}
.hideblock {
display:none;
}
h6 a {
color: black;
text-decoration: none;
padding: 5px;
background-color: #bbccdd;
font-weight: 600;
}
@media only screen and (min-width: 768px) {
#nsltr {
background-image: url(https://static.gazette.com/emails/circ/Audience%20Images/dg%20weekly%207.png);
background-size: cover;
}
}