|
|
Guidance for local officials to use when developing an emergency manager position description and the hiring process
One of the objectives for the IPEM program is to provide local elected officials with accurate and up-to-date guidance that they can use to create a realistic description for the position of Emergency Manager. For many years, the responsibilities of the emergency manager position were assigned to a current staff member who already had a full time job. For many of these people, they not only had little or no background or experience, they also had to juggle their full-time responsibilities with these new ones as well. Real life events over the past few years have convinced many jurisdictions that this approach needs to be changed. The emergency management program should be an essential piece of the overall public safety program and the emergency manager needs to be a full time position. For many jurisdictions, the process to establish an accurate description for this position has not always been easy. Some jurisdictions that do have a position description, don't know how accurate it is. While this document will not tell you what you have to include, it will give you options on what you could include. Always remember that there is not a boiler-plate position description for every jurisdiction. Pick out the parts that fit your jurisdiction and start from there.
In each of the following sections, guidance will be given as to what a jurisdiction could look for.
- Training/Education
When determining the required level of training/education, you must first determine what training/education options are available.
The Illinois Emergency Management Agency has an emergency management-based curriculum located on its website www.iema.illinois.gov. The training calendar contains course descriptions along with future dates and locations. This website also contains information on the Illinois Professional Development Series and the Illinois Professional Emergency Manager Program.
The International Association of Emergency Managers has established the Certified Emergency Manager program. Information is located on their website www.iaem.com.
Many colleges and universities are developing emergency management degree programs that are available locally.
- Background/Experience
Depending on the current level of the program and size of the jurisdiction, the type and level of experience required could vary greatly. Applicants with 3-4 years experience in emergency management and 1 year with management responsibilities or equivalent is a good place to start. One important thing to remember-look for an applicant that can effectively manage people and projects without getting to close to either.
- Essential Functions
Depending on the current level of the program, essential functions required in the job description could include, but not be limited to, the following:
- Develop process to improve the capability of the emergency management program to interact with other jurisdictional departments
- Conduct an annual individual/family disaster preparedness day
- Conduct annual review of emergency management ordinance
- Present quarterly updates at council meeting concerning emergency management issues
- Conduct annual updates at the December council meeting concerning what emergency powers are available following a local disaster declaration.
- Conduct an emergency management orientation for all newly elected officials
- Maintain process to ensure the jurisdiction has meet all state certification requirements
- Develop long-term plan to improve the jurisdiction's capability to prepare for, respond to and recover from a large-scale disaster
- Update/Revise the jurisdictions emergency operations plan
- Develop long-range program to improve the jurisdiction's perception of emergency management
- Establish/maintain good working relationships, with private industry and volunteer organizations
- Develop multi-year training and disaster exercise schedules
- Interview Questions
|
|
<%
Function GetActiveCourses()
Dim arrSessions, xmlhttp, dom, url, node, i, j
'***************************************************************************
'set up call to the web service for Last Updated date
'***************************************************************************
'Set xmlhttp = Server.CreateObject("Microsoft.XMLHTTP")
Set xmlhttp = Server.CreateObject("Msxml2.ServerXMLHTTP.3.0")
Set dom = Server.CreateObject("Microsoft.XMLDOM")
url = "http://tier2.iema.state.il.us/Training/Training.asmx/GetWebMenu"
'set option to ignore SSL errors
const SXH_SERVER_CERT_IGNORE_ALL_SERVER_ERRORS = 13056
Call xmlhttp.setOption(2, SXH_SERVER_CERT_IGNORE_ALL_SERVER_ERRORS)
'call web service
Call xmlhttp.Open("GET", url, False)
Call xmlhttp.send
'Parse xml result
dom.Load(xmlhttp.responseBody)
Set node = dom.SelectSingleNode("//string")
'did we get a response back from the server?
If not node is nothing then
'yes - convert the xml to an array
dom.LoadXML(node.text)
'Did we find any records for the search criteria?
If not dom.SelectSingleNode("//NewDataSet/Table") is nothing then
Set rows = dom.SelectNodes("//NewDataSet/Table")
For i = 0 To rows.length - 1
ReDim Preserve arrItems(2,i)
For j = 0 to rows(i).childNodes.length - 1
arrItems(j,i) = rows(i).childNodes(j).text
Next
Next
'clean up your mess
set doc = nothing
set xmlhttp = nothing
GetActiveCourses = arrItems
Else
'clean up your mess
set doc = nothing
set xmlhttp = nothing
End If
Else
'clean up your mess
set doc = nothing
set xmlhttp = nothing
End If
End Function
arrCourses = GetActiveCourses()
If IsArray(arrCourses) Then
strSideMenu = " |