Today's Digital Newspaper

The Gazette

Weather Block Here



BIDLACK | Government roles voters shouldn’t select

111122-cp-web-oped-Bidlack-1

Hal Bidlack

111122-cp-web-oped-Bidlack-1

Hal Bidlack



In the days since the remarkable 2022 election, you have no doubt been overwhelmed by the non-stop coverage of the various outcomes for various elected offices across our great state and country. As a proud Democrat, I’m rather pleased overall, given that a first-term president like Joe Biden usually loses an average of 26 seats in the House and 4 in the Senate. Sometimes it is far more dramatic, such as back in 2010, when President Barack Obama saw his party lose an astonishing 63 seats in the House and 14 in the Senate. And don’t get me started on Grover Cleveland, who lost 127 House seats back in 1894.

And I’m certainly delighted to see that Colorado is becoming an even darker shade of blue that most folks thought possible. We elected a terrific governor for a second term and my old boss (and a guy who’d make a tremendous president) Michael Bennet to the Senate. Oh, and my old friend Jason Crow, a legit hero, was reelected to the House, which is great! Quite the election night, right?

But I’m not going to talk about any of that.

I’m guessing you have had quite your fill of election news and may be reading my column in hope of finding a bit of a diversion from the ongoing political chatter and analysis. Perhaps you are looking for an interesting fact, such as Sudan having more pyramids than Egypt (255 to 138) or that your eye’s pupil is a part of the body that is in every medical textbook, but that doesn’t really exist (ponder that one).

But instead, as a former professor of political science and alleged expert on the Constitution and voting, I’m going to talk with you about things we as regular old citizens should not be voting on, based on the ballot that you dear readers recently submitted to your county clerk and recorder. Elections are great things, but there is tremendous variation across the U.S. regarding which officials stand for election and which are appointed. Spoiler: we vote on too many here in the Centennial State.

From election to election, your ballot and mine (unless you are here in El Paso County) will vary slightly, but let’s get started, shall we?

Prior to working on Sen. Bennet’s staff, I served as a member of the 4th Judicial Review Commission, one of the 22 judicial districts across the state. I was appointed to that body by then-Gov. Bill Ritter. Each district has a DA and varying numbers of district judges and county judges therein. Each commission is charged with observing, interviewing and reviewing the performance of every judge in that district that is coming up for a retention vote, and to vote on a recommendation for each judge and then also to write up the paragraph on each judge that appears in that blue booklet you get before each election. In other words, the members of the commission (roughly a dozen when I was on it) are the experts on the work and quality of every judge.

Frankly, most voters rarely ever spend even a moment reviewing the booklet. It would make much more sense for the formal review and retention decision to be made by that judge’s review committee. You know, actual experts deciding, rather than regular voters who likely don’t really get that involved. There could certainly be a review or appeal process, but basically, unless you are on a commission, we shouldn’t be voting on judges.

Similarly, there are several county offices that are elected that should simply be appointments by the local county commissions (which, of course, are elected). It makes no sense to me for the voters to decide on who the county surveyor should be. My first guess would be, I dunno, a surveyor. And I’m guessing that years of experience would be a plus here. But we vote on that office.

Sign Up For Free:

let pathVariable;
let pathVariable2;

function handleUrlPathSegment() {

const fullPath = window.location.pathname.toLowerCase();
if (fullPath.includes(‘/business/’)) {
pathVariable = ‘business’;
pathVariable2 = ‘Business Newsletter’;
} else if (fullPath.includes(‘/outdoors/’) || fullPath.includes(‘/outdoor/’)) {
pathVariable = ‘outdoors’;
pathVariable2 = ‘Outdoors Newsletter’;
} else if (fullPath.includes(‘/opinion/’)) {
pathVariable = ‘opinion’;
pathVariable2 = ‘Opinion Newsletter’;
} else if (fullPath.includes(‘politics’)) {
pathVariable = ‘politics’;
pathVariable2 = ‘Politics Newsletter’;
} else {
pathVariable = ‘am-update’;
pathVariable2 = ‘AM Update Newsletter’;
}

console.log(`Current path: ${fullPath}`);
console.log(`Path variable set to: ${pathVariable}`);
console.log(`Path variable 2 set to: ${pathVariable2}`);

applyNewsletterName(pathVariable2);

return { pathVariable, pathVariable2 };
}

function applyNewsletterName(newsletterName) {

if (document.readyState === ‘loading’) {
document.addEventListener(‘DOMContentLoaded’, function() {
updateNewsletterElement(newsletterName);
});
} else {

updateNewsletterElement(newsletterName);
}
}

function updateNewsletterElement(newsletterName) {
const newsletterElement = document.getElementById(‘newsletterName’);

if (newsletterElement) {
newsletterElement.textContent = newsletterName;
console.log(`Updated #newsletterName element with: ${newsletterName}`);
} else {
console.warn(‘Element with ID #newsletterName not found in the DOM’);
}
}

function setupFormSubmitListener() {
function getFormattedDate() {
const now = new Date();

const timestamp = now.getTime();

console.log(‘chris: Using Unix timestamp’);
console.log(‘chris: Current time:’, now);
console.log(‘chris: Unix timestamp (ms):’, timestamp);

return timestamp;
}

const formattedDate = getFormattedDate();
var profile = window.blueConicClient.profile.getProfile();
profile.setValues(‘newsletter_category’, pathVariable);
profile.setValue(‘newsletter_signup_date’, formattedDate);
window.blueConicClient.profile.updateProfile(this, function() {
});
}

handleUrlPathSegment();

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=71&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/gaz%20op%202.png);
background-size: cover;

}

#nsltr-header {
color: #0e0000;
}
#nsltr-body {
text-align: center;
color: #000000;
}
#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/gaz%20op%202.png);
background-size: cover;
}
}

Featured Local Savings

I can’t think of a single good reason for electing the county coroner. I’m thinking that the person who deals with dead bodies and such should be a medical doctor who is a pathologist and/or holds other specific skills in the area of forensic medicine. Instead, we vote on that office. In theory, we could elect wholly unqualified people to that office (we came close here in El Paso County), and that would be a very bad thing.

The assessor is also an office that we vote on but shouldn’t. Here in my county, whomever the GOP nominates for that office (or any of the others I’m talking about) will win, regardless of qualifications. The assessor should be a person who is expert in the skills and knowledge required in that important and often provocative office. I’d be content to have a true expert in that office, again selected by the county commission.

We also vote on treasurers, who occupy an entirely bureaucratic office. The county treasurer doesn’t decide who owes what. Rather, he or she only collects the checks when people pay their taxes. I’d very much like the occupant of that office to be someone who has years of experience and fully understands the role, rather than a partisan person.

The same goes for clerk and recorder. Why in the world do we vote on the folks that will oversee license plates and such, and who oversees the counting of ballots? If there is any job that should be truly unelected and non-partisan, it is the election overseer.

I could go on, but here in El Paso County, about as deep red as it gets, GOPers tend to get elected to these local offices and then every four years either get reelected or swap out for another office that the Republicans pass around. Thus, we end up with county commissioners becoming clerk and recorders and said clerks becoming treasurers and so on. We can do better.

We could empower our county commissions, mayors, and such (it will vary somewhat from place to place) to appoint and to oversee these positions that voters, frankly, shouldn’t be able to touch. I don’t want, for example, to know that my county coroner was a big political operative for one party or the other — I want that person to be a medical expert and I don’t care what his or her partisan alignment is.

So, ironically in the days immediately following an election, I’m arguing for fewer elected positions.

We should demand that our actual elected officials be careful overseers of the positions noted above, and that those selected to serve in those offices be, well, experts and not partisans.

Hal Bidlack is a retired professor of political science and a retired Air Force lieutenant colonel who taught more than 17 years at the U.S. Air Force Academy in Colorado Springs.

fa056896-9cde-5105-9253-83af57b1af64

View Original Article | Split View
Tags

PREV

PREVIOUS

NOONAN | Following the money of the 2022 election

Paula Noonan Colorado’s total election season expenditures reached $159.27 million as of Nov. 8 according to Secretary of State reports from candidates and various campaign committees. That amount covers candidates and ballot initiatives. It’s instructive to know who collected the money and who spent it. Coloradans should thank Wine in Grocery Stores for its transparent PAC […]

NEXT

NEXT UP

SLOAN | When will the GOP slide in Colorado cease?

Kelly Sloan Concerning the election that just passed, a few observations: The “red wave,” anticipated even by Democrats, did not come to pass, at least not to the magnitude expected. By any accounting, this election cycle offered everything needed for a broad and decisive Republican victory — a deeply unpopular Democratic president in Joe Biden, an […]