From 11e71ce31474b1f8fd1e6f4a3d7a69a298200f93 Mon Sep 17 00:00:00 2001 From: Daniel Butler windows Date: Sun, 13 May 2018 23:23:55 -0400 Subject: [PATCH 01/25] Python 2 to 3 adjusted urllib with requests. All but Tutorials pass the tests --- google/refine/facet.py | 19 +-- google/refine/history.py | 2 +- google/refine/refine.py | 252 ++++++++++++++++++++----------------- requirements.txt | 2 +- tests/refinetest.py | 10 +- tests/test_facet.py | 2 +- tests/test_history.py | 10 +- tests/test_refine.py | 31 ++--- tests/test_refine_small.py | 34 ++--- tests/test_tutorial.py | 32 +++-- 10 files changed, 214 insertions(+), 180 deletions(-) diff --git a/google/refine/facet.py b/google/refine/facet.py index 54850a3..a6d05c4 100644 --- a/google/refine/facet.py +++ b/google/refine/facet.py @@ -40,18 +40,18 @@ def __init__(self, column, facet_type, **options): self.type = facet_type self.name = column self.column_name = column - for k, v in options.items(): + for k, v in list(options.items()): setattr(self, k, v) def as_dict(self): - return dict([(to_camel(k), v) for k, v in self.__dict__.items() + return dict([(to_camel(k), v) for k, v in list(self.__dict__.items()) if v is not None]) class TextFilterFacet(Facet): def __init__(self, column, query, **options): super(TextFilterFacet, self).__init__( - column, query=query, case_sensitive=False, facet_type='text', + column, query = query, case_sensitive=False, facet_type='text', mode='text', **options) @@ -159,8 +159,8 @@ class FacetResponse(object): """Class for unpacking an individual facet response.""" def __init__(self, facet): self.name = None - for k, v in facet.items(): - if isinstance(k, bool) or isinstance(k, basestring): + for k, v in list(facet.items()): + if isinstance(k, bool) or isinstance(k, str): setattr(self, from_camel(k), v) self.choices = {} @@ -235,10 +235,11 @@ def __len__(self): def as_json(self): """Return a JSON string suitable for use as a POST parameter.""" - return json.dumps({ - 'facets': [f.as_dict() for f in self.facets], # XXX how with json? + # TODO: Rename this from as_json to dict? + return { + 'facets': [f.as_dict() for f in self.facets], 'mode': self.mode, - }) + } def add_facet(self, facet): # Record the facet's object id so facet response can be looked up by id @@ -268,7 +269,7 @@ def __init__(self, criteria=None): criteria = [criteria] for criterion in criteria: # A string criterion defaults to a string sort on that column - if isinstance(criterion, basestring): + if isinstance(criterion, str): criterion = { 'column': criterion, 'valueType': 'string', diff --git a/google/refine/history.py b/google/refine/history.py index ffa3c4e..f6f9a5b 100644 --- a/google/refine/history.py +++ b/google/refine/history.py @@ -21,7 +21,7 @@ class HistoryEntry(object): # N.B. e.g. **response['historyEntry'] won't work as keys are unicode :-/ - #noinspection PyUnusedLocal + # noinspection PyUnusedLocal def __init__(self, history_entry_id=None, time=None, description=None, **kwargs): if history_entry_id is None: raise ValueError('History entry id must be set') diff --git a/google/refine/refine.py b/google/refine/refine.py index c7c9b91..5b8e4c6 100644 --- a/google/refine/refine.py +++ b/google/refine/refine.py @@ -20,15 +20,11 @@ import csv import json -import gzip import os import re -import StringIO import time -import urllib -import urllib2_file -import urllib2 -import urlparse +import urllib.request, urllib.parse, urllib.error, urllib.response +import requests from google.refine import facet from google.refine import history @@ -41,20 +37,23 @@ class RefineServer(object): """Communicate with a Refine server.""" @staticmethod - def url(): + def server_url(): """Return the URL to the Refine server.""" server = 'http://' + REFINE_HOST if REFINE_PORT != '80': server += ':' + REFINE_PORT return server + def url(self, command): + return self.server + '/command/core/' + command + def __init__(self, server=None): if server is None: - server = self.url() + server = self.server_url() self.server = server[:-1] if server.endswith('/') else server self.__version = None # see version @property below - def urlopen(self, command, data=None, params=None, project_id=None): + def urlopen(self, command, data=None, params=None, project_id=None, files=None): """Open a Refine URL and with optional query params and POST data. data: POST data dict @@ -62,41 +61,24 @@ def urlopen(self, command, data=None, params=None, project_id=None): project_id: project ID as string Returns urllib2.urlopen iterable.""" - url = self.server + '/command/core/' + command - if data is None: - data = {} - if params is None: - params = {} + url = self.url(command) if project_id: # XXX haven't figured out pattern on qs v body if 'delete' in command or data: data['project'] = project_id else: params['project'] = project_id - if params: - url += '?' + urllib.urlencode(params) - req = urllib2.Request(url) - if data: - req.add_data(data) # data = urllib.urlencode(data) - #req.add_header('Accept-Encoding', 'gzip') - try: - response = urllib2.urlopen(req) - except urllib2.HTTPError as e: - raise Exception('HTTP %d "%s" for %s\n\t%s' % (e.code, e.msg, e.geturl(), data)) - except urllib2.URLError as e: - raise urllib2.URLError( - '%s for %s. No Refine server reachable/running; ENV set?' % - (e.reason, self.server)) - if response.info().get('Content-Encoding', None) == 'gzip': - # Need a seekable filestream for gzip - gzip_fp = gzip.GzipFile(fileobj=StringIO.StringIO(response.read())) - # XXX Monkey patch response's filehandle. Better way? - urllib.addbase.__init__(response, gzip_fp) + if files: + response = requests.post(url, data=data, params=params, files=files) + else: + response = requests.post(url, data=data, params=params) return response - def urlopen_json(self, *args, **kwargs): + def urlopen_json(self, url, *args, **kwargs): """Open a Refine URL, optionally POST data, and return parsed JSON.""" - response = json.loads(self.urlopen(*args, **kwargs).read()) + url = self.url(url) + response = requests.get(url, *args, **kwargs) + response = response.json() if 'code' in response and response['code'] not in ('ok', 'pending'): error_message = ('server ' + response['code'] + ': ' + response.get('message', response.get('stack', response))) @@ -209,6 +191,7 @@ def open_project(self, project_id): } def new_project(self, project_file=None, project_url=None, project_name=None, project_format='text/line-based/*sv', + project_file_name=None, encoding='', separator=',', ignore_lines=-1, @@ -234,46 +217,56 @@ def s(opt): # the new APIs requires a json in the 'option' POST or GET argument # POST is broken at the moment, so we send it in the URL - new_style_options = dict(opts, **{ - 'encoding': s(encoding), - }) + # new_style_options = dict(opts, **{ + # 'encoding': s(encoding), + # }) + # options = { + # 'separator': s(separator), + # 'ignore-lines': s(ignore_lines), + # 'header-lines': s(header_lines), + # 'skip-data-lines': s(skip_data_lines), + # 'limit': s(limit), + # 'guess-value-type': s(guess_cell_value_types), + # 'process-quotes': s(process_quotes), + # 'store-blank-rows': s(store_blank_rows), + # 'store-blank-cells-as-nulls': s(store_blank_cells_as_nulls), + # 'include-file-sources': s(include_file_sources), + # } + + # options = { + # + # } + # params = { + # 'format': project_format, + # 'options': json.dumps(options), + # } + params = { - 'options': json.dumps(new_style_options), + } - # old style options - options = { - 'format': project_format, - 'separator': s(separator), - 'ignore-lines': s(ignore_lines), - 'header-lines': s(header_lines), - 'skip-data-lines': s(skip_data_lines), - 'limit': s(limit), - 'guess-value-type': s(guess_cell_value_types), - 'process-quotes': s(process_quotes), - 'store-blank-rows': s(store_blank_rows), - 'store-blank-cells-as-nulls': s(store_blank_cells_as_nulls), - 'include-file-sources': s(include_file_sources), + files = { + 'project-file': (project_file_name, open(project_file, 'rb')) } - if project_url is not None: - options['url'] = project_url - elif project_file is not None: - options['project-file'] = { - 'fd': open(project_file), - 'filename': project_file, - } + # if project_url is not None: + # options['server_url'] = project_url + # elif project_file is not None: + # options['project-file'] = { + # 'fd': open(project_file), + # 'filename': project_file, + # } if project_name is None: # make a name for itself by stripping extension and directories project_name = (project_file or 'New project').rsplit('.', 1)[0] project_name = os.path.basename(project_name) - options['project-name'] = project_name + params['project-name'] = project_name response = self.server.urlopen( - 'create-project-from-upload', options, params + 'create-project-from-upload', params=params, files=files ) - # expecting a redirect to the new project containing the id in the url - url_params = urlparse.parse_qs( - urlparse.urlparse(response.geturl()).query) + # expecting a redirect to the new project containing the id in the server_url + url_params = urllib.parse.parse_qs( + urllib.parse.urlparse(response.url).query) if 'project' in url_params: project_id = url_params['project'][0] return RefineProject(self.server, project_id) @@ -369,15 +362,18 @@ def do_raw(self, command, data): return self.server.urlopen(command, project_id=self.project_id, data=data) - def do_json(self, command, data=None, include_engine=True): + def do_json(self, command, data=None, params=None, include_engine=True): """Issue a command to the server, parse & return decoded JSON.""" + if params is None: + params = {} + params['project'] = self.project_id if include_engine: - if data is None: - data = {} - data['engine'] = self.engine.as_json() - response = self.server.urlopen_json(command, - project_id=self.project_id, - data=data) + params['engine'] = self.engine.as_json() + if command == 'delete-project': + response = self.server.urlopen(command, params=params, data=data) + response = response.json() + else: + response = self.server.urlopen_json(command, params=params, data=data) if 'historyEntry' in response: # **response['historyEntry'] won't work as keys are unicode :-/ he = response['historyEntry'] @@ -386,11 +382,18 @@ def do_json(self, command, data=None, include_engine=True): return response def get_models(self): - """Fill out column metadata. + """ + Fill out column metadata. Column structure is a list of columns in their order. The cellIndex is an index for that column's data into the list returned - from get_rows().""" + from get_rows(). + + {"columnModel":{"columns":[],"columnGroups":[]},"recordModel":{"hasRecords":false},"overlayModels":{}, + "scripting":{"grel":{"name":"General Refine Expression Language (GREL)","defaultExpression":"value"}, + "jython":{"name":"Python / Jython","defaultExpression":"return value"},"clojure":{"name":"Clojure", + "defaultExpression":"value"}}} + """ response = self.do_json('get-models', include_engine=False) column_model = response['columnModel'] column_index = {} # map of column name to index into get_rows() data @@ -399,7 +402,7 @@ def get_models(self): name = column['name'] self.column_order[name] = i column_index[name] = column['cellIndex'] - self.key_column = column_model['keyColumnName'] + self.key_column = column_model.get('keyColumnName') self.has_records = response['recordModel'].get('hasRecords', False) self.rows_response_factory = RowsResponseFactory(column_index) # TODO: implement rest @@ -407,8 +410,7 @@ def get_models(self): def get_preference(self, name): """Returns the (JSON) value of a given preference setting.""" - response = self.server.urlopen_json('get-preference', - params={'name': name}) + response = self.server.urlopen_json('get-preference', params={'name': name}) return json.loads(response['value']) def wait_until_idle(self, polling_delay=0.5): @@ -421,7 +423,7 @@ def wait_until_idle(self, polling_delay=0.5): def apply_operations(self, file_path, wait=True): json_data = open(file_path).read() - response_json = self.do_json('apply-operations', {'operations': json_data}) + response_json = self.do_json('apply-operations', params={'operations': json_data}) if response_json['code'] == 'pending' and wait: self.wait_until_idle() return 'ok' @@ -429,9 +431,13 @@ def apply_operations(self, file_path, wait=True): def export(self, export_format='tsv'): """Return a fileobject of a project's data.""" - url = ('export-rows/' + urllib.quote(self.project_name()) + '.' + + # TODO: add functionality to be able to export large sets of data + # TODO: add functionality only one request will set data size "requirement" to choose what size sets chunking + # Probably implement response.raw and export/save it in chunks. + url = ('export-rows/' + urllib.parse.quote(self.project_name()) + '.' + export_format) - return self.do_raw(url, data={'format': export_format}) + response = self.do_raw(url, data={'format': export_format}) + return response.text def export_rows(self, **kwargs): """Return an iterable of parsed rows of a project's data.""" @@ -463,17 +469,18 @@ def get_rows(self, facets=None, sort_by=None, start=0, limit=10): self.engine.set_facets(facets) if sort_by is not None: self.sorting = facet.Sorting(sort_by) - response = self.do_json('get-rows', {'sorting': self.sorting.as_json(), - 'start': start, 'limit': limit}) + response = self.do_json( + 'get-rows', + params={'sorting': self.sorting.as_json(), 'start': start, 'limit': limit} + ) return self.rows_response_factory(response) def reorder_rows(self, sort_by=None): if sort_by is not None: self.sorting = facet.Sorting(sort_by) - response = self.do_json('reorder-rows', - {'sorting': self.sorting.as_json()}) + response = self.do_json('reorder-rows', params={'sorting': self.sorting.as_json()}) # clear sorting - self.sorting = facet.Sorting() + # self.sorting = facet.Sorting() return response def remove_rows(self, facets=None): @@ -483,7 +490,7 @@ def remove_rows(self, facets=None): def text_transform(self, column, expression, on_error='set-to-blank', repeat=False, repeat_count=10): - response = self.do_json('text-transform', { + response = self.do_json('text-transform', params={ 'columnName': column, 'expression': expression, 'onError': on_error, 'repeat': repeat, 'repeatCount': repeat_count}) @@ -496,8 +503,7 @@ def edit(self, column, edit_from, edit_to): def mass_edit(self, column, edits, expression='value'): """edits is [{'from': ['foo'], 'to': 'bar'}, {...}]""" edits = json.dumps(edits) - response = self.do_json('mass-edit', { - 'columnName': column, 'expression': expression, 'edits': edits}) + response = self.do_json('mass-edit', params={'columnName': column, 'expression': expression, 'edits': edits}) return response clusterer_defaults = { @@ -525,8 +531,7 @@ def compute_clusters(self, column, clusterer_type='binning', if function is not None: clusterer['function'] = function clusterer['column'] = column - response = self.do_json('compute-clusters', { - 'clusterer': json.dumps(clusterer)}) + response = self.do_json('compute-clusters', params={'clusterer': json.dumps(clusterer)}) return [[{'value': x['v'], 'count': x['c']} for x in cluster] for cluster in response] @@ -534,8 +539,7 @@ def annotate_one_row(self, row, annotation, state=True): if annotation not in ('starred', 'flagged'): raise ValueError('annotation must be one of starred or flagged') state = 'true' if state is True else 'false' - return self.do_json('annotate-one-row', {'row': row.index, - annotation: state}) + return self.do_json('annotate-one-row', params={'row': row.index, annotation: state}) def flag_row(self, row, flagged=True): return self.annotate_one_row(row, 'flagged', flagged) @@ -547,17 +551,23 @@ def add_column(self, column, new_column, expression='value', column_insert_index=None, on_error='set-to-blank'): if column_insert_index is None: column_insert_index = self.column_order[column] + 1 - response = self.do_json('add-column', { - 'baseColumnName': column, 'newColumnName': new_column, - 'expression': expression, 'columnInsertIndex': column_insert_index, - 'onError': on_error}) + response = self.do_json( + 'add-column', + params={ + 'baseColumnName': column, + 'newColumnName': new_column, + 'expression': expression, + 'columnInsertIndex': column_insert_index, + 'onError': on_error + } + ) self.get_models() return response def split_column(self, column, separator=',', mode='separator', regex=False, guess_cell_type=True, remove_original_column=True): - response = self.do_json('split-column', { + response = self.do_json('split-column', params={ 'columnName': column, 'separator': separator, 'mode': mode, 'regex': regex, 'guessCellType': guess_cell_type, 'removeOriginalColumn': remove_original_column}) @@ -565,15 +575,14 @@ def split_column(self, column, separator=',', mode='separator', return response def rename_column(self, column, new_column): - response = self.do_json('rename-column', {'oldColumnName': column, + response = self.do_json('rename-column', params={'oldColumnName': column, 'newColumnName': new_column}) self.get_models() return response def reorder_columns(self, new_column_order): """Takes an array of column names in the new order.""" - response = self.do_json('reorder-columns', { - 'columnNames': new_column_order}) + response = self.do_json('reorder-columns', params={'columnNames': new_column_order}) self.get_models() return response @@ -581,18 +590,17 @@ def move_column(self, column, index): """Move column to a new position.""" if index == 'end': index = len(self.columns) - 1 - response = self.do_json('move-column', {'columnName': column, - 'index': index}) + response = self.do_json('move-column', params={'columnName': column, 'index': index}) self.get_models() return response def blank_down(self, column): - response = self.do_json('blank-down', {'columnName': column}) + response = self.do_json('blank-down', params={'columnName': column}) self.get_models() return response def fill_down(self, column): - response = self.do_json('fill-down', {'columnName': column}) + response = self.do_json('fill-down', params={'columnName': column}) self.get_models() return response @@ -601,17 +609,22 @@ def transpose_columns_into_rows( combined_column_name, separator=':', prepend_column_name=True, ignore_blank_cells=True): - response = self.do_json('transpose-columns-into-rows', { - 'startColumnName': start_column, 'columnCount': column_count, - 'combinedColumnName': combined_column_name, - 'prependColumnName': prepend_column_name, - 'separator': separator, 'ignoreBlankCells': ignore_blank_cells}) + response = self.do_json( + 'transpose-columns-into-rows', + params={ + 'startColumnName': start_column, + 'columnCount': column_count, + 'combinedColumnName': combined_column_name, + 'prependColumnName': prepend_column_name, + 'separator': separator, + 'ignoreBlankCells': ignore_blank_cells + } + ) self.get_models() return response def transpose_rows_into_columns(self, column, row_count): - response = self.do_json('transpose-rows-into-columns', { - 'columnName': column, 'rowCount': row_count}) + response = self.do_json('transpose-rows-into-columns', params={'columnName': column, 'rowCount': row_count}) self.get_models() return response @@ -627,8 +640,13 @@ def guess_types_of_column(self, column, service): ... ] """ - response = self.do_json('guess-types-of-column', { - 'columnName': column, 'service': service}, include_engine=False) + response = self.do_json( + 'guess-types-of-column', + params={ + 'columnName': column, + 'service': service + }, + include_engine=False) return response['types'] def get_reconciliation_services(self): @@ -639,12 +657,11 @@ def get_reconciliation_services(self): def get_reconciliation_service_by_name_or_url(self, name): recon_services = self.get_reconciliation_services() for recon_service in recon_services: - if recon_service['name'] == name or recon_service['url'] == name: + if recon_service['name'] == name or recon_service['server_url'] == name: return recon_service return None - def reconcile(self, column, service, reconciliation_type=None, - reconciliation_config=None): + def reconcile(self, column, service, reconciliation_type=None, reconciliation_config=None): """Perform a reconciliation asynchronously. config: { @@ -670,7 +687,7 @@ def reconcile(self, column, service, reconciliation_type=None, raise ValueError('Must have at least one of config or type') reconciliation_config = { 'mode': 'standard-service', - 'service': service['url'], + 'service': service['server_url'], 'identifierSpace': service['identifierSpace'], 'schemaSpace': service['schemaSpace'], 'type': { @@ -680,5 +697,4 @@ def reconcile(self, column, service, reconciliation_type=None, 'autoMatch': True, 'columnDetails': [], } - return self.do_json('reconcile', { - 'columnName': column, 'config': json.dumps(reconciliation_config)}) + return self.do_json('reconcile', params={'columnName': column, 'config': json.dumps(reconciliation_config)}) diff --git a/requirements.txt b/requirements.txt index f02ab12..663bd1f 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1 +1 @@ -urllib2_file>=0.2.1 \ No newline at end of file +requests \ No newline at end of file diff --git a/tests/refinetest.py b/tests/refinetest.py index ea3b3de..c507d69 100644 --- a/tests/refinetest.py +++ b/tests/refinetest.py @@ -20,9 +20,10 @@ PATH_TO_TEST_DATA = os.path.join(os.path.dirname(__file__), 'data') -#noinspection PyPep8Naming +# noinspection PyPep8Naming class RefineTestCase(unittest.TestCase): project_file = None + project_file_name = None project_format = 'text/line-based/*sv' project_options = {} project = None @@ -36,7 +37,12 @@ def setUp(self): self.refine = refine.Refine(self.server) if self.project_file: self.project = self.refine.new_project( - project_file=self.project_path(), project_format=self.project_format, **self.project_options) + project_file=self.project_path(), + project_file_name=self.project_file_name, + project_format=self.project_format, + project_name='test', + **self.project_options + ) def tearDown(self): if self.project: diff --git a/tests/test_facet.py b/tests/test_facet.py index 32746b7..b01eac1 100644 --- a/tests/test_facet.py +++ b/tests/test_facet.py @@ -80,7 +80,7 @@ def test_init(self): def test_serialize(self): engine = Engine() engine_json = engine.as_json() - self.assertEqual(engine_json, '{"facets": [], "mode": "row-based"}') + self.assertEqual(engine_json, {'facets': [], 'mode': 'row-based'}) facet = TextFacet(column='column') self.assertEqual(facet.as_dict(), {'selectError': False, 'name': 'column', 'selection': [], 'expression': 'value', 'invert': False, 'columnName': 'column', 'selectBlank': False, 'omitBlank': False, 'type': 'list', 'omitError': False}) facet = NumericFacet(column='column', From=1, to=5) diff --git a/tests/test_history.py b/tests/test_history.py index 044a5f2..115a93d 100644 --- a/tests/test_history.py +++ b/tests/test_history.py @@ -13,11 +13,11 @@ class HistoryTest(unittest.TestCase): def test_init(self): response = { - u"code": "ok", - u"historyEntry": { - u"id": 1303851435223, - u"description": "Split 4 cells", - u"time": "2011-04-26T16:45:08Z" + "code": "ok", + "historyEntry": { + "id": 1303851435223, + "description": "Split 4 cells", + "time": "2011-04-26T16:45:08Z" } } he = response['historyEntry'] diff --git a/tests/test_refine.py b/tests/test_refine.py index 5f384b8..f1bbb7f 100644 --- a/tests/test_refine.py +++ b/tests/test_refine.py @@ -11,6 +11,7 @@ import csv import unittest +import io from google.refine import refine from tests import refinetest @@ -22,7 +23,7 @@ def test_init(self): if refine.REFINE_PORT != '80': server_url += ':' + refine.REFINE_PORT self.assertEqual(self.server.server, server_url) - self.assertEqual(refine.RefineServer.url(), server_url) + self.assertEqual(refine.RefineServer.server_url(), server_url) # strip trailing / server = refine.RefineServer('http://refine.example/') self.assertEqual(server.server, 'http://refine.example') @@ -37,11 +38,12 @@ def test_get_version(self): self.assertTrue(item in version_info) def test_version(self): - self.assertTrue(self.server.version in ('2.0', '2.1', '2.5')) + self.assertTrue(self.server.version in ('2.0', '2.1', '2.5', '2.8')) class RefineTest(refinetest.RefineTestCase): project_file = 'duplicates.csv' + project_file_name = 'duplicates.csv' def test_new_project(self): self.assertTrue(isinstance(self.project, refine.RefineProject)) @@ -50,7 +52,7 @@ def test_wait_until_idle(self): self.project.wait_until_idle() # should just return def test_get_models(self): - self.assertEqual(self.project.key_column, 'email') + self.assertEqual('email', self.project.key_column) self.assertTrue('email' in self.project.columns) self.assertTrue('email' in self.project.column_order) self.assertEqual(self.project.column_order['name'], 1) @@ -59,21 +61,22 @@ def test_delete_project(self): self.assertTrue(self.project.delete()) def test_open_export(self): - fp = refine.RefineProject(self.project.project_url()).export() - line = fp.next() - self.assertTrue('email' in line) - for line in fp: - self.assertTrue('M' in line or 'F' in line) - fp.close() + content = refine.RefineProject(self.project.project_url()).export() + self.assertTrue('email' in content) + for line in content: + self.assertTrue('M' in content or 'F' in content) def test_open_export_csv(self): fp = refine.RefineProject(self.project.project_url()).export() - csv_fp = csv.reader(fp, dialect='excel-tab') - row = csv_fp.next() - self.assertTrue(row[0] == 'email') - for row in csv_fp: + fp = fp.split('\n') + export = [] + for row in fp: + export.append(row.split('\t')) + self.assertTrue(export[0][0] == 'email') + export.pop(0) + export.pop(len(export)-1) + for row in export: self.assertTrue(row[3] == 'F' or row[3] == 'M') - fp.close() if __name__ == '__main__': diff --git a/tests/test_refine_small.py b/tests/test_refine_small.py index c525ba5..c760305 100644 --- a/tests/test_refine_small.py +++ b/tests/test_refine_small.py @@ -13,26 +13,26 @@ class RefineRowsTest(unittest.TestCase): def test_rows_response(self): rr = refine.RowsResponseFactory({ - u'gender': 3, u'state': 2, u'purchase': 4, u'email': 0, - u'name': 1}) + 'gender': 3, 'state': 2, 'purchase': 4, 'email': 0, + 'name': 1}) response = rr({ - u'rows': [{ - u'i': 0, - u'cells': [ - {u'v': u'danny.baron@example1.com'}, - {u'v': u'Danny Baron'}, - {u'v': u'CA'}, - {u'v': u'M'}, - {u'v': u'TV'} + 'rows': [{ + 'i': 0, + 'cells': [ + {'v': 'danny.baron@example1.com'}, + {'v': 'Danny Baron'}, + {'v': 'CA'}, + {'v': 'M'}, + {'v': 'TV'} ], - u'starred': False, - u'flagged': False + 'starred': False, + 'flagged': False }], - u'start': 0, - u'limit': 1, - u'mode': u'row-based', - u'filtered': 10, - u'total': 10, + 'start': 0, + 'limit': 1, + 'mode': 'row-based', + 'filtered': 10, + 'total': 10, }) self.assertEqual(len(response.rows), 1) # test iteration diff --git a/tests/test_tutorial.py b/tests/test_tutorial.py index 64f371f..38e8c01 100644 --- a/tests/test_tutorial.py +++ b/tests/test_tutorial.py @@ -22,15 +22,16 @@ class TutorialTestFacets(refinetest.RefineTestCase): project_file = 'louisiana-elected-officials.csv' + project_file_name = 'louisiana-elected-officials.csv' project_options = {'guess_cell_value_types': True} def test_get_rows(self): # Section "2. Exploration using Facets": {3} response = self.project.get_rows(limit=10) - self.assertEqual(len(response.rows), 10) - self.assertEqual(response.limit, 10) - self.assertEqual(response.total, 6958) - self.assertEqual(response.filtered, 6958) + self.assertEqual(10, len(response.rows)) + self.assertEqual(10, response.limit) + self.assertEqual(6958, response.total) + self.assertEqual(6958, response.filtered) for row in response.rows: self.assertFalse(row.flagged) self.assertFalse(row.starred) @@ -130,6 +131,7 @@ def test_facet(self): class TutorialTestEditing(refinetest.RefineTestCase): project_file = 'louisiana-elected-officials.csv' + project_file_name = 'louisiana-elected-officials.csv' project_options = {'guess_cell_value_types': True} def test_editing(self): @@ -201,6 +203,7 @@ def test_editing(self): class TutorialTestDuplicateDetection(refinetest.RefineTestCase): project_file = 'duplicates.csv' + project_file_name = 'duplicates.csv' def test_duplicate_detection(self): # Section "4. Row and Column Editing, @@ -214,10 +217,11 @@ def test_duplicate_detection(self): self.assertInResponse('Reorder rows') response = self.project.get_rows() indexes = [row.index for row in response.rows] - self.assertEqual(indexes, range(10)) + self.assertEqual(indexes, list(range(10))) # {10} self.project.add_column( - 'email', 'count', 'facetCount(value, "value", "email")') + 'email', 'count', 'facetCount(value, "value", "email")' + ) self.assertInResponse('column email by filling 10 rows') response = self.project.get_rows() self.assertEqual(self.project.column_order['email'], 0) # i.e. 1st @@ -241,17 +245,18 @@ def test_duplicate_detection(self): response = self.project.get_rows() email_counts = [(row['email'], row['count']) for row in response.rows] self.assertEqual(email_counts, [ - (u'arthur.duff@example4.com', 2), - (u'ben.morisson@example6.org', 1), - (u'ben.tyler@example3.org', 1), - (u'danny.baron@example1.com', 3), - (u'jean.griffith@example5.org', 1), - (u'melanie.white@example2.edu', 2) + ('arthur.duff@example4.com', 2), + ('ben.morisson@example6.org', 1), + ('ben.tyler@example3.org', 1), + ('danny.baron@example1.com', 3), + ('jean.griffith@example5.org', 1), + ('melanie.white@example2.edu', 2) ]) class TutorialTestTransposeColumnsIntoRows(refinetest.RefineTestCase): project_file = 'us_economic_assistance.csv' + project_file_name = 'us_economic_assistance.csv' def test_transpose_columns_into_rows(self): # Section "5. Structural Editing, Transpose Columns into Rows" @@ -285,6 +290,7 @@ def test_transpose_columns_into_rows(self): class TutorialTestTransposeFixedNumberOfRowsIntoColumns( refinetest.RefineTestCase): project_file = 'fixed-rows.csv' + project_file_name = 'fixed-rows.csv' project_format = 'text/line-based' project_options = {'header_lines': 0} @@ -359,6 +365,7 @@ def test_transpose_fixed_number_of_rows_into_columns(self): class TutorialTestTransposeVariableNumberOfRowsIntoColumns( refinetest.RefineTestCase): project_file = 'variable-rows.csv' + project_file_name = 'variable-rows.csv' project_format = 'text/line-based' project_options = {'header_lines': 0} @@ -406,6 +413,7 @@ def test_transpose_variable_number_of_rows_into_columns(self): class TutorialTestWebScraping(refinetest.RefineTestCase): project_file = 'eli-lilly.csv' + project_file_name = 'eli-lilly.csv' filter_expr_1 = """ forEach( From c0f771b8f2e555d1556079fde33e634107930cc4 Mon Sep 17 00:00:00 2001 From: Daniel Butler windows Date: Mon, 14 May 2018 23:09:54 -0400 Subject: [PATCH 02/25] updated to pass more tests --- google/refine/facet.py | 2 +- google/refine/refine.py | 32 +++++++++++++++----------------- tests/test_tutorial.py | 2 +- 3 files changed, 17 insertions(+), 19 deletions(-) diff --git a/google/refine/facet.py b/google/refine/facet.py index a6d05c4..3826f1b 100644 --- a/google/refine/facet.py +++ b/google/refine/facet.py @@ -132,7 +132,7 @@ def __init__(self, column, **options): # Capitalize 'From' to get around python's reserved word. -#noinspection PyPep8Naming +# noinspection PyPep8Naming class NumericFacet(Facet): def __init__(self, column, From=None, to=None, expression='value', select_blank=True, select_error=True, select_non_numeric=True, diff --git a/google/refine/refine.py b/google/refine/refine.py index 5b8e4c6..0913048 100644 --- a/google/refine/refine.py +++ b/google/refine/refine.py @@ -60,28 +60,25 @@ def urlopen(self, command, data=None, params=None, project_id=None, files=None): param: query params dict project_id: project ID as string - Returns urllib2.urlopen iterable.""" + Returns requests.Response object.""" url = self.url(command) if project_id: - # XXX haven't figured out pattern on qs v body if 'delete' in command or data: data['project'] = project_id else: params['project'] = project_id - if files: - response = requests.post(url, data=data, params=params, files=files) - else: - response = requests.post(url, data=data, params=params) + response = requests.post(url, data=data, params=params, files=files) return response def urlopen_json(self, url, *args, **kwargs): """Open a Refine URL, optionally POST data, and return parsed JSON.""" url = self.url(url) response = requests.get(url, *args, **kwargs) + if response.status_code is not 200: + response = requests.post(url, *args, **kwargs) response = response.json() if 'code' in response and response['code'] not in ('ok', 'pending'): - error_message = ('server ' + response['code'] + ': ' + - response.get('message', response.get('stack', response))) + error_message = ('server ' + response['code'] + ': ' + response.get('message', response.get('stack', response))) raise Exception(error_message) return response @@ -370,10 +367,10 @@ def do_json(self, command, data=None, params=None, include_engine=True): if include_engine: params['engine'] = self.engine.as_json() if command == 'delete-project': - response = self.server.urlopen(command, params=params, data=data) + response = self.server.urlopen(command, params=params) response = response.json() else: - response = self.server.urlopen_json(command, params=params, data=data) + response = self.server.urlopen_json(command, params=params) if 'historyEntry' in response: # **response['historyEntry'] won't work as keys are unicode :-/ he = response['historyEntry'] @@ -488,12 +485,14 @@ def remove_rows(self, facets=None): self.engine.set_facets(facets) return self.do_json('remove-rows') - def text_transform(self, column, expression, on_error='set-to-blank', - repeat=False, repeat_count=10): + def text_transform(self, column, expression, on_error='set-to-blank', repeat=False, repeat_count=10): response = self.do_json('text-transform', params={ - 'columnName': column, 'expression': expression, - 'onError': on_error, 'repeat': repeat, - 'repeatCount': repeat_count}) + 'columnName': column, + 'expression': expression, + 'onError': on_error, + 'repeat': repeat, + 'repeatCount': repeat_count + }) return response def edit(self, column, edit_from, edit_to): @@ -547,8 +546,7 @@ def flag_row(self, row, flagged=True): def star_row(self, row, starred=True): return self.annotate_one_row(row, 'starred', starred) - def add_column(self, column, new_column, expression='value', - column_insert_index=None, on_error='set-to-blank'): + def add_column(self, column, new_column, expression='value', column_insert_index=None, on_error='set-to-blank'): if column_insert_index is None: column_insert_index = self.column_order[column] + 1 response = self.do_json( diff --git a/tests/test_tutorial.py b/tests/test_tutorial.py index 38e8c01..06d3cc1 100644 --- a/tests/test_tutorial.py +++ b/tests/test_tutorial.py @@ -140,7 +140,7 @@ def test_editing(self): # {2} self.project.text_transform(column='Zip Code 2', expression='value.toString()[0, 5]') - self.assertInResponse('transform on 6067 cells in column Zip Code 2') + self.assertInResponse('transform on 1441 cells in column Zip Code 2') # {3} - XXX history # {4} office_title_facet = facet.TextFacet('Office Title') From 48eca894421f1bd762afc8cc5023bb7351cc5c10 Mon Sep 17 00:00:00 2001 From: Daniel Butler windows Date: Tue, 15 May 2018 18:22:05 -0400 Subject: [PATCH 03/25] engine updated - working now --- google/refine/facet.py | 13 ++++++------- google/refine/refine.py | 10 ++++++++-- tests/test_tutorial.py | 8 ++++---- 3 files changed, 18 insertions(+), 13 deletions(-) diff --git a/google/refine/facet.py b/google/refine/facet.py index 3826f1b..d655563 100644 --- a/google/refine/facet.py +++ b/google/refine/facet.py @@ -60,8 +60,7 @@ def __init__(self, column, selection=None, expression='value', omit_blank=False, omit_error=False, select_blank=False, select_error=False, invert=False, **options): super(TextFacet, self).__init__( - column, - facet_type='list', + column, facet_type='list', omit_blank=omit_blank, omit_error=omit_error, select_blank=select_blank, @@ -226,6 +225,11 @@ def set_facets(self, *facets): for facet in facets: self.add_facet(facet) + def add_facet(self, facet): + # Record the facet's object id so facet response can be looked up by id + self.facet_index_by_id[id(facet)] = len(self.facets) + self.facets.append(facet) + def facets_response(self, response): """Unpack a compute-facets response.""" return FacetsResponse(self, response) @@ -241,11 +245,6 @@ def as_json(self): 'mode': self.mode, } - def add_facet(self, facet): - # Record the facet's object id so facet response can be looked up by id - self.facet_index_by_id[id(facet)] = len(self.facets) - self.facets.append(facet) - def remove_all(self): """Remove all facets.""" self.facet_index_by_id = {} diff --git a/google/refine/refine.py b/google/refine/refine.py index 0913048..db716d6 100644 --- a/google/refine/refine.py +++ b/google/refine/refine.py @@ -61,6 +61,7 @@ def urlopen(self, command, data=None, params=None, project_id=None, files=None): project_id: project ID as string Returns requests.Response object.""" + # TODO: command to direct post or get request url = self.url(command) if project_id: if 'delete' in command or data: @@ -74,6 +75,7 @@ def urlopen_json(self, url, *args, **kwargs): """Open a Refine URL, optionally POST data, and return parsed JSON.""" url = self.url(url) response = requests.get(url, *args, **kwargs) + # TODO: Update this to use the response.raise_for_status() if response.status_code is not 200: response = requests.post(url, *args, **kwargs) response = response.json() @@ -201,6 +203,8 @@ def new_project(self, project_file=None, project_url=None, project_name=None, pr store_blank_cells_as_nulls=True, include_file_sources=False, **opts): + # TODO: Ability to add Creator, Subject, Custom Metadata + # TODO: What is Custom Metadata? Can I include information that I pass around to even out of the project if (project_file and project_url) or (not project_file and not project_url): raise ValueError('One (only) of project_file and project_url must be set') @@ -365,12 +369,14 @@ def do_json(self, command, data=None, params=None, include_engine=True): params = {} params['project'] = self.project_id if include_engine: - params['engine'] = self.engine.as_json() + if data is None: + data = {} + data['engine'] = str(self.engine.as_json()) if command == 'delete-project': response = self.server.urlopen(command, params=params) response = response.json() else: - response = self.server.urlopen_json(command, params=params) + response = self.server.urlopen_json(command, params=params, data=data) if 'historyEntry' in response: # **response['historyEntry'] won't work as keys are unicode :-/ he = response['historyEntry'] diff --git a/tests/test_tutorial.py b/tests/test_tutorial.py index 06d3cc1..df6e8b8 100644 --- a/tests/test_tutorial.py +++ b/tests/test_tutorial.py @@ -161,11 +161,11 @@ def test_editing(self): self.assertTrue(not response) # {7} clusters = self.project.compute_clusters('Office Title', 'knn') - self.assertEqual(len(clusters), 7) + self.assertEqual(7, len(clusters)) first_cluster = clusters[0] - self.assertEqual(len(first_cluster), 2) - self.assertEqual(first_cluster[0]['value'], 'RSCC Member') - self.assertEqual(first_cluster[0]['count'], 233) + self.assertEqual(2, len(first_cluster)) + self.assertEqual('RSCC Member', first_cluster[0]['value']) + self.assertEqual(233, first_cluster[0]['count']) # Not strictly necessary to repeat 'Council Member' but a test # of mass_edit, and it's also what the front end sends. self.project.mass_edit('Office Title', [{ From 8e082027e2a9627c663ab8f393d4406881022fd5 Mon Sep 17 00:00:00 2001 From: Daniel Butler windows Date: Sat, 19 May 2018 16:35:52 -0400 Subject: [PATCH 04/25] Updated tests to match the new 2.8 server responses. Updated the get-rows command to set sorting to nothing if none is specified --- google/refine/facet.py | 7 +++-- google/refine/refine.py | 61 +++++++++++++++++------------------------ tests/test_facet.py | 4 +-- tests/test_tutorial.py | 25 +++++++++-------- 4 files changed, 44 insertions(+), 53 deletions(-) diff --git a/google/refine/facet.py b/google/refine/facet.py index d655563..5e376a4 100644 --- a/google/refine/facet.py +++ b/google/refine/facet.py @@ -239,11 +239,11 @@ def __len__(self): def as_json(self): """Return a JSON string suitable for use as a POST parameter.""" - # TODO: Rename this from as_json to dict? - return { + d = { 'facets': [f.as_dict() for f in self.facets], 'mode': self.mode, } + return str(d) def remove_all(self): """Remove all facets.""" @@ -280,7 +280,8 @@ def __init__(self, criteria=None): self.criteria.append(criterion) def as_json(self): - return json.dumps({'criteria': self.criteria}) + d = {'criteria': self.criteria} + return str(d) def __len__(self): return len(self.criteria) diff --git a/google/refine/refine.py b/google/refine/refine.py index db716d6..2d7f94a 100644 --- a/google/refine/refine.py +++ b/google/refine/refine.py @@ -69,20 +69,22 @@ def urlopen(self, command, data=None, params=None, project_id=None, files=None): else: params['project'] = project_id response = requests.post(url, data=data, params=params, files=files) + if response.status_code is not 200: + response = requests.get(url, data=data, params=params, files=files) return response - def urlopen_json(self, url, *args, **kwargs): + def urlopen_json(self, command, *args, **kwargs): """Open a Refine URL, optionally POST data, and return parsed JSON.""" - url = self.url(url) - response = requests.get(url, *args, **kwargs) - # TODO: Update this to use the response.raise_for_status() - if response.status_code is not 200: - response = requests.post(url, *args, **kwargs) + response = self.urlopen(command, *args, **kwargs) response = response.json() + self.check_response_ok(response) + return response + + @staticmethod + def check_response_ok(response): if 'code' in response and response['code'] not in ('ok', 'pending'): error_message = ('server ' + response['code'] + ': ' + response.get('message', response.get('stack', response))) raise Exception(error_message) - return response def get_version(self): """Return version data. @@ -234,29 +236,12 @@ def s(opt): # 'include-file-sources': s(include_file_sources), # } - # options = { - # - # } - # params = { - # 'format': project_format, - # 'options': json.dumps(options), - # } - - params = { - - } + params = self.default_params(project_format) files = { 'project-file': (project_file_name, open(project_file, 'rb')) } - # if project_url is not None: - # options['server_url'] = project_url - # elif project_file is not None: - # options['project-file'] = { - # 'fd': open(project_file), - # 'filename': project_file, - # } if project_name is None: # make a name for itself by stripping extension and directories project_name = (project_file or 'New project').rsplit('.', 1)[0] @@ -274,6 +259,9 @@ def s(opt): else: raise Exception('Project not created') + def default_params(self, project_format): + return self.new_project_defaults[project_format] + def RowsResponseFactory(column_index): """Factory for the parsing the output from get_rows(). @@ -371,7 +359,7 @@ def do_json(self, command, data=None, params=None, include_engine=True): if include_engine: if data is None: data = {} - data['engine'] = str(self.engine.as_json()) + data['engine'] = self.engine.as_json() if command == 'delete-project': response = self.server.urlopen(command, params=params) response = response.json() @@ -470,11 +458,13 @@ def compute_facets(self, facets=None): def get_rows(self, facets=None, sort_by=None, start=0, limit=10): if facets: self.engine.set_facets(facets) - if sort_by is not None: + if sort_by is None: + self.sorting = facet.Sorting([]) + elif sort_by is not None: self.sorting = facet.Sorting(sort_by) - response = self.do_json( - 'get-rows', - params={'sorting': self.sorting.as_json(), 'start': start, 'limit': limit} + response = self.do_json('get-rows', + params={'start': start, 'limit': limit}, + data={'sorting': self.sorting.as_json()}, ) return self.rows_response_factory(response) @@ -527,16 +517,16 @@ def mass_edit(self, column, edits, expression='value'): }, } - def compute_clusters(self, column, clusterer_type='binning', - function=None, params=None): + def compute_clusters(self, column, clusterer_type='binning', function=None, params=None): """Returns a list of clusters of {'value': ..., 'count': ...}.""" clusterer = self.clusterer_defaults[clusterer_type] if params is not None: clusterer['params'] = params if function is not None: clusterer['function'] = function + clusterer['column'] = column - response = self.do_json('compute-clusters', params={'clusterer': json.dumps(clusterer)}) + response = self.do_json('compute-clusters', data={'clusterer': str(clusterer)}) return [[{'value': x['v'], 'count': x['c']} for x in cluster] for cluster in response] @@ -579,8 +569,7 @@ def split_column(self, column, separator=',', mode='separator', return response def rename_column(self, column, new_column): - response = self.do_json('rename-column', params={'oldColumnName': column, - 'newColumnName': new_column}) + response = self.do_json('rename-column', params={'oldColumnName': column, 'newColumnName': new_column}) self.get_models() return response @@ -701,4 +690,4 @@ def reconcile(self, column, service, reconciliation_type=None, reconciliation_co 'autoMatch': True, 'columnDetails': [], } - return self.do_json('reconcile', params={'columnName': column, 'config': json.dumps(reconciliation_config)}) + return self.do_json('reconcile', params={'columnName': column, 'config': str(reconciliation_config)}) diff --git a/tests/test_facet.py b/tests/test_facet.py index b01eac1..b8e8a9d 100644 --- a/tests/test_facet.py +++ b/tests/test_facet.py @@ -80,7 +80,7 @@ def test_init(self): def test_serialize(self): engine = Engine() engine_json = engine.as_json() - self.assertEqual(engine_json, {'facets': [], 'mode': 'row-based'}) + self.assertEqual(engine_json, "{'facets': [], 'mode': 'row-based'}") facet = TextFacet(column='column') self.assertEqual(facet.as_dict(), {'selectError': False, 'name': 'column', 'selection': [], 'expression': 'value', 'invert': False, 'columnName': 'column', 'selectBlank': False, 'omitBlank': False, 'type': 'list', 'omitError': False}) facet = NumericFacet(column='column', From=1, to=5) @@ -111,7 +111,7 @@ def test_reset_remove(self): class SortingTest(unittest.TestCase): def test_sorting(self): sorting = Sorting() - self.assertEqual(sorting.as_json(), '{"criteria": []}') + self.assertEqual(sorting.as_json(), "{'criteria': []}") sorting = Sorting('email') c = sorting.criteria[0] self.assertEqual(c['column'], 'email') diff --git a/tests/test_tutorial.py b/tests/test_tutorial.py index df6e8b8..619dacc 100644 --- a/tests/test_tutorial.py +++ b/tests/test_tutorial.py @@ -85,13 +85,14 @@ def test_facet(self): response = self.project.compute_facets() self.assertEqual(len(response.facets[2].choices), 76) # {12} - XXX not sure how to interpret bins & baseBins yet + self.project.text_transform('Office Level', 'value.toNumber()') office_level_facet = facet.NumericFacet('Office Level') self.project.engine.add_facet(office_level_facet) # {13} office_level_facet.From = 300 # from reserved word office_level_facet.to = 320 response = self.project.get_rows() - self.assertEqual(response.filtered, 1907) + self.assertEqual(1907, response.filtered) response = self.project.compute_facets() ot = response.facets[office_title_facet] self.assertEqual(len(ot.choices), 21) @@ -138,9 +139,11 @@ def test_editing(self): # Section "3. Cell Editing": {1} self.project.engine.remove_all() # redundant due to setUp # {2} + self.project.text_transform(column='Zip Code 2', expression='value.toNumber()') + self.assertInResponse('transform on 6067 cells in column Zip Code 2') self.project.text_transform(column='Zip Code 2', expression='value.toString()[0, 5]') - self.assertInResponse('transform on 1441 cells in column Zip Code 2') + self.assertInResponse('transform on 6958 cells in column Zip Code 2') # {3} - XXX history # {4} office_title_facet = facet.TextFacet('Office Title') @@ -161,11 +164,11 @@ def test_editing(self): self.assertTrue(not response) # {7} clusters = self.project.compute_clusters('Office Title', 'knn') - self.assertEqual(7, len(clusters)) + self.assertEqual(len(clusters), 7) first_cluster = clusters[0] - self.assertEqual(2, len(first_cluster)) - self.assertEqual('RSCC Member', first_cluster[0]['value']) - self.assertEqual(233, first_cluster[0]['count']) + self.assertEqual(len(first_cluster), 2) + self.assertEqual(first_cluster[0]['value'], 'DPEC Member at Large') + self.assertEqual(first_cluster[0]['count'], 6) # Not strictly necessary to repeat 'Council Member' but a test # of mass_edit, and it's also what the front end sends. self.project.mass_edit('Office Title', [{ @@ -196,9 +199,9 @@ def test_editing(self): # {5}, {6}, {7} response = self.project.compute_facets(facet.StarredFacet(True)) self.assertEqual(len(response.facets[0].choices), 2) # true & false - self.assertEqual(response.facets[0].choices[True].count, 3) + self.assertEqual(response.facets[0].choices[True].count, 2) self.project.remove_rows() - self.assertInResponse('3 rows') + self.assertInResponse('2 rows') class TutorialTestDuplicateDetection(refinetest.RefineTestCase): @@ -219,9 +222,7 @@ def test_duplicate_detection(self): indexes = [row.index for row in response.rows] self.assertEqual(indexes, list(range(10))) # {10} - self.project.add_column( - 'email', 'count', 'facetCount(value, "value", "email")' - ) + self.project.add_column('email', 'count', 'facetCount(value, "value", "email")') self.assertInResponse('column email by filling 10 rows') response = self.project.get_rows() self.assertEqual(self.project.column_order['email'], 0) # i.e. 1st @@ -235,7 +236,7 @@ def test_duplicate_detection(self): self.assertTrue(self.project.has_records) response = self.project.get_rows() emails = [1 if row['email'] else 0 for row in response.rows] - self.assertEqual(emails, [1, 0, 1, 1, 1, 0, 0, 1, 1, 0]) + self.assertEqual([1, 0, 1, 1, 1, 0, 0, 1, 1, 0], emails) # {12} blank_facet = facet.BlankFacet('email', selection=True) # {13} From 620d10113de1b62fd4c87def7c7fc675c329e6b3 Mon Sep 17 00:00:00 2001 From: Daniel Butler windows Date: Sat, 19 May 2018 17:28:37 -0400 Subject: [PATCH 05/25] new project request sends default options correctly --- google/refine/refine.py | 192 ++++++++++++++++++---------------------- tests/test_refine.py | 33 ++++++- 2 files changed, 118 insertions(+), 107 deletions(-) diff --git a/google/refine/refine.py b/google/refine/refine.py index 2d7f94a..86eef8e 100644 --- a/google/refine/refine.py +++ b/google/refine/refine.py @@ -130,113 +130,92 @@ def open_project(self, project_id): """Open a Refine project.""" return RefineProject(self.server, project_id) - # These aren't used yet but are included for reference - new_project_defaults = { - 'text/line-based/*sv': { - 'encoding': '', - 'separator': ',', - 'ignore_lines': -1, - 'header_lines': 1, - 'skip_data_lines': 0, - 'limit': -1, - 'store_blank_rows': True, - 'guess_cell_value_types': True, - 'process_quotes': True, - 'store_blank_cells_as_nulls': True, - 'include_file_sources': False}, - 'text/line-based': { - 'encoding': '', - 'lines_per_row': 1, - 'ignore_lines': -1, - 'limit': -1, - 'skip_data_lines': -1, - 'store_blank_rows': True, - 'store_blank_cells_as_nulls': True, - 'include_file_sources': False}, - 'text/line-based/fixed-width': { - 'encoding': '', - 'column_widths': [20], - 'ignore_lines': -1, - 'header_lines': 0, - 'skip_data_lines': 0, - 'limit': -1, - 'guess_cell_value_types': False, - 'store_blank_rows': True, - 'store_blank_cells_as_nulls': True, - 'include_file_sources': False}, - 'text/line-based/pc-axis': { - 'encoding': '', - 'limit': -1, - 'skip_data_lines': -1, - 'include_file_sources': False}, - 'text/rdf+n3': {'encoding': ''}, - 'text/xml/ods': { - 'sheets': [], - 'ignore_lines': -1, - 'header_lines': 1, - 'skip_data_lines': 0, - 'limit': -1, - 'store_blank_rows': True, - 'store_blank_cells_as_nulls': True, - 'include_file_sources': False}, - 'binary/xls': { - 'xml_based': False, - 'sheets': [], - 'ignore_lines': -1, - 'header_lines': 1, - 'skip_data_lines': 0, - 'limit': -1, - 'store_blank_rows': True, - 'store_blank_cells_as_nulls': True, - 'include_file_sources': False} - } + def set_options(self, file_format, **kwargs): + options = self.default_options(file_format) + for key, value in kwargs.items(): + options[key] = value + return options + + @staticmethod + def default_options(file_format): + new_project_defaults = { + 'text/line-based/*sv': { + 'encoding': '', + 'separator': ',', + 'ignore_lines': -1, + 'header_lines': 1, + 'skip_data_lines': 0, + 'limit': -1, + 'store_blank_rows': True, + 'guess_cell_value_types': True, + 'process_quotes': True, + 'store_blank_cells_as_nulls': True, + 'include_file_sources': False}, + 'text/line-based': { + 'encoding': '', + 'lines_per_row': 1, + 'ignore_lines': -1, + 'limit': -1, + 'skip_data_lines': -1, + 'store_blank_rows': True, + 'store_blank_cells_as_nulls': True, + 'include_file_sources': False}, + 'text/line-based/fixed-width': { + 'encoding': '', + 'column_widths': [20], + 'ignore_lines': -1, + 'header_lines': 0, + 'skip_data_lines': 0, + 'limit': -1, + 'guess_cell_value_types': False, + 'store_blank_rows': True, + 'store_blank_cells_as_nulls': True, + 'include_file_sources': False}, + 'text/line-based/pc-axis': { + 'encoding': '', + 'limit': -1, + 'skip_data_lines': -1, + 'include_file_sources': False}, + 'text/rdf+n3': {'encoding': ''}, + 'text/xml/ods': { + 'sheets': [], + 'ignore_lines': -1, + 'header_lines': 1, + 'skip_data_lines': 0, + 'limit': -1, + 'store_blank_rows': True, + 'store_blank_cells_as_nulls': True, + 'include_file_sources': False}, + 'binary/xls': { + 'xml_based': False, + 'sheets': [], + 'ignore_lines': -1, + 'header_lines': 1, + 'skip_data_lines': 0, + 'limit': -1, + 'store_blank_rows': True, + 'store_blank_cells_as_nulls': True, + 'include_file_sources': False} + } + if file_format in new_project_defaults.keys(): + return new_project_defaults[file_format] + else: + raise InvalidFileFormat def new_project(self, project_file=None, project_url=None, project_name=None, project_format='text/line-based/*sv', - project_file_name=None, - encoding='', - separator=',', - ignore_lines=-1, - header_lines=1, - skip_data_lines=0, - limit=-1, - store_blank_rows=True, - guess_cell_value_types=True, - process_quotes=True, - store_blank_cells_as_nulls=True, - include_file_sources=False, - **opts): + project_file_name=None, **opts): # TODO: Ability to add Creator, Subject, Custom Metadata # TODO: What is Custom Metadata? Can I include information that I pass around to even out of the project if (project_file and project_url) or (not project_file and not project_url): raise ValueError('One (only) of project_file and project_url must be set') - def s(opt): - if isinstance(opt, bool): - return 'true' if opt else 'false' - if opt is None: - return '' - return str(opt) - - # the new APIs requires a json in the 'option' POST or GET argument - # POST is broken at the moment, so we send it in the URL - # new_style_options = dict(opts, **{ - # 'encoding': s(encoding), - # }) - # options = { - # 'separator': s(separator), - # 'ignore-lines': s(ignore_lines), - # 'header-lines': s(header_lines), - # 'skip-data-lines': s(skip_data_lines), - # 'limit': s(limit), - # 'guess-value-type': s(guess_cell_value_types), - # 'process-quotes': s(process_quotes), - # 'store-blank-rows': s(store_blank_rows), - # 'store-blank-cells-as-nulls': s(store_blank_cells_as_nulls), - # 'include-file-sources': s(include_file_sources), - # } - - params = self.default_params(project_format) + params = {} + + data = { + 'format': project_format, + 'options': self.set_options(project_format, **opts) + } files = { 'project-file': (project_file_name, open(project_file, 'rb')) @@ -247,20 +226,17 @@ def s(opt): project_name = (project_file or 'New project').rsplit('.', 1)[0] project_name = os.path.basename(project_name) params['project-name'] = project_name - response = self.server.urlopen( - 'create-project-from-upload', params=params, files=files - ) + response = self.server.urlopen('create-project-from-upload', params=params, data=data, files=files) # expecting a redirect to the new project containing the id in the server_url - url_params = urllib.parse.parse_qs( - urllib.parse.urlparse(response.url).query) + url_params = urllib.parse.parse_qs(urllib.parse.urlparse(response.url).query) if 'project' in url_params: project_id = url_params['project'][0] return RefineProject(self.server, project_id) else: raise Exception('Project not created') - def default_params(self, project_format): - return self.new_project_defaults[project_format] + # def default_params(self, project_format): + # return self.new_project_defaults[project_format] def RowsResponseFactory(column_index): @@ -691,3 +667,7 @@ def reconcile(self, column, service, reconciliation_type=None, reconciliation_co 'columnDetails': [], } return self.do_json('reconcile', params={'columnName': column, 'config': str(reconciliation_config)}) + + +class InvalidFileFormat(ValueError): + pass \ No newline at end of file diff --git a/tests/test_refine.py b/tests/test_refine.py index f1bbb7f..f35e79e 100644 --- a/tests/test_refine.py +++ b/tests/test_refine.py @@ -38,7 +38,7 @@ def test_get_version(self): self.assertTrue(item in version_info) def test_version(self): - self.assertTrue(self.server.version in ('2.0', '2.1', '2.5', '2.8')) + self.assertTrue(self.server.version in ('2.8',)) class RefineTest(refinetest.RefineTestCase): @@ -78,6 +78,37 @@ def test_open_export_csv(self): for row in export: self.assertTrue(row[3] == 'F' or row[3] == 'M') + # Not sure what I am dong wrong here + # def test_invalid_type_raises_InvalidFileFormatError(self): + # self.assertRaises(self.refine.default_options('Bad Type'), refine.InvalidFileFormat) + + def test_default_options(self): + options = self.refine.default_options('text/line-based') + expected = { + 'encoding': '', + 'lines_per_row': 1, + 'ignore_lines': -1, + 'limit': -1, + 'skip_data_lines': -1, + 'store_blank_rows': True, + 'store_blank_cells_as_nulls': True, + 'include_file_sources': False + } + self.assertEqual(options, expected) + + def test_options_set_properly(self): + options = self.refine.set_options('text/line-based', lines_per_row=2, limit=5) + expected = { + 'encoding': '', + 'lines_per_row': 2, + 'ignore_lines': -1, + 'limit': 5, + 'skip_data_lines': -1, + 'store_blank_rows': True, + 'store_blank_cells_as_nulls': True, + 'include_file_sources': False + } + self.assertEqual(options, expected) if __name__ == '__main__': unittest.main() From 94249104d7fcc137db2cdaa7007bcb9cb5b0d2f2 Mon Sep 17 00:00:00 2001 From: Daniel Butler windows Date: Sat, 19 May 2018 17:42:43 -0400 Subject: [PATCH 06/25] new project function cleaned up --- google/refine/refine.py | 40 +++++++++++++++++++++++----------------- 1 file changed, 23 insertions(+), 17 deletions(-) diff --git a/google/refine/refine.py b/google/refine/refine.py index 86eef8e..cdcd2d0 100644 --- a/google/refine/refine.py +++ b/google/refine/refine.py @@ -130,6 +130,24 @@ def open_project(self, project_id): """Open a Refine project.""" return RefineProject(self.server, project_id) + @staticmethod + def set_project_name(project_name, project_file): + # expecting a redirect to the new project containing the id in the server_url + if project_name is None: + # make a name for itself by stripping extension and directories + project_name = (project_file or 'New project').rsplit('.', 1)[0] + project_name = os.path.basename(project_name) + return project_name + + @staticmethod + def get_project_id(url): + url_params = urllib.parse.parse_qs(urllib.parse.urlparse(url).query) + if 'project' in url_params: + project_id = url_params['project'][0] + return project_id + else: + raise Exception('Project not created') + def set_options(self, file_format, **kwargs): options = self.default_options(file_format) for key, value in kwargs.items(): @@ -210,33 +228,21 @@ def new_project(self, project_file=None, project_url=None, project_name=None, pr if (project_file and project_url) or (not project_file and not project_url): raise ValueError('One (only) of project_file and project_url must be set') - params = {} - + params = { + 'project_name': self.set_project_name(project_name, project_file) + } data = { 'format': project_format, 'options': self.set_options(project_format, **opts) } - files = { 'project-file': (project_file_name, open(project_file, 'rb')) } - if project_name is None: - # make a name for itself by stripping extension and directories - project_name = (project_file or 'New project').rsplit('.', 1)[0] - project_name = os.path.basename(project_name) - params['project-name'] = project_name response = self.server.urlopen('create-project-from-upload', params=params, data=data, files=files) - # expecting a redirect to the new project containing the id in the server_url - url_params = urllib.parse.parse_qs(urllib.parse.urlparse(response.url).query) - if 'project' in url_params: - project_id = url_params['project'][0] - return RefineProject(self.server, project_id) - else: - raise Exception('Project not created') - # def default_params(self, project_format): - # return self.new_project_defaults[project_format] + project_id = self.get_project_id(response.url) + return RefineProject(self.server, project_id) def RowsResponseFactory(column_index): From 85be17b6ffd8214adfc04bcf00bf5122d3bc50d0 Mon Sep 17 00:00:00 2001 From: dbutlerdb Date: Sat, 19 May 2018 19:13:17 -0400 Subject: [PATCH 07/25] Update README.rst Updated requirement to requests --- README.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.rst b/README.rst index d17b35e..9de0367 100644 --- a/README.rst +++ b/README.rst @@ -56,7 +56,7 @@ Installation (Someone with more familiarity with python's byzantine collection of installation frameworks is very welcome to improve/"best practice" all this.) -#. Install dependencies, which currently is ``urllib2_file``: +#. Install dependencies, which currently is ``requests``: ``sudo pip install -r requirements.txt`` From e6e32e1469cfb1ad2c93df6faa59cc1252ef755c Mon Sep 17 00:00:00 2001 From: Daniel Butler windows Date: Sun, 20 May 2018 00:01:46 -0400 Subject: [PATCH 08/25] reorder columns fixed. All tests pass! --- google/refine/refine.py | 21 +++++++++++++-------- tests/test_tutorial.py | 3 +-- 2 files changed, 14 insertions(+), 10 deletions(-) diff --git a/google/refine/refine.py b/google/refine/refine.py index cdcd2d0..cd30ead 100644 --- a/google/refine/refine.py +++ b/google/refine/refine.py @@ -540,13 +540,16 @@ def add_column(self, column, new_column, expression='value', column_insert_index self.get_models() return response - def split_column(self, column, separator=',', mode='separator', - regex=False, guess_cell_type=True, - remove_original_column=True): - response = self.do_json('split-column', params={ - 'columnName': column, 'separator': separator, 'mode': mode, - 'regex': regex, 'guessCellType': guess_cell_type, - 'removeOriginalColumn': remove_original_column}) + def split_column(self, column, separator=',', mode='separator', regex=False, guess_cell_type=True, remove_original_column=True): + response = self.do_json('split-column', + params={ + 'columnName': column, + 'separator': separator, + 'mode': mode, + 'regex': regex, + 'guessCellType': guess_cell_type, + 'removeOriginalColumn': remove_original_column + }) self.get_models() return response @@ -557,7 +560,9 @@ def rename_column(self, column, new_column): def reorder_columns(self, new_column_order): """Takes an array of column names in the new order.""" - response = self.do_json('reorder-columns', params={'columnNames': new_column_order}) + if new_column_order is not str: + new_column_order = str(new_column_order) + response = self.do_json('reorder-columns', data={'columnNames': new_column_order}) self.get_models() return response diff --git a/tests/test_tutorial.py b/tests/test_tutorial.py index 619dacc..5b8d8d5 100644 --- a/tests/test_tutorial.py +++ b/tests/test_tutorial.py @@ -358,8 +358,7 @@ def test_transpose_fixed_number_of_rows_into_columns(self): self.project.text_transform('Column 1', 'value.partition(" on ")[2]') self.assertInResponse('4 cells') # {19} - self.project.reorder_columns(['Transaction', 'Amount', 'Sender', - 'Recipient']) + self.project.reorder_columns(['Transaction', 'Amount', 'Sender', 'Recipient']) self.assertInResponse('Reorder columns') From ae21e0800fdf56d5f3501962bf22484d1e6cc460 Mon Sep 17 00:00:00 2001 From: Daniel Butler windows Date: Sun, 20 May 2018 00:12:55 -0400 Subject: [PATCH 09/25] moved pieces around to make it more readable --- google/refine/refine.py | 133 ++++++++++++++++++---------------------- 1 file changed, 60 insertions(+), 73 deletions(-) diff --git a/google/refine/refine.py b/google/refine/refine.py index cd30ead..dc460e7 100644 --- a/google/refine/refine.py +++ b/google/refine/refine.py @@ -44,9 +44,6 @@ def server_url(): server += ':' + REFINE_PORT return server - def url(self, command): - return self.server + '/command/core/' + command - def __init__(self, server=None): if server is None: server = self.server_url() @@ -80,6 +77,9 @@ def urlopen_json(self, command, *args, **kwargs): self.check_response_ok(response) return response + def url(self, command): + return self.server + '/command/core/' + command + @staticmethod def check_response_ok(response): if 'code' in response and response['code'] not in ('ok', 'pending'): @@ -88,7 +88,6 @@ def check_response_ok(response): def get_version(self): """Return version data. - {"revision":"r1836","full_version":"2.0 [r1836]", "full_name":"Google Refine 2.0 [r1836]","version":"2.0"}""" return self.urlopen_json('get-version') @@ -108,6 +107,50 @@ def __init__(self, server): else: self.server = RefineServer(server) + def new_project(self, project_file=None, project_url=None, project_name=None, project_format='text/line-based/*sv', + project_file_name=None, **opts): + # TODO: Ability to add Creator, Subject, Custom Metadata + # TODO: What is Custom Metadata? Can I include information that I pass around to even out of the project + if (project_file and project_url) or (not project_file and not project_url): + raise ValueError('One (only) of project_file and project_url must be set') + params = { + 'project_name': self.set_project_name(project_name, project_file) + } + data = { + 'format': project_format, + 'options': self.set_options(project_format, **opts) + } + files = { + 'project-file': (project_file_name, open(project_file, 'rb')) + } + response = self.server.urlopen('create-project-from-upload', params=params, data=data, files=files) + project_id = self.get_project_id(response.url) + return RefineProject(self.server, project_id) + + @staticmethod + def set_project_name(project_name, project_file): + # expecting a redirect to the new project containing the id in the server_url + if project_name is None: + # make a name for itself by stripping extension and directories + project_name = (project_file or 'New project').rsplit('.', 1)[0] + project_name = os.path.basename(project_name) + return project_name + + def set_options(self, file_format, **kwargs): + options = self.default_options(file_format) + for key, value in kwargs.items(): + options[key] = value + return options + + def get_project_name(self, project_id): + """Returns project name given project_id.""" + projects = self.list_projects() + return projects[project_id]['name'] + + def open_project(self, project_id): + """Open a Refine project.""" + return RefineProject(self.server, project_id) + def list_projects(self): """Return a dict of projects indexed by id. @@ -121,24 +164,6 @@ def list_projects(self): # projects with the same name. return self.server.urlopen_json('get-all-project-metadata')['projects'] - def get_project_name(self, project_id): - """Returns project name given project_id.""" - projects = self.list_projects() - return projects[project_id]['name'] - - def open_project(self, project_id): - """Open a Refine project.""" - return RefineProject(self.server, project_id) - - @staticmethod - def set_project_name(project_name, project_file): - # expecting a redirect to the new project containing the id in the server_url - if project_name is None: - # make a name for itself by stripping extension and directories - project_name = (project_file or 'New project').rsplit('.', 1)[0] - project_name = os.path.basename(project_name) - return project_name - @staticmethod def get_project_id(url): url_params = urllib.parse.parse_qs(urllib.parse.urlparse(url).query) @@ -148,12 +173,6 @@ def get_project_id(url): else: raise Exception('Project not created') - def set_options(self, file_format, **kwargs): - options = self.default_options(file_format) - for key, value in kwargs.items(): - options[key] = value - return options - @staticmethod def default_options(file_format): new_project_defaults = { @@ -220,34 +239,9 @@ def default_options(file_format): else: raise InvalidFileFormat - def new_project(self, project_file=None, project_url=None, project_name=None, project_format='text/line-based/*sv', - project_file_name=None, **opts): - # TODO: Ability to add Creator, Subject, Custom Metadata - # TODO: What is Custom Metadata? Can I include information that I pass around to even out of the project - - if (project_file and project_url) or (not project_file and not project_url): - raise ValueError('One (only) of project_file and project_url must be set') - - params = { - 'project_name': self.set_project_name(project_name, project_file) - } - data = { - 'format': project_format, - 'options': self.set_options(project_format, **opts) - } - files = { - 'project-file': (project_file_name, open(project_file, 'rb')) - } - - response = self.server.urlopen('create-project-from-upload', params=params, data=data, files=files) - - project_id = self.get_project_id(response.url) - return RefineProject(self.server, project_id) - def RowsResponseFactory(column_index): """Factory for the parsing the output from get_rows(). - Uses the project's model's row cell index so that a row can be used as a dict by column name.""" @@ -294,7 +288,6 @@ def __init__(self, response): class RefineProject: """An OpenRefine project.""" - def __init__(self, server, project_id=None): if not isinstance(server, RefineServer): if '/project?project=' in server: @@ -321,18 +314,6 @@ def __init__(self, server, project_id=None): # following filled in by get_reconciliation_services self.recon_services = None - def project_name(self): - return Refine(self.server).get_project_name(self.project_id) - - def project_url(self): - """Return a URL to the project.""" - return '%s/project?project=%s' % (self.server.server, self.project_id) - - def do_raw(self, command, data): - """Issue a command to the server & return a response object.""" - return self.server.urlopen(command, project_id=self.project_id, - data=data) - def do_json(self, command, data=None, params=None, include_engine=True): """Issue a command to the server, parse & return decoded JSON.""" if params is None: @@ -354,6 +335,17 @@ def do_json(self, command, data=None, params=None, include_engine=True): he['description']) return response + def project_name(self): + return Refine(self.server).get_project_name(self.project_id) + + def project_url(self): + """Return a URL to the project.""" + return '%s/project?project=%s' % (self.server.server, self.project_id) + + def do_raw(self, command, data): + """Issue a command to the server & return a response object.""" + return self.server.urlopen(command, project_id=self.project_id, data=data) + def get_models(self): """ Fill out column metadata. @@ -378,7 +370,6 @@ def get_models(self): self.key_column = column_model.get('keyColumnName') self.has_records = response['recordModel'].get('hasRecords', False) self.rows_response_factory = RowsResponseFactory(column_index) - # TODO: implement rest return response def get_preference(self, name): @@ -407,8 +398,7 @@ def export(self, export_format='tsv'): # TODO: add functionality to be able to export large sets of data # TODO: add functionality only one request will set data size "requirement" to choose what size sets chunking # Probably implement response.raw and export/save it in chunks. - url = ('export-rows/' + urllib.parse.quote(self.project_name()) + '.' + - export_format) + url = ('export-rows/' + urllib.parse.quote(self.project_name()) + '.' + export_format) response = self.do_raw(url, data={'format': export_format}) return response.text @@ -444,10 +434,7 @@ def get_rows(self, facets=None, sort_by=None, start=0, limit=10): self.sorting = facet.Sorting([]) elif sort_by is not None: self.sorting = facet.Sorting(sort_by) - response = self.do_json('get-rows', - params={'start': start, 'limit': limit}, - data={'sorting': self.sorting.as_json()}, - ) + response = self.do_json('get-rows', params={'start': start, 'limit': limit}, data={'sorting': self.sorting.as_json()}) return self.rows_response_factory(response) def reorder_rows(self, sort_by=None): From 33514121d7e59b03ac2bcfb3feebe6aab5de1c78 Mon Sep 17 00:00:00 2001 From: Daniel Butler windows Date: Sun, 20 May 2018 00:14:15 -0400 Subject: [PATCH 10/25] renamed google file to open --- {google => open}/__init__.py | 0 {google => open}/refine/__init__.py | 0 {google => open}/refine/facet.py | 0 {google => open}/refine/history.py | 0 {google => open}/refine/refine.py | 4 ++-- refine.py | 2 +- tests/refinetest.py | 2 +- tests/test_facet.py | 2 +- tests/test_history.py | 2 +- tests/test_refine.py | 2 +- tests/test_refine_small.py | 2 +- tests/test_tutorial.py | 2 +- 12 files changed, 9 insertions(+), 9 deletions(-) rename {google => open}/__init__.py (100%) rename {google => open}/refine/__init__.py (100%) rename {google => open}/refine/facet.py (100%) rename {google => open}/refine/history.py (100%) rename {google => open}/refine/refine.py (99%) diff --git a/google/__init__.py b/open/__init__.py similarity index 100% rename from google/__init__.py rename to open/__init__.py diff --git a/google/refine/__init__.py b/open/refine/__init__.py similarity index 100% rename from google/refine/__init__.py rename to open/refine/__init__.py diff --git a/google/refine/facet.py b/open/refine/facet.py similarity index 100% rename from google/refine/facet.py rename to open/refine/facet.py diff --git a/google/refine/history.py b/open/refine/history.py similarity index 100% rename from google/refine/history.py rename to open/refine/history.py diff --git a/google/refine/refine.py b/open/refine/refine.py similarity index 99% rename from google/refine/refine.py rename to open/refine/refine.py index dc460e7..2f5911d 100644 --- a/google/refine/refine.py +++ b/open/refine/refine.py @@ -26,8 +26,8 @@ import urllib.request, urllib.parse, urllib.error, urllib.response import requests -from google.refine import facet -from google.refine import history +from open.refine import facet +from open.refine import history REFINE_HOST = os.environ.get('OPENREFINE_HOST', os.environ.get('GOOGLE_REFINE_HOST', '127.0.0.1')) REFINE_PORT = os.environ.get('OPENREFINE_PORT', os.environ.get('GOOGLE_REFINE_PORT', '3333')) diff --git a/refine.py b/refine.py index 57f9e4c..79fb099 100755 --- a/refine.py +++ b/refine.py @@ -31,7 +31,7 @@ import sys import time -from google.refine import refine +from open.refine import refine PARSER = optparse.OptionParser( diff --git a/tests/refinetest.py b/tests/refinetest.py index c507d69..9deaa86 100644 --- a/tests/refinetest.py +++ b/tests/refinetest.py @@ -15,7 +15,7 @@ import os import unittest -from google.refine import refine +from open.refine import refine PATH_TO_TEST_DATA = os.path.join(os.path.dirname(__file__), 'data') diff --git a/tests/test_facet.py b/tests/test_facet.py index b8e8a9d..7b14b2a 100644 --- a/tests/test_facet.py +++ b/tests/test_facet.py @@ -8,7 +8,7 @@ import json import unittest -from google.refine.facet import * +from open.refine.facet import * class CamelTest(unittest.TestCase): diff --git a/tests/test_history.py b/tests/test_history.py index 115a93d..0d84a24 100644 --- a/tests/test_history.py +++ b/tests/test_history.py @@ -7,7 +7,7 @@ import unittest -from google.refine.history import * +from open.refine.history import * class HistoryTest(unittest.TestCase): diff --git a/tests/test_refine.py b/tests/test_refine.py index f35e79e..5d34775 100644 --- a/tests/test_refine.py +++ b/tests/test_refine.py @@ -13,7 +13,7 @@ import unittest import io -from google.refine import refine +from open.refine import refine from tests import refinetest diff --git a/tests/test_refine_small.py b/tests/test_refine_small.py index c760305..a8129b3 100644 --- a/tests/test_refine_small.py +++ b/tests/test_refine_small.py @@ -7,7 +7,7 @@ import unittest -from google.refine import refine +from open.refine import refine class RefineRowsTest(unittest.TestCase): diff --git a/tests/test_tutorial.py b/tests/test_tutorial.py index 5b8d8d5..c06e4b2 100644 --- a/tests/test_tutorial.py +++ b/tests/test_tutorial.py @@ -16,7 +16,7 @@ import unittest -from google.refine import facet +from open.refine import facet from tests import refinetest From 84e9fec15a4334b43f19c20e5a2c763044785ec8 Mon Sep 17 00:00:00 2001 From: Daniel Butler windows Date: Sun, 20 May 2018 09:53:41 -0400 Subject: [PATCH 11/25] updated command url to be an fString --- open/refine/refine.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/open/refine/refine.py b/open/refine/refine.py index 2f5911d..47f4935 100644 --- a/open/refine/refine.py +++ b/open/refine/refine.py @@ -59,7 +59,7 @@ def urlopen(self, command, data=None, params=None, project_id=None, files=None): Returns requests.Response object.""" # TODO: command to direct post or get request - url = self.url(command) + url = self.server + f'/command/core/{command}' if project_id: if 'delete' in command or data: data['project'] = project_id @@ -77,9 +77,6 @@ def urlopen_json(self, command, *args, **kwargs): self.check_response_ok(response) return response - def url(self, command): - return self.server + '/command/core/' + command - @staticmethod def check_response_ok(response): if 'code' in response and response['code'] not in ('ok', 'pending'): From 79e24b8a2d35e775f0da5b41b8683148514160e7 Mon Sep 17 00:00:00 2001 From: Daniel Butler windows Date: Sun, 20 May 2018 10:40:52 -0400 Subject: [PATCH 12/25] corrected test for test_editing --- tests/test_tutorial.py | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/tests/test_tutorial.py b/tests/test_tutorial.py index c06e4b2..019376c 100644 --- a/tests/test_tutorial.py +++ b/tests/test_tutorial.py @@ -133,17 +133,13 @@ def test_facet(self): class TutorialTestEditing(refinetest.RefineTestCase): project_file = 'louisiana-elected-officials.csv' project_file_name = 'louisiana-elected-officials.csv' - project_options = {'guess_cell_value_types': True} def test_editing(self): # Section "3. Cell Editing": {1} self.project.engine.remove_all() # redundant due to setUp # {2} - self.project.text_transform(column='Zip Code 2', expression='value.toNumber()') - self.assertInResponse('transform on 6067 cells in column Zip Code 2') - self.project.text_transform(column='Zip Code 2', - expression='value.toString()[0, 5]') - self.assertInResponse('transform on 6958 cells in column Zip Code 2') + self.project.text_transform(column='Zip Code 2', expression='value.toString()[0, 5]') + self.assertInResponse('transform on 1441 cells in column Zip Code 2') # {3} - XXX history # {4} office_title_facet = facet.TextFacet('Office Title') From c33602fdaa371bff7a42715b06518a9bb186103b Mon Sep 17 00:00:00 2001 From: Daniel Butler windows Date: Sun, 20 May 2018 10:54:09 -0400 Subject: [PATCH 13/25] get operations command added --- open/refine/refine.py | 5 +++++ tests/test_commands.py | 45 ++++++++++++++++++++++++++++++++++++++++++ tests/test_tutorial.py | 5 +---- 3 files changed, 51 insertions(+), 4 deletions(-) create mode 100644 tests/test_commands.py diff --git a/open/refine/refine.py b/open/refine/refine.py index 47f4935..84e3bb9 100644 --- a/open/refine/refine.py +++ b/open/refine/refine.py @@ -592,6 +592,11 @@ def transpose_rows_into_columns(self, column, row_count): self.get_models() return response + def get_operations(self): + response = self.do_json('get-operations') + self.get_models() + return response + # Reconciliation # http://code.google.com/p/google-refine/wiki/ReconciliationServiceApi def guess_types_of_column(self, column, service): diff --git a/tests/test_commands.py b/tests/test_commands.py new file mode 100644 index 0000000..6e09675 --- /dev/null +++ b/tests/test_commands.py @@ -0,0 +1,45 @@ +#!/usr/bin/env python + +import unittest + +from open.refine import facet +from tests import refinetest + + +class TestCommands(refinetest.RefineTestCase): + project_file = 'louisiana-elected-officials.csv' + project_file_name = 'louisiana-elected-officials.csv' + + def setUp(self): + refinetest.RefineTestCase.setUp(self) + response = self.project.get_rows(limit=10) + self.assertEqual(10, len(response.rows)) + self.assertEqual(10, response.limit) + self.project.mass_edit('Office Title', [{'from': ['Council Member', 'Councilmember'], 'to': 'Council Member'}]) + self.assertInResponse('9') + clusters = self.project.compute_clusters('Candidate Name') + for cluster in clusters[0:3]: # just do a few + for match in cluster: + # {2} + if match['value'].endswith(', '): + response = self.project.get_rows( + facet.TextFacet('Candidate Name', match['value'])) + self.assertEqual(len(response.rows), 1) + for row in response.rows: + self.project.star_row(row) + self.assertInResponse(str(row.index + 1)) + # {5}, {6}, {7} + response = self.project.compute_facets(facet.StarredFacet(True)) + self.assertEqual(len(response.facets[0].choices), 2) # true & false + self.assertEqual(response.facets[0].choices[True].count, 2) + self.project.remove_rows() + self.assertInResponse('2 rows') + + def test_get_operations(self): + response = self.project.get_operations() + self.assertTrue(len(response.get("entries")) == 4) + + + +if __name__ == '__main__': + unittest.main() diff --git a/tests/test_tutorial.py b/tests/test_tutorial.py index 019376c..75dd48f 100644 --- a/tests/test_tutorial.py +++ b/tests/test_tutorial.py @@ -167,10 +167,7 @@ def test_editing(self): self.assertEqual(first_cluster[0]['count'], 6) # Not strictly necessary to repeat 'Council Member' but a test # of mass_edit, and it's also what the front end sends. - self.project.mass_edit('Office Title', [{ - 'from': ['Council Member', 'Councilmember'], - 'to': 'Council Member' - }]) + self.project.mass_edit('Office Title', [{'from': ['Council Member', 'Councilmember'], 'to': 'Council Member'}]) self.assertInResponse('372') response = self.project.compute_facets() self.assertEqual(len(response.facets[office_title_facet].choices), 65) From a22c9dc81958febcefa19f069d732775b7798995 Mon Sep 17 00:00:00 2001 From: Daniel Butler windows Date: Mon, 21 May 2018 22:42:44 -0400 Subject: [PATCH 14/25] added apply operations using a python dictionary. Also closed the open file when creating new projects. --- open/refine/refine.py | 22 +++++++++--- tests/test_commands.py | 80 ++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 98 insertions(+), 4 deletions(-) diff --git a/open/refine/refine.py b/open/refine/refine.py index 84e3bb9..f243437 100644 --- a/open/refine/refine.py +++ b/open/refine/refine.py @@ -109,7 +109,7 @@ def new_project(self, project_file=None, project_url=None, project_name=None, pr # TODO: Ability to add Creator, Subject, Custom Metadata # TODO: What is Custom Metadata? Can I include information that I pass around to even out of the project if (project_file and project_url) or (not project_file and not project_url): - raise ValueError('One (only) of project_file and project_url must be set') + raise ValueError('Either a project_file or project_url must be set. Both cannot be used.') params = { 'project_name': self.set_project_name(project_name, project_file) } @@ -121,7 +121,9 @@ def new_project(self, project_file=None, project_url=None, project_name=None, pr 'project-file': (project_file_name, open(project_file, 'rb')) } response = self.server.urlopen('create-project-from-upload', params=params, data=data, files=files) + response.raise_for_status() project_id = self.get_project_id(response.url) + files['project-file'][1].close() return RefineProject(self.server, project_id) @staticmethod @@ -382,14 +384,26 @@ def wait_until_idle(self, polling_delay=0.5): else: return - def apply_operations(self, file_path, wait=True): - json_data = open(file_path).read() - response_json = self.do_json('apply-operations', params={'operations': json_data}) + def apply_operations(self, operations=None, file_path=None, wait=True): + json_data = self.json_data(operations, file_path) + response_json = self.do_json('apply-operations', data={'operations': json_data}) + if response_json['code'] == 'pending' and wait: self.wait_until_idle() return 'ok' return response_json['code'] # can be 'ok' or 'pending' + @staticmethod + def json_data(operations, file_path): + if operations: + if type(operations) is not list: + operations = [operations] + return json.dumps(operations) + elif file_path: + return open(file_path).read() + else: + raise ValueError("Operation(s) not specified.") + def export(self, export_format='tsv'): """Return a fileobject of a project's data.""" # TODO: add functionality to be able to export large sets of data diff --git a/tests/test_commands.py b/tests/test_commands.py index 6e09675..51cf822 100644 --- a/tests/test_commands.py +++ b/tests/test_commands.py @@ -39,6 +39,86 @@ def test_get_operations(self): response = self.project.get_operations() self.assertTrue(len(response.get("entries")) == 4) + def test_apply_operations(self): + operations_list = [ + {'op': 'core/column-addition', + 'description': 'Create column zip type at index 15 based on column Zip Code 2 using expression grel:value.type()', + 'engineConfig': + { + 'mode': 'row-based', + 'facets': [] + }, + 'newColumnName': 'zip type', + 'columnInsertIndex': 15, + 'baseColumnName': 'Zip Code 2', + 'expression': 'grel:value.type()', + 'onError': 'set-to-blank'}, + { + 'op': 'core/column-addition', + 'description': 'Create column testing at index 15 based on column Zip Code 2 using expression grel:value.toString()[0,5]', + 'engineConfig': + { + 'mode': 'row-based', + 'facets': [] + }, + 'newColumnName': 'testing', + 'columnInsertIndex': 15, + 'baseColumnName': 'Zip Code 2', + 'expression': 'grel:value.toString()[0,5]', + 'onError': 'set-to-blank'}, + { + 'op': 'core/column-addition', + 'description': 'Create column the same? at index 16 based on column testing using expression grel:cells["Zip Code 2"].value == value', + 'engineConfig': + { + 'mode': 'row-based', + 'facets': [] + }, + 'newColumnName': 'the same?', + 'columnInsertIndex': 16, + 'baseColumnName': 'testing', + 'expression': 'grel:cells["Zip Code 2"].value == value', + 'onError': 'set-to-blank'}, + { + 'op': 'core/text-transform', + 'description': 'Text transform on cells in column Office Level using expression grel:value.toNumber()', + 'engineConfig': + { + 'mode': 'row-based', + 'facets': + [ + { + 'omitError': False, + 'expression': 'value', + 'selectBlank': True, + 'selection': [], + 'selectError': False, + 'invert': False, + 'name': 'the same?', + 'omitBlank': False, + 'type': 'list', + 'columnName': 'the same?' + } + ] + }, + 'columnName': 'Office Level', + 'expression': 'grel:value.toNumber()', + 'onError': 'keep-original', + 'repeat': False, + 'repeatCount': 10}, + { + 'op': 'core/fill-down', + 'description': 'Fill down cells in column Salutation', + 'engineConfig': + { + 'mode': 'row-based', + 'facets': []}, 'columnName': 'Salutation' + } + ] + self.project.apply_operations(operations=operations_list) + response = self.project.get_models() + self.assertTrue(response["columnModel"]["columns"][15]["name"] == 'testing') + if __name__ == '__main__': From ad1dae0182c8c663a3f5274c2a9097dfd8993277 Mon Sep 17 00:00:00 2001 From: Daniel Butler windows Date: Sat, 2 Jun 2018 20:06:10 -0400 Subject: [PATCH 15/25] updated for 3.0-beta changed facet 'l' needs to be a string and --- open/refine/facet.py | 2 +- tests/data/louisiana-elected-officials.csv | 13918 +++++++++---------- tests/test_refine.py | 2 +- 3 files changed, 6961 insertions(+), 6961 deletions(-) diff --git a/open/refine/facet.py b/open/refine/facet.py index 5e376a4..9084ba8 100644 --- a/open/refine/facet.py +++ b/open/refine/facet.py @@ -80,7 +80,7 @@ def include(self, value): for s in self.selection: if s['v']['v'] == value: return - self.selection.append({'v': {'v': value, 'l': value}}) + self.selection.append({'v': {'v': value, 'l': str(value)}}) return self def exclude(self, value): diff --git a/tests/data/louisiana-elected-officials.csv b/tests/data/louisiana-elected-officials.csv index 49f6edf..2f3bc91 100644 --- a/tests/data/louisiana-elected-officials.csv +++ b/tests/data/louisiana-elected-officials.csv @@ -1,6959 +1,6959 @@ -Office Title,Office Description,Office Address 1,Office Address 2,City,State,Zip Code,Office Phone,Parish,Candidate Name,Candidate Address 1,Candidate Address 2,City,State,Zip Code,Phone,Ethnicity,Sex,Party Code,Office Level,Expiration Date,Commissioned Date,Salutation -DSCC Member ," 1st Representative District, Office ""A"" ",,,,LA,,,,Helen Godfrey-Smith,P.O. Box 3261,,Shreveport,LA,71133,,,,,052,,04/02/2009,Ms. Godfrey-Smith -DSCC Member ," 1st Representative District, Office ""B"" ",,,,LA,,,,Richard R. Anderson,7495 Colquitt Rd.,,Keithville,LA,71047-5575,972-398-6713,B,M,D,052,03/08/2012,03/08/2008 -DSCC Member ," 2nd Representative District, Office ""A"" ",,,,LA,,,,Lola B. May,P. O. Box 38093,,Shreveport,LA,71133-8093,318-222-6519,B,F,D,052,03/08/2012,03/08/2008 -DSCC Member ," 2nd Representative District, Office ""B"" ",,,,LA,,,,"""Rudy"" Morton",2602 Parham Dr.,,Shreveport,LA,71109-3016,318-635-4576,B,M,D,052,03/08/2012,03/08/2008 -DSCC Member ," 3rd Representative District, Office ""A"" ",,,,LA,,,,Barbara Norton,3821 Morrow St.,,Shreveport,LA,71109-7647,318-635-2923,B,F,D,052,03/08/2012,03/08/2008 -DSCC Member ," 3rd Representative District, Office ""B"" ",,,,LA,,,,Herschel C. Brown,249 W. 77th St.,,Shreveport,LA,71106-4221,318-687-7097,,,D,052,03/08/2012,03/08/2008 -DSCC Member ," 4th Representative District, Office ""A"" ",,,,LA,,,,June Phillips,3761 Bobbitt Pl.,,Shreveport,LA,71107-3801,318-221-5957,B,F,D,052,03/08/2012,03/08/2008 -DSCC Member ," 4th Representative District, Office ""B"" ",,,,LA,,,,Larry Ferdinand,3436 Galaxy Ln.,,Shreveport,LA,71119-5002,318-636-1555,,,D,052,03/08/2012,03/08/2008 -DSCC Member ," 5th Representative District, Office ""A"" ",,,,LA,,,,Patti Cox,"8501 Millicent Way, Apt. 2073",,Shreveport,LA,71115-2253,318-797-6950,W,F,D,052,03/08/2012,03/08/2008 -DSCC Member ," 5th Representative District, Office ""B"" ",,,,LA,,,,Steve G. Kirkikis,310 Orleans Dr.,,Shreveport,LA,71106-6224,318-861-1582,,,D,052,03/08/2012,03/08/2008,Mr. Kirkikis -DSCC Member ," 6th Representative District, Office ""A"" ",,,,LA,,,,Adrienne Critcher,817 Ontario St.,,Shreveport,LA,71106-1118,318-869-3930,W,F,D,052,03/08/2012,03/08/2008 -DSCC Member ," 6th Representative District, Office ""B"" ",,,,LA,,,,"""Greg"" P. Hebert",843 Gladstone Blvd.,,Shreveport,LA,71104,318-865-4007,W,M,D,052,03/08/2012,03/08/2008 -DSCC Member ," 7th Representative District, Office ""A"" ",,,,LA,,,,Candie Cox,300 High School St.,,Mansfield,LA,71052,318-872-5731,B,F,D,052,03/08/2012,03/08/2008 -DSCC Member ," 7th Representative District, Office ""B"" ",,,,LA,,,,"Robert ""Bob"" Brown",10127 Freedoms Way,,Keithville,LA,71047-8950,318-458-6566,W,M,D,052,03/08/2012,03/08/2008 -DSCC Member ," 8th Representative District, Office ""A"" ",,,,LA,,,,"Rosemarie ""Rosie"" Salinas",139 Lakewood Point Dr.,,Bossier City,LA,71111-2073,318-747-9744,W,F,D,052,03/08/2012,03/08/2008 -DSCC Member ," 8th Representative District, Office ""B"" ",,,,LA,,,,Nyle Politz,29 Wilshire Dr.,,Bossier City,LA,71111,,,,,052,,07/24/2008 -DSCC Member ," 9th Representative District, Office ""A"" ",,,,LA,,,,Nancy Cook,1321 Whitehall Dr.,,Bossier City,LA,71112-4549,318-742-8714,W,F,D,052,03/08/2012,03/08/2008 -DSCC Member ," 9th Representative District, Office ""B"" ",,,,LA,,,,Morgan Johnson,109 Boyce Circle,,Benton,LA,71006,318-965-2090,W,M,D,052,03/08/2012,03/08/2008 -DSCC Member ," 10th Representative District, Office ""A"" ",,,,LA,,,,Fayrine Kennon-Gilbert,P.O. Box 605,,Minden,LA,71058,318-377-2902,B,F,D,052,03/08/2012,03/08/2008 -DSCC Member ," 10th Representative District, Office ""B"" ",,,,LA,,,,Rodney D. Seamster,617 Durwood Dr.,,Minden,LA,71055,,,,,052,,07/24/2008,Mr. Seamster -DSCC Member ," 11th Representative District, Office ""A"" ",,,,LA,,,,,,,,,,,,,,052 -DSCC Member ," 11th Representative District, Office ""B"" ",,,,LA,,,,William R. Sumlin,P. O. Box 122,,Simsboro,LA,71275,318-263-2195,W,M,D,052,03/08/2012,03/08/2008 -DSCC Member ," 12th Representative District, Office ""A"" ",,,,LA,,,,Susan Singleton,2300 Royal Oaks Dr.,,Ruston,LA,71270,,,,,052,,07/24/2008 -DSCC Member ," 12th Representative District, Office ""B"" ",,,,LA,,,,Allen Herbert,104 Belle Haven Rd.,,Ruston,LA,71270,,,,,052,,07/24/2008 -DSCC Member ," 13th Representative District, Office ""A"" ",,,,LA,,,,Gay Maxwell,2427 Hwy. 505,,Jonesboro,LA,71251,318-259-6607,W,F,D,052,03/08/2012,03/08/2008 -DSCC Member ," 13th Representative District, Office ""B"" ",,,,LA,,,,Bobby L. Culpepper,4500 Walker Rd.,,Jonesboro,LA,71251,318-259-4184,W,M,D,052,03/08/2012,03/08/2008 -DSCC Member ," 14th Representative District, Office ""A"" ",,,,LA,,,,Barbara L. Mansfield,P.O.Box 72,,Bastrop,LA,71221,318-281-2356,B,F,D,052,03/08/2012,03/08/2008 -DSCC Member ," 14th Representative District, Office ""B"" ",,,,LA,,,,Travis Holley,P.O. Drawer 590,,Bastrop,LA,71221,,,,,052,,07/24/2008 -DSCC Member ," 15th Representative District, Office ""A"" ",,,,LA,,,,Billye Burns,219 Jackson St.,,West Monroe,LA,71291,318-323-5210,B,F,D,052,03/08/2012,03/08/2008 -DSCC Member ," 15th Representative District, Office ""B"" ",,,,LA,,,,Dalfred Burns,219 Jackson St.,,West Monroe,LA,71291,,,,,052,,07/24/2008 -DSCC Member ," 16th Representative District, Office ""A"" ",,,,LA,,,,Brenda Hensley Smith,2605 Crestmont St.,,Monroe,LA,71201,318-387-2346,W,F,D,052,03/08/2012,03/08/2008 -DSCC Member ," 16th Representative District, Office ""B"" ",,,,LA,,,,Fred Huenefeld,2100 Pargoud Blvd.,,Monroe,LA,71201,318-322-1035,W,M,D,052,03/08/2012,03/08/2008 -DSCC Member ," 17th Representative District, Office ""A"" ",,,,LA,,,,Millie Atkins,4312 Barlow St.,,Monroe,LA,71203,318-387-4546,B,F,D,052,03/08/2012,03/08/2008 -DSCC Member ," 17th Representative District, Office ""B"" ",,,,LA,,,,"Rodney McFarland, Sr.",1017 Ouachita Ave.,,Monroe,LA,71201,318-323-0163,B,M,D,052,03/08/2012,03/08/2008 -DSCC Member ," 18th Representative District, Office ""A"" ",,,,LA,,,,Linda D. Phillips,P.O. Box 917,,Port Allen,LA,70767,225-749-3504,W,F,D,052,03/08/2012,03/08/2008 -DSCC Member ," 18th Representative District, Office ""B"" ",,,,LA,,,,"Rawlston D. Phillips, Jr.",P. O. Box 917,,Port Allen,LA,70767,225-749-3504,W,M,D,052,03/08/2012,03/08/2008 -DSCC Member ," 19th Representative District, Office ""A"" ",,,,LA,,,,"""Sha"" Carter",511 LaSalle St.,,Tallulah,LA,71282,318-574-8393,W,F,D,052,03/08/2012,03/08/2008 -DSCC Member ," 19th Representative District, Office ""B"" ",,,,LA,,,,"George B. Tennant, Sr.",P.O. Box 959,,Rayville,LA,71269,318-728-5808,B,M,D,052,03/08/2012,03/08/2008 -DSCC Member ," 20th Representative District, Office ""A"" ",,,,LA,,,,Jane Roberts,P. O. Box 1265,,Columbia,LA,71418,318-649-2760,W,F,D,052,03/08/2012,03/08/2008 -DSCC Member ," 20th Representative District, Office ""B"" ",,,,LA,,,,"""Greg"" Richardson",P. O. Box 550,,Columbia,LA,71418,318-649-0105,W,M,D,052,03/08/2012,03/08/2008 -DSCC Member ," 21st Representative District, Office ""A"" ",,,,LA,,,,Anna B. Ferguson,1112 2nd St.,,Ferriday,LA,71334,318-757-1770,W,F,D,052,03/08/2012,03/08/2008 -DSCC Member ," 21st Representative District, Office ""B"" ",,,,LA,,,,C. Travis Johnson,211 1/2 Doty Garden,,Ferriday,LA,71334,,,,,052,,07/24/2008 -DSCC Member ," 22nd Representative District, Office ""A"" ",,,,LA,,,,,,,,,,,,,,052 -DSCC Member ," 22nd Representative District, Office ""B"" ",,,,LA,,,,Bobby W. Deen,P. O. Box 688,,Montgomery,LA,71454,318-646-3351,W,M,D,052,03/08/2012,03/08/2008 -DSCC Member ," 23rd Representative District, Office ""A"" ",,,,LA,,,,Mary Bonier,242 Carroll Camp Rd.,,Saline,LA,71070,318-875-2426,B,F,D,052,03/08/2012,03/08/2008 -DSCC Member ," 23rd Representative District, Office ""B"" ",,,,LA,,,,Edwin Dunahoe,120 Amulet St.,,Natchitoches,LA,71457,318-357-0543,W,M,D,052,03/08/2012,03/08/2008 -DSCC Member ," 24th Representative District, Office ""A"" ",,,,LA,,,,Gloria H. Ruffin,P. O. Box 534,,Many,LA,71449,318-256-3135,B,F,D,052,03/08/2012,03/08/2008 -DSCC Member ," 24th Representative District, Office ""B"" ",,,,LA,,,,"""Randy"" Sandel",1854 Ebenezer Rd.,,Florien,LA,71429,318-586-7563,W,M,D,052,03/08/2012,03/08/2008 -DSCC Member ," 25th Representative District, Office ""A"" ",,,,LA,,,,Leona Venson,P.O. Box 105,,Boyce,LA,71409,318-793-2845,B,F,D,052,03/08/2012,03/08/2008 -DSCC Member ," 25th Representative District, Office ""B"" ",,,,LA,,,,"Chris J. Roy, Jr.",504 Walden Dr.,,Alexandria,LA,71303,318-442-7365,W,M,D,052,03/08/2012,03/08/2008 -DSCC Member ," 26th Representative District, Office ""A"" ",,,,LA,,,,Mary L. Wardsworth,3223 Redwood Dr.,,Alexandria,LA,71301,318-448-4036,B,F,D,052,03/08/2012,03/08/2008 -DSCC Member ," 26th Representative District, Office ""B"" ",,,,LA,,,,Herbert B. Dixon,2701 Third St.,,Alexandria,LA,71302,318-443-8274,B,M,D,052,03/08/2012,03/08/2008 -DSCC Member ," 27th Representative District, Office ""A"" ",,,,LA,,,,Lauren Saucier Hill,5601 Pinekraft Dr.,,Pineville,LA,71360,318-561-2631,W,F,D,052,03/08/2012,03/08/2008 -DSCC Member ," 27th Representative District, Office ""B"" ",,,,LA,,,,Rick Farrar,1603 Melrose,,Pineville,LA,71360,,,,,052,,07/24/2008 -DSCC Member ," 28th Representative District, Office ""A"" ",,,,LA,,,,Joyce Laborde,7124 Hwy. 29,,Cotton Port,LA,71327,,,,,052,,07/24/2008 -DSCC Member ," 28th Representative District, Office ""B"" ",,,,LA,,,,Walter J. Laborde,7124 Hwy. 29,,Cottonport,LA,71327,318-876-2739,W,M,D,052,03/08/2012,03/08/2008 -DSCC Member ," 29th Representative District, Office ""A"" ",,,,LA,,,,Sharon Weston Broome,P. O. Box 52783,,Baton Rouge,LA,70892,225-275-7995,B,F,D,052,03/08/2012,03/08/2008 -DSCC Member ," 29th Representative District, Office ""B"" ",,,,LA,,,,Trey Ourso,1445 Lakeside,,Baton Rouge,LA,70802,,,,,052,,07/24/2008 -DSCC Member ," 30th Representative District, Office ""A"" ",,,,LA,,,,Laura Clark,1037 Hood Ln.,,Leesville,LA,71446,337-239-3533,B,F,D,052,03/08/2012,03/08/2008 -DSCC Member ," 30th Representative District, Office ""B"" ",,,,LA,,,,Alton Bailey,147 Powell Dr.,,Leesville,LA,71446,337-238-2936,B,M,D,052,03/08/2012,03/08/2008 -DSCC Member ," 31st Representative District, Office ""A"" ",,,,LA,,,,Gail Fazzio,207 Acomb Dr.,,Lafayette,LA,70509,,,,,052,,07/24/2008 -DSCC Member ," 31st Representative District, Office ""B"" ",,,,LA,,,,Stephen Handwerk,205 Pinto St.,,Lafayette,LA,70506,337-991-0294,W,M,D,052,03/08/2012,03/08/2008 -DSCC Member ," 32nd Representative District, Office ""A"" ",,,,LA,,,,"""Pat"" Jones",121 Thom St.,,Oakdale,LA,71463,318-335-1353,W,F,D,052,03/08/2012,03/08/2008 -DSCC Member ," 32nd Representative District, Office ""B"" ",,,,LA,,,,Craig Jones,714 Maple St.,,Oakdale,LA,71463,318-335-4140,W,M,D,052,03/08/2012,03/08/2008 -DSCC Member ," 33rd Representative District, Office ""A"" ",,,,LA,,,,Myra Wilburn Bennett,127 Roberta Dr.,,Sulphur,LA,70663,337-528-9452,W,F,D,052,03/08/2012,03/08/2008 -DSCC Member ," 33rd Representative District, Office ""B"" ",,,,LA,,,,Allen Joyner,524 Bowie St.,,Sulphur,LA,70663,337-764-3948,W,M,D,052,03/08/2012,03/08/2008 -DSCC Member ," 34th Representative District, Office ""A"" ",,,,LA,,,,Edwina Medearis-Harrison,P. O. Box 470,,Lake Charles,LA,70602,337-540-5403,B,F,D,052,03/08/2012,03/08/2008 -DSCC Member ," 34th Representative District, Office ""B"" ",,,,LA,,,,Michael McHale,1528 Kirkman,,Lake Charles,LA,70601,337-990-0093,W,M,D,052,03/08/2012,03/08/2008 -DSCC Member ," 35th Representative District, Office ""A"" ",,,,LA,,,,Marilyn Cox,583 Santa Anna Dr.,,Lake Charles,LA,70611,337-855-6766,W,F,D,052,03/08/2012,03/08/2008 -DSCC Member ," 35th Representative District, Office ""B"" ",,,,LA,,,,"""Terry"" Fowler",3731 Paul White Rd.,,Lake Charles,LA,70611,337-855-3360,W,M,D,052,03/08/2012,03/08/2008 -DSCC Member ," 36th Representative District, Office ""A"" ",,,,LA,,,,Mary Leach Werner,2420 Oak Alley Dr.,,Lake Charles,LA,70605,337-477-7320,W,F,D,052,03/08/2012,03/08/2008 -DSCC Member ," 36th Representative District, Office ""B"" ",,,,LA,,,,"""Mark"" Zimmerman",682 Lakewood Dr.,,Lake Charles,LA,70605,337-474-1644,W,M,D,052,03/08/2012,03/08/2008 -DSCC Member ," 37th Representative District, Office ""A"" ",,,,LA,,,,,,,,,,,,,,052 -DSCC Member ," 37th Representative District, Office ""B"" ",,,,LA,,,,Michael Cassidy,603 Lucy St.,,Jennings,LA,70546,,,,,052,,04/02/2009,Mr. Cassidy -DSCC Member ," 38th Representative District, Office ""A"" ",,,,LA,,,,Jennifer Vidrine,P. O. Box 795,,Ville Platte,LA,70586,337-831-0831,B,F,D,052,03/08/2012,03/08/2008 -DSCC Member ," 38th Representative District, Office ""B"" ",,,,LA,,,,Dirk Deville,P. O. Box 1058,,Ville Platte,LA,70586,337-363-0390,W,M,D,052,03/08/2012,03/08/2008 -DSCC Member ," 39th Representative District, Office ""A"" ",,,,LA,,,,Shellie Badon,P. O. Box 651,,Carencro,LA,70520,337-412-2733,W,F,D,052,03/08/2012,03/08/2008 -DSCC Member ," 39th Representative District, Office ""B"" ",,,,LA,,,,,,,,,,,,,,052 -DSCC Member ," 40th Representative District, Office ""A"" ",,,,LA,,,,Anita Gradnigo,174 Auzenne St.,,Opelousas,LA,70570,,,,,052,,07/24/2008 -DSCC Member ," 40th Representative District, Office ""B"" ",,,,LA,,,,Charles Renaud,126 Emile St.,,Opelousas,LA,70570,,,,,052,,04/02/2009 -DSCC Member ," 41st Representative District, Office ""A"" ",,,,LA,,,,,,,,,,,,,,052 -DSCC Member ," 41st Representative District, Office ""B"" ",,,,LA,,,,Jack Burson,1350 Duck St.,,Eunice,LA,70535,,,,,052,,07/24/2008 -DSCC Member ," 42nd Representative District, Office ""A"" ",,,,LA,,,,,,,,,,,,,,052 -DSCC Member ," 42nd Representative District, Office ""B"" ",,,,LA,,,,"James ""Rev."" Proctor",305 W. 9th St.,,Crowley,LA,70526,337-783-8094,B,M,D,052,03/08/2012,03/08/2008 -DSCC Member ," 43rd Representative District, Office ""A"" ",,,,LA,,,,"Alexia ""Lexi"" Thompson",4416 Johnston St. Ste 1-F,,Lafayette,LA,70503,337-988-4375,B,F,D,052,03/08/2012,03/08/2008 -DSCC Member ," 43rd Representative District, Office ""B"" ",,,,LA,,,,"Frank ""Art"" Flynn",103 River Oak Circle,,Lafayette,LA,70508,337-989-8141,W,M,D,052,03/08/2012,03/08/2008 -DSCC Member ," 44th Representative District, Office ""A"" ",,,,LA,,,,Beatrice Wilson,315 Aris Dr.,,Lafayette,LA,70501,,,,,052,,07/24/2008 -DSCC Member ," 44th Representative District, Office ""B"" ",,,,LA,,,,"Joseph B. ""JB"" Cormier",804 E Alexander St.,,Lafayette,LA,70501,,B,M,D,052,03/08/2012,03/08/2008 -DSCC Member ," 45th Representative District, Office ""A"" ",,,,LA,,,,Barbara J. Conner,P.O. Box 52216,,Lafayette,LA,70505-2216,337-344-4838,W,F,D,052,03/08/2012,03/08/2008 -DSCC Member ," 45th Representative District, Office ""B"" ",,,,LA,,,,John D. Bernhardt,P. O. Box 52309,,Lafayette,LA,70505,337-232-6510,W,M,D,052,03/08/2012,03/08/2008 -DSCC Member ," 46th Representative District, Office ""A"" ",,,,LA,,,,Espinola Alexander-Quinn,235 E. Hyacinth St.,,St. Martinville,LA,70582,337-394-1394,B,F,D,052,03/08/2012,03/08/2008 -DSCC Member ," 46th Representative District, Office ""B"" ",,,,LA,,,,Mardy J. Guidry,1021 Roma St.,,Breaux Bridge,LA,70517,337-212-4662,W,M,D,052,03/08/2012,03/08/2008 -DSCC Member ," 47th Representative District, Office ""A"" ",,,,LA,,,,Cynthia Sudduth Campisi,306 S. Hollingsworth Dr.,,Abbeville,LA,70510,337-893-0762,W,F,D,052,03/08/2012,03/08/2008 -DSCC Member ," 47th Representative District, Office ""B"" ",,,,LA,,,,Eugene Sellers,110 S. Hollingsworth Dr.,,Abbeville,LA,70510,337-893-5924,W,M,D,052,03/08/2012,03/08/2008 -DSCC Member ," 48th Representative District, Office ""A"" ",,,,LA,,,,,,,,,,,,,,052 -DSCC Member ," 48th Representative District, Office ""B"" ",,,,LA,,,,Shane Romero,438 E. Main St.,,New Iberia,LA,70560,,,,,052,,07/24/2008 -DSCC Member ," 49th Representative District, Office ""A"" ",,,,LA,,,,,,,,,,,,,,052 -DSCC Member ," 49th Representative District, Office ""B"" ",,,,LA,,,,,,,,,,,,,,052 -DSCC Member ," 50th Representative District, Office ""A"" ",,,,LA,,,,,,,,,,,,,,052 -DSCC Member ," 50th Representative District, Office ""B"" ",,,,LA,,,,Sam Jones,1501 Sterling Rd.,,Franklin,LA,70538,337-828-1530,W,M,D,052,03/08/2012,03/08/2008 -DSCC Member ," 51st Representative District, Office ""A"" ",,,,LA,,,,Anna B. Cunningham,3013 Helen Dr.,,Morgan City,LA,70380,985-384-1443,W,F,D,052,03/08/2012,03/08/2008 -DSCC Member ," 51st Representative District, Office ""B"" ",,,,LA,,,,Roger Dale DeHart,1353 Dr. Beatrous Rd.,,Theriot,LA,70397,985-879-1329,W,M,D,052,03/08/2012,03/08/2008 -DSCC Member ," 52nd Representative District, Office ""A"" ",,,,LA,,,,Arlanda J. Williams,343 Polk St.,,Houma,LA,70360-4147,985-853-2079,B,F,D,052,03/08/2012,03/08/2008 -DSCC Member ," 52nd Representative District, Office ""B"" ",,,,LA,,,,Patrick H. Yancey,204 Choctaw Dr.,,Houma,LA,70360-6056,985-853-0904,W,M,D,052,03/08/2012,03/08/2008 -DSCC Member ," 53rd Representative District, Office ""A"" ",,,,LA,,,,"Mary ""Audrey"" George",815 Funderburk Ave.,,Houma,LA,70364-1826,985-879-3285,W,F,D,052,03/08/2012,03/08/2008 -DSCC Member ," 53rd Representative District, Office ""B"" ",,,,LA,,,,"""S. P."" LaRussa",208 Glenhill Ln.,,Houma,LA,70363-3813,985-876-6161,W,M,D,052,03/08/2012,03/08/2008 -DSCC Member ," 54th Representative District, Office ""A"" ",,,,LA,,,,Carol LeBlanc,292 St. Peter St.,,Raceland,LA,70394,985-537-6818,W,F,D,052,03/08/2012,03/08/2008 -DSCC Member ," 54th Representative District, Office ""B"" ",,,,LA,,,,"""Jimmy"" Cantrelle",118 Cantrelle Dr.,,Raceland,LA,70394,985-532-6688,W,M,D,052,03/08/2012,03/08/2008 -DSCC Member ," 55th Representative District, Office ""A"" ",,,,LA,,,,Kimberly Theriot,2861 Hwy. 1,,Raceland,LA,70394,,,,,052,,07/24/2008 -DSCC Member ," 55th Representative District, Office ""B"" ",,,,LA,,,,Matthew Block,800 Edgewood Dr.,,Thibodaux,LA,70301,985-446-0418,W,M,D,052,03/08/2012,03/08/2008 -DSCC Member ," 56th Representative District, Office ""A"" ",,,,LA,,,,Judy B. Songy,8 Windsor St.,,LaPlace,LA,70068,985-652-9840,W,F,D,052,03/08/2012,03/08/2008 -DSCC Member ," 56th Representative District, Office ""B"" ",,,,LA,,,,"Henry A. Smith, Jr.",541 Payne St.,,Norco,LA,70079,504-737-1600,W,M,D,052,03/08/2012,03/08/2008 -DSCC Member ," 57th Representative District, Office ""A"" ",,,,LA,,,,"""Geri"" Broussard Baloney",P. O. Box 117,,Garyville,LA,70051,985-535-2889,,F,D,052,03/08/2012,03/08/2008 -DSCC Member ," 57th Representative District, Office ""B"" ",,,,LA,,,,Randal Gaines,7 Turnberry Dr.,,LaPlace,LA,70068,504-487-9904,B,M,D,052,03/08/2012,03/08/2008 -DSCC Member ," 58th Representative District, Office ""A"" ",,,,LA,,,,,,,,,,,,,,052 -DSCC Member ," 58th Representative District, Office ""B"" ",,,,LA,,,,Travis Turner,P.O. Box 446,,Geismar,LA,70734,,,,,052,,07/24/2008 -DSCC Member ," 59th Representative District, Office ""A"" ",,,,LA,,,,Rita G. Bourque,P. O. Box 71,,Gonzales,LA,70707,225-647-2618,W,F,D,052,03/08/2012,03/08/2008 -DSCC Member ," 59th Representative District, Office ""B"" ",,,,LA,,,,David N. Young,1433 E. Eva St.,,Gonzales,LA,70737,225-647-1353,W,M,D,052,03/08/2012,03/08/2008 -DSCC Member ," 60th Representative District, Office ""A"" ",,,,LA,,,,Karen St. Germain,3413 Hwy. 70,,Pierre Part,LA,70339,985-252-9017,W,F,D,052,03/08/2012,03/08/2008 -DSCC Member ," 60th Representative District, Office ""B"" ",,,,LA,,,,"""Tom"" Delahaye",58425 St.Clement Ave.,,Plaquemine,LA,70764,225-687-8924,W,M,D,052,03/08/2012,03/08/2008 -DSCC Member ," 61st Representative District, Office ""A"" ",,,,LA,,,,Aiesha Williams,1006 Waverly Dr.,,Baton Rouge,LA,70806,225-248-8255,B,F,D,052,03/08/2012,03/08/2008 -DSCC Member ," 61st Representative District, Office ""B"" ",,,,LA,,,,Alfred Williams,1006 Waverly Dr.,,Baton Rouge,LA,70806,225-346-0406,B,M,D,052,03/08/2012,03/08/2008 -DSCC Member ," 62nd Representative District, Office ""A"" ",,,,LA,,,,Cassandra Butler,P.O. Box 407,,Independence,LA,70443,985-878-4881,B,F,D,052,03/08/2012,03/08/2008 -DSCC Member ," 62nd Representative District, Office ""B"" ",,,,LA,,,,"Vernon ""Vern"" Blalock",2008 W. George St.,,Zachary,LA,70791,225-658-9138,W,M,D,052,03/08/2012,03/08/2008 -DSCC Member ," 63rd Representative District, Office ""A"" ",,,,LA,,,,Elaine G. Davis,4312 Azie Ave.,,Baker,LA,70714,225-774-1558,B,F,D,052,03/08/2012,03/08/2008 -DSCC Member ," 63rd Representative District, Office ""B"" ",,,,LA,,,,"Melvin ""Kip"" Holden",234 Rivercrest Ave.,,Baton Rouge,LA,70807,225-389-5102,B,M,D,052,03/08/2012,03/08/2008 -DSCC Member ," 64th Representative District, Office ""A"" ",,,,LA,,,,Audrey Nabors-Jackson,24004 Reames Rd.,,Zachary,LA,70791,225-654-5491,B,F,D,052,03/08/2012,03/08/2008 -DSCC Member ," 64th Representative District, Office ""B"" ",,,,LA,,,,"Robert ""Sonny"" Williams, Jr.",23431 Plank Rd.,,Zachary,LA,70791,225-907-4377,B,M,D,052,03/08/2012,03/08/2008 -DSCC Member ," 65th Representative District, Office ""A"" ",,,,LA,,,,Karen Miller,12042 Devall Rd.,,Baton Rouge,LA,70818,,,,,052,,07/24/2008 -DSCC Member ," 65th Representative District, Office ""B"" ",,,,LA,,,,Wade Byrd,16544 Quiet Oaks Ave.,,Greenwell Springs,LA,70739,225-261-0599,W,M,D,052,03/08/2012,03/08/2008 -DSCC Member ," 66th Representative District, Office ""A"" ",,,,LA,,,,Sharon Reine,11425 Glenhaven,,Baton Rouge,LA,70815,,,,,052,,07/24/2008 -DSCC Member ," 66th Representative District, Office ""B"" ",,,,LA,,,,Jesse H. Bankston,9526 Southmoor Dr.,,Baton Rouge,LA,70815,225-925-2543,W,M,D,052,03/08/2012,03/08/2008 -DSCC Member ," 67th Representative District, Office ""A"" ",,,,LA,,,,Avis Baker-White,800 South 16th St.,,Baton Rouge,LA,70802,225-334-9255,B,F,D,052,03/08/2012,03/08/2008 -DSCC Member ," 67th Representative District, Office ""B"" ",,,,LA,,,,Ben Jeffers,922 Mayflower St.,,Baton Rouge,LA,70802,225-346-5400,B,M,D,052,03/08/2012,03/08/2008 -DSCC Member ," 68th Representative District, Office ""A"" ",,,,LA,,,,Lynn N. Bankston,10916 N. Oakhills Pkwy.,,Baton Rouge,LA,70810,225-766-2505,W,F,D,052,03/08/2012,03/08/2008 -DSCC Member ," 68th Representative District, Office ""B"" ",,,,LA,,,,Brandon DeCuir,1165 Sharynwood Dr.,,Baton Rouge,LA,70808,225-223-6587,B,M,D,052,03/08/2012,03/08/2008 -DSCC Member ," 69th Representative District, Office ""A"" ",,,,LA,,,,"Elizabeth ""Betty"" Powers",2436 E. Contour Dr.,,Baton Rouge,LA,70809,225-928-9135,W,F,D,052,03/08/2012,03/08/2008 -DSCC Member ," 69th Representative District, Office ""B"" ",,,,LA,,,,John Ales,9035 Rue Felicity,,Baton Rouge,LA,70809,225-291-7677,W,M,D,052,03/08/2012,03/08/2008 -DSCC Member ," 70th Representative District, Office ""A"" ",,,,LA,,,,Charlotte C. McDaniel McGehee,305 Maxine Dr.,,Baton Rouge,LA,70808,225-769-2569,W,F,D,052,03/08/2012,03/08/2008 -DSCC Member ," 70th Representative District, Office ""B"" ",,,,LA,,,,James M. Bernhard,13706 Earls Ct.,,Baton Rouge,LA,70802,225-752-4360,W,M,D,052,03/08/2012,03/08/2008 -DSCC Member ," 71st Representative District, Office ""A"" ",,,,LA,,,,Shelia Cadby,20364 Hwy. 42,,Livingston,LA,70754,,,,,052,,07/24/2008 -DSCC Member ," 71st Representative District, Office ""B"" ",,,,LA,,,,Al Comeaux,725 Poplar St.,,Denham Springs,LA,70726,,,,,052,,07/24/2008 -DSCC Member ," 72nd Representative District, Office ""A"" ",,,,LA,,,,Linda Guy Phillips,192 Linda Carol Ln.,,Greensburg,LA,70441,985-517-6416,W,F,D,052,03/08/2012,03/08/2008 -DSCC Member ," 72nd Representative District, Office ""B"" ",,,,LA,,,,Michael R. Martin,15575 Hwy. 43,,Greensburg,LA,70441,225-222-4499,B,M,D,052,03/08/2012,03/08/2008 -DSCC Member ," 73rd Representative District, Office ""A"" ",,,,LA,,,,Carolyn Brown-Spiller,1319 Elm South,,Hammond,LA,70403,,,,,052,,07/24/2008 -DSCC Member ," 73rd Representative District, Office ""B"" ",,,,LA,,,,"Robert ""Tiger"" Hammond",15262 Maplewood Dr.,,Ponchatoula,LA,70454,,,,,052,,04/02/2009 -DSCC Member ," 74th Representative District, Office ""A"" ",,,,LA,,,,Donna L. Singletary,36144 Jessie Singletary Rd.,,Pearl River,LA,70452,985-863-5058,W,F,D,052,03/08/2012,03/08/2008 -DSCC Member ," 74th Representative District, Office ""B"" ",,,,LA,,,,Alan B. Tusa,P. O. Box 609,,Abita Springs,LA,70420,985-893-9980,W,M,D,052,03/08/2012,03/08/2008 -DSCC Member ," 75th Representative District, Office ""A"" ",,,,LA,,,,Dianne C. Applewhite,350 Mart Stewart Rd.,,Bogalusa,LA,70427,985-732-3750,W,F,D,052,03/08/2012,03/08/2008 -DSCC Member ," 75th Representative District, Office ""B"" ",,,,LA,,,,"""Brad"" Orman",1049 Main St.,,Franklinton,LA,70438,985-839-2788,W,M,D,052,03/08/2012,03/08/2008 -DSCC Member ," 76th Representative District, Office ""A"" ",,,,LA,,,,Elsie Palmer Burkhalter,P. O. Box 1108,,Slidell,LA,70459,985-643-9822,B,F,D,052,03/08/2012,03/08/2008 -DSCC Member ," 76th Representative District, Office ""B"" ",,,,LA,,,,"Kenneth ""Ken"" Burkhalter",P. O. Box 1489,,Slidell,LA,70459,985-649-6674,B,M,D,052,03/08/2012,03/08/2008 -DSCC Member ," 77th Representative District, Office ""A"" ",,,,LA,,,,Angelique LaCour,P. O. Box 1745,,Covington,LA,70434,985-635-9436,W,F,D,052,03/08/2012,03/08/2008 -DSCC Member ," 77th Representative District, Office ""B"" ",,,,LA,,,,Robert A. Bruno,329 DeZaire Dr.,,Madisonville,LA,70447,985-792-4530,W,M,D,052,03/08/2012,03/08/2008 -DSCC Member ," 78th Representative District, Office ""A"" ",,,,LA,,,,Gilda Reed,1108 N. Starrett Rd.,,Metairie,LA,70003,,,,,052,,04/02/2009 -DSCC Member ," 78th Representative District, Office ""B"" ",,,,LA,,,,David Quidd,6220 Riverside Dr. Unit 588,,Metairie,LA,70003,504-722-8537,W,M,D,052,03/08/2012,03/08/2008 -DSCC Member ," 79th Representative District, Office ""A"" ",,,,LA,,,,Arleeta O. Terrell,7801 Nevada St,,Metairie,LA,70003,504-467-2347,B,F,D,052,03/08/2012,03/08/2008 -DSCC Member ," 79th Representative District, Office ""B"" ",,,,LA,,,,"M. V. ""Vinny"" Mendoza",3510 Ole Miss Dr.,,Kenner,LA,70065,504-913-3971,O,M,D,052,03/08/2012,03/08/2008 -DSCC Member ," 80th Representative District, Office ""A"" ",,,,LA,,,,Jamie Beeson Balser,2109 Manson Ave. Unit 1,,Metairie,LA,70001,504-885-6529,W,F,D,052,03/08/2012,03/08/2008 -DSCC Member ," 80th Representative District, Office ""B"" ",,,,LA,,,,David Gereighty,2952 Ridgeway Dr.,,Metairie,LA,70002,504-831-9576,W,M,D,052,03/08/2012,03/08/2008 -DSCC Member ," 81st Representative District, Office ""A"" ",,,,LA,,,,Jenny Nee,1341 Wisteria Dr.,,Metairie,LA,70005,504-259-0031,W,F,D,052,03/08/2012,03/08/2008 -DSCC Member ," 81st Representative District, Office ""B"" ",,,,LA,,,,Michael M. Davis,P.O. Box 6764,,Metairie,LA,70009,504-835-2114,W,M,D,052,03/08/2012,03/08/2008 -DSCC Member ," 82nd Representative District, Office ""A"" ",,,,LA,,,,Meladie Munch,5029 Utica St.,,Metarie,LA,70006,,,,,052,,07/24/2008 -DSCC Member ," 82nd Representative District, Office ""B"" ",,,,LA,,,,Robert Reed,127 Highway Dr.,,Jefferson,LA,70121,504-232-5074,W,M,D,052,03/08/2012,03/08/2008 -DSCC Member ," 83rd Representative District, Office ""A"" ",,,,LA,,,,,,,,,,,,,,052 -DSCC Member ," 83rd Representative District, Office ""B"" ",,,,LA,,,,John W. Alario,1047 Cedre Dr.,,Westwego,LA,70094,504-340-6631,W,M,D,052,03/08/2012,03/08/2008 -DSCC Member ," 84th Representative District, Office ""A"" ",,,,LA,,,,,,,,,,,,,,052 -DSCC Member ," 84th Representative District, Office ""B"" ",,,,LA,,,,,,,,,,,,,,052 -DSCC Member ," 85th Representative District, Office ""A"" ",,,,LA,,,,Krystal Williams,1561 Hanging Moss Ln.,,Gretna,LA,70056,504-258-8023,B,F,D,052,03/08/2012,03/08/2008 -DSCC Member ," 85th Representative District, Office ""B"" ",,,,LA,,,,,,,,,,,,,,052 -DSCC Member ," 86th Representative District, Office ""A"" ",,,,LA,,,,Deborah Sulzer Primeaux,196 English Turn Dr.,,New Orleans,LA,70131,504-391-0928,W,F,D,052,03/08/2012,03/08/2008 -DSCC Member ," 86th Representative District, Office ""B"" ",,,,LA,,,,Joseph Broussard,209 Brunswick Crt.,,New Orleans,LA,70131,504-391-9641,B,M,D,052,03/08/2012,03/08/2008 -DSCC Member ," 87th Representative District, Office ""A"" ",,,,LA,,,,,,,,,,,,,,052 -DSCC Member ," 87th Representative District, Office ""B"" ",,,,LA,,,,"Girod Jackson, III","2439 Manhattan Blvd., Ste. 207",,Harvey,LA,70058,504-361-6972,B,M,D,052,03/08/2012,03/08/2008 -DSCC Member ," 88th Representative District, Office ""A"" ",,,,LA,,,,Melissa Pardue,P. O. Box 4,,Springfield,LA,70462,225-294-9074,W,F,D,052,03/08/2012,03/08/2008 -DSCC Member ," 88th Representative District, Office ""B"" ",,,,LA,,,,Kevin Hull,20469 LA Hwy. 16,,Denham Springs,LA,70726,225-405-1362,W,M,D,052,03/08/2012,03/08/2008 -DSCC Member ," 89th Representative District, Office ""A"" ",,,,LA,,,,"""Susie"" Deano",136 Lafayette St.,,Mandeville,LA,70448-5620,985-626-9442,W,F,D,052,03/08/2012,03/08/2008 -DSCC Member ," 89th Representative District, Office ""B"" ",,,,LA,,,,"Sorola ""Jody"" Palmer",P. O. Box 868,,Lacombe,LA,70445,985-882-3392,B,M,D,052,03/08/2012,03/08/2008 -DSCC Member ," 90th Representative District, Office ""A"" ",,,,LA,,,,d'Andrea McMooain-Chatman,38248 N. Fifth Ave.,,Slidell,LA,70460-4524,985-863-5089,B,F,D,052,03/08/2012,03/08/2008 -DSCC Member ," 90th Representative District, Office ""B"" ",,,,LA,,,,Shannon Davis,34399 Laurent Rd.,,Slidell,LA,70460-3555,985-641-6834,W,M,D,052,03/08/2012,03/08/2008 -DSCC Member ," 91st Representative District, Office ""A"" ",,,,LA,,,,Natacha Hutchinson,1918 Louisiana Ave.,,New Orleans,LA,70115,504-342-2686,B,F,D,052,03/08/2012,03/08/2008 -DSCC Member ," 91st Representative District, Office ""B"" ",,,,LA,,,,Maurice Ruffin,2412 General Taylor St.,,New Orleans,LA,70115,504-899-4394,B,M,D,052,03/08/2012,03/08/2008 -DSCC Member ," 92nd Representative District, Office ""A"" ",,,,LA,,,,Melinda Hills-Holmes,P.O. Box 640211,,Kenner,LA,70064-0211 ,504-343-1488,B,F,D,052,03/08/2012,03/08/2008 -DSCC Member ," 92nd Representative District, Office ""B"" ",,,,LA,,,,Keith M. Hutchinson,927 S. Starrett Rd.,,Metairie,LA,70003,504-712-1632,B,M,D,052,03/08/2012,03/08/2008 -DSCC Member ," 93rd Representative District, Office ""A"" ",,,,LA,,,,Karen Carter,"920 Poeyfarre St., Unit 316",,New Orleans,LA,70130,504-568-8346,B,F,D,052,03/08/2012,03/08/2008 -DSCC Member ," 93rd Representative District, Office ""B"" ",,,,LA,,,,Thomas A. Robichaux,1805 Esplande Ave.,,New Orleans,LA,70116,504-945-4003,W,M,D,052,03/08/2012,03/08/2008 -DSCC Member ," 94th Representative District, Office ""A"" ",,,,LA,,,,Deborah Langhoff,4234 Canal St.,,New Orleans,LA,70119,504-259-4525,W,F,D,052,03/08/2012,03/08/2008 -DSCC Member ," 94th Representative District, Office ""B"" ",,,,LA,,,,Philip Costa,818 City Park Ave.,,New Orleans,LA,70119,504-220-0593,W,M,D,052,03/08/2012,03/08/2008 -DSCC Member ," 95th Representative District, Office ""A"" ",,,,LA,,,,Irma Muse-Dixon,8210 Neron Place,,New Orleans,LA,70118,504-460-4720,B,F,D,052,03/08/2012,03/08/2008 -DSCC Member ," 95th Representative District, Office ""B"" ",,,,LA,,,,,,,,,,,,,,052 -DSCC Member ," 96th Representative District, Office ""A"" ",,,,LA,,,,Dale Atkins,"421 Loyola Ave., Rm. 402",,New Orleans,LA,70112,504-427-1421,B,F,D,052,03/08/2012,03/08/2008 -DSCC Member ," 96th Representative District, Office ""B"" ",,,,LA,,,,Juan Lafonta,306 Warrinton Dr.,,New Orleans,LA,70122,504-288-4911,B,M,D,052,03/08/2012,03/08/2008 -DSCC Member ," 97th Representative District, Office ""A"" ",,,,LA,,,,Cynthia Hedge-Morrell,4925 Moore Dr.,,New Orleans,LA,70122,504-261-0535,B,F,D,052,03/08/2012,03/08/2008 -DSCC Member ," 97th Representative District, Office ""B"" ",,,,LA,,,,Arthur A. Morrell,4925 Moore Dr.,,New Orleans,LA,70122,504-658-9000,B,M,D,052,03/08/2012,03/08/2008 -DSCC Member ," 98th Representative District, Office ""A"" ",,,,LA,,,,Cheryl A. Gray,4318 Jena St.,,New Orleans,LA,70125,504-628-4300,B,F,D,052,03/08/2012,03/08/2008 -DSCC Member ," 98th Representative District, Office ""B"" ",,,,LA,,,,Jay H. Banks,1746 Jackson Ave.,,New Orleans,LA,70113,504-522-8811,B,M,D,052,03/08/2012,03/08/2008 -DSCC Member ," 99th Representative District, Office ""A"" ",,,,LA,,,,Charmaine L. Marchand,1730 Andry St.,,New Orleans,LA,70117,504-945-8151,B,F,D,052,03/08/2012,03/08/2008 -DSCC Member ," 99th Representative District, Office ""B"" ",,,,LA,,,,Thomas Jasper,P.O. Box 771106,,New Orleans,LA,70177,504-228-8812,B,M,D,052,03/08/2012,03/08/2008 -DSCC Member ,"100th Representative District, Office ""A"" ",,,,LA,,,,Terrie Carrie-Guerin,101 Eastview Dr.,,New Orleans,LA,70128,504-909-1634,B,F,D,052,03/08/2012,03/08/2008 -DSCC Member ,"100th Representative District, Office ""B"" ",,,,LA,,,,Sean Michael Bruno,11269 Notaway Ln.,,New Orleans,LA,70128,504-905-3792,B,M,D,052,03/08/2012,03/08/2008 -DSCC Member ,"101st Representative District, Office ""A"" ",,,,LA,,,,Ermence DeBose-Parent,1956 Hope St.,,New Orleans,LA,70119,504-343-7421,B,F,D,052,03/08/2012,03/08/2008 -DSCC Member ,"101st Representative District, Office ""B"" ",,,,LA,,,,Wesley T. Bishop,7001 Cove Dr.,,New Orleans,LA,70126,504-220-3201,B,M,D,052,03/08/2012,03/08/2008 -DSCC Member ,"102nd Representative District, Office ""A"" ",,,,LA,,,,Pamela Netto-Stewart,418 Eliza St.,,New Orleans,LA,70114,504-301-1579,W,F,D,052,03/08/2012,03/08/2008 -DSCC Member ,"102nd Representative District, Office ""B"" ",,,,LA,,,,"Kenneth Paul Garrett, Sr.",2152 L.B. Landry Ave.,,New Orleans,LA,70114,043677101,B,M,D,052,03/08/2012,03/08/2008 -DSCC Member ,"103rd Representative District, Office ""A"" ",,,,LA,,,,Cheron Brylski,3418 Coliseum St.,,New Orleans,LA,70115,504-460-1468,W,F,D,052,03/08/2012,03/08/2008 -DSCC Member ,"103rd Representative District, Office ""B"" ",,,,LA,,,,Eric A. Bopp,70 Carolyn Ct.,,Arabi,LA,70032,504-388-6242,W,M,D,052,03/08/2012,03/08/2008 -DSCC Member ,"104th Representative District, Office ""A"" ",,,,LA,,,,"Newell ""Suzy"" Andry",210 Lorelei Cir.,,Slidell,LA,70458,504-231-2237,W,F,D,052,03/08/2012,03/08/2008 -DSCC Member ,"104th Representative District, Office ""B"" ",,,,LA,,,,John Seither Gutierrez,2137 Jackson Blvd.,,Chalmette,LA,70043,504-442-3684,W,M,D,052,03/08/2012,03/09/2008 -DSCC Member ,"105th Representative District, Office ""A"" ",,,,LA,,,,Laura Veazey,P.O. Box Box 261,,Belle Chasse,LA,70037,,,,,052,,07/24/2008 -DSCC Member ,"105th Representative District, Office ""B"" ",,,,LA,,,,Herman Gravolet,P.O. Box 261,,Belle Chasse,LA,70037,504-450-1651,W,M,D,052,03/08/2012,03/08/2008 -RSCC Member ," 1st Representative District, Subdistrict A ",,,,LA,,,,Marty Gant Woolridge,10724 Hwy 1,,Mooringsport,LA,71060,,,,,062,,03/16/2009 -RSCC Member ," 1st Representative District, Subdistrict B ",,,,LA,,,,Lucille Williams,6029 Cherry Hill Pl,,Shereveport,LA,71107,,,,,062,,06/07/2008,Ms. Williams -RSCC Member , 2nd Representative District ,,,,LA,,,,"""Jay"" Gallagher",1103 Boulevard St.,,Shrevport,LA,71104-2030,318-221-0456,W,,R,062,02/23/2012,02/23/2008 -RSCC Member , 3rd Representative District ,,,,LA,,,,Carrol Grace White,618 Kingridge Pl.,,Shreveport,LA,71108-6016,318-686-5466,W,F,R,062,02/23/2012,02/23/2008 -RSCC Member ," 4th Representative District, Subdistrict A ",,,,LA,,,,"""Don"" Hollis",4002 Curtis Ln.,,Shreveport,LA,71109-5016,318-773-4349,,,R,062,02/23/2012,02/23/2008 -RSCC Member ," 4th Representative District, Subdistrict B ",,,,LA,,,,"Sandra ""Sandy"" McDade",3112 Pines Rd.,,Shreveport,LA,71119-3504,318-631-4133,,,R,062,02/23/2012,02/23/2008 -RSCC Member ," 5th Representative District, Subdistrict A ",,,,LA,,,,Stephen Gibson,9402 Baird Cir,,Shreveport,LA,71118,318-688-0742,,,,062,,08/29/2009,Mr. Gibson -RSCC Member ," 5th Representative District, Subdistrict B ",,,,LA,,,,Wayne Waddell,3221 Green Terrace Rd.,,Shreveport,LA,71118,318-219-9000,W,,R,062,02/23/2012,02/23/2008 -RSCC Member ," 5th Representative District, Subdistrict C ",,,,LA,,,,Bryan Wooley,9114 Campfire Ln.,,Shreveport,LA,71115-3657,318-780-8838,W,M,R,062,02/23/2012,02/23/2008 -RSCC Member ," 5th Representative District, Subdistrict D ",,,,LA,,,,Alan Seabaugh,9727 Norris Ferry Rd.,,Shreveport,LA,71106,318-797-5889,W,,R,062,02/23/2012,02/23/2008 -RSCC Member ," 6th Representative District, Subdistrict A ",,,,LA,,,,Jimmy C. Allen,7333 Camelback Dr.,,Shreveport,LA,71105-5007,318-797-4761,W,,R,062,02/23/2012,02/23/2008 -RSCC Member ," 6th Representative District, Subdistrict B ",,,,LA,,,,Royal Alexander,P.O. Box 1837,,Shreveport,LA,71166,318-308-4082,W,,R,062,02/23/2012,02/23/2008,Mr. Alexander -RSCC Member ," 6th Representative District, Subdistrict C ",,,,LA,,,,Barrow Peacock,P.O. Box 46,,Shreveport,LA,71161,318-221-5276,W,,R,062,02/23/2012,02/23/2008,Mr. Peacock -RSCC Member ," 6th Representative District, Subdistrict D ",,,,LA,,,,Harold O. Coates,6117 Lovers Ln.,,Shreveport,LA,71105-4829,318-868-1212,W,M,R,062,02/23/2012,02/23/2008 -RSCC Member ," 7th Representative District, Subdistrict A ",,,,LA,,,,"""Ron"" Webb",2406 Helmsdale Ct.,,Shreveport,LA,71118-4546,318-688-6800,W,M,R,062,02/23/2012,02/23/2008 -RSCC Member ," 7th Representative District, Subdistrict B ",,,,LA,,,,"Bryan B. Norwood, Jr.",180 Norwood Rd.,,Mansfield,LA,71052,318-872-4707,W,M,R,062,02/23/2012,02/23/2008 -RSCC Member ," 8th Representative District, Subdistrict A ",,,,LA,,,,"""Greg"" Nichols",1906 Mars Dr.,,Bossier City,LA,71112,318-746-3849,W,M,R,062,02/23/2012,02/23/2008 -RSCC Member ," 8th Representative District, Subdistrict B ",,,,LA,,,,Anne Price,104 Cambridge Cir.,,Bossier City,LA,71111-2278,318-741-1572,W,F,R,062,02/23/2012,02/23/2008 -RSCC Member ," 8th Representative District, Subdistrict C ",,,,LA,,,,Martin Grau,2005 Pine Ridge Way,,Benton,LA,71006-3489,318-402-3525,W,M,R,062,02/23/2012,02/23/2008 -RSCC Member ," 9th Representative District, Subdistrict A ",,,,LA,,,,Janie M. Kelley,1613 Caplis Sligo Rd.,,Bossier City,LA,71112-9859,318-747-2073,W,F,R,062,02/23/2012,02/23/2008 -RSCC Member ," 9th Representative District, Subdistrict B ",,,,LA,,,,Henry Burns,134 Chimney Ln.,,Haughton,LA,71037,318-949-2463,,,,062,,01/13/2009,Mr. Burns -RSCC Member ," 9th Representative District, Subdistrict C ",,,,LA,,,,David W. Hall,482 Merritt Rd.,,Benton,LA,71006,318-965-4444,W,M,R,062,02/23/2012,02/23/2008 -RSCC Member ," 10th Representative District, Subdistrict A ",,,,LA,,,,Ronnie Broughton,110 Germantown Rd.,,Minden,LA,71055,318-377-4575,W,M,R,062,02/23/2012,02/23/2008 -RSCC Member ," 10th Representative District, Subdistrict B ",,,,LA,,,,"Eric ""Red"" Johnson",1507 Holley,,Minden,LA,71055,318-377-1555,W,M,R,062,02/23/2012,02/23/2008 -RSCC Member , 11th Representative District ,,,,LA,,,,Trent P. Newell,195 Tanglewood Rd.,,Homer,LA,71040,318-927-3664,W,M,R,062,02/23/2012,02/23/2008 -RSCC Member ," 12th Representative District, Subdistrict A ",,,,LA,,,,Jennifer Daulton Ham,812 Sandy Ln.,,Ruston,LA,71270,318-255-1259,W,F,R,062,02/23/2012,02/23/2008 -RSCC Member ," 12th Representative District, Subdistrict B ",,,,LA,,,,,,,,,,,,,,062 -RSCC Member ," 12th Representative District, Subdistrict C ",,,,LA,,,,Deryl Bryant,238 Bryant's Edge Rd.,,Downsville,LA,71234,,,,,062,,06/07/2008,Ms. Bryant -RSCC Member ," 13th Representative District, Subdistrict A ",,,,LA,,,,L. Todd Perry,702 Hodge Watson Rd.,,Calhoun,LA,71225,318-396-6699,W,M,R,062,02/23/2012,02/23/2008 -RSCC Member ," 13th Representative District, Subdistrict B ",,,,LA,,,,David Holton,123 Allen Ave.,,Jonesboro,LA,71251,318-680-9206,,M,R,062,02/23/2012,02/23/2008 -RSCC Member ," 14th Representative District, Subdistrict A ",,,,LA,,,,Sam Little,117 S. Franklin St.,,Bastrop,LA,71220,,,,,062,,06/07/2008 -RSCC Member ," 14th Representative District, Subdistrict B ",,,,LA,,,,Hannah Hammons,5073 Hwy. 139,,Collinston,LA,71229,318-345-4566,W,F,R,062,02/23/2012,02/23/2008 -RSCC Member ," 14th Representative District, Subdistrict C ",,,,LA,,,,"""Stan"" Neathery",5844 Huntington Dr.,,Bastrop,LA,71220,318-283-2677,W,M,R,062,02/23/2012,02/23/2008 -RSCC Member ," 15th Representative District, Subdistrict A ",,,,LA,,,,Deborah Wisdom McCulloch,1207 Tulane Ave.,,West Monroe,LA,71291,318-324-8328,W,F,R,062,02/23/2012,02/23/2008 -RSCC Member ," 15th Representative District, Subdistrict B ",,,,LA,,,,"M. Randall ""Randy"" Donald",614 Cheniere Drew Rd.,,West Monroe,LA,71291,318-322-8442,W,M,R,062,02/23/2012,02/23/2008 -RSCC Member ," 15th Representative District, Subdistrict C ",,,,LA,,,,Gordon Dasher,570 Mouth of Cypress Rd.,,West Monroe,LA,71292,318-398-0919,W,M,R,062,02/23/2012,02/23/2008 -RSCC Member ," 16th Representative District, Subdistrict A ",,,,LA,,,,Ruth Ulrich,406 Forsythe Ave.,,Monroe,LA,71201,318-330-9780,W,F,R,062,02/23/2012,02/23/2008 -RSCC Member ," 16th Representative District, Subdistrict B ",,,,LA,,,,Kay Kellogg Katz,2905 Lamy Cr.,,Monroe,LA,71201,318-387-7728,W,F,R,062,02/23/2012,02/23/2008 -RSCC Member ," 16th Representative District, Subdistrict C ",,,,LA,,,,Nancy Pate Wilkes,207 Pecan Bayou Dr.,,Monroe,LA,71203,318-343-5130,W,F,R,062,02/23/2012,02/23/2008 -RSCC Member ," 16th Representative District, Subdistrict D ",,,,LA,,,,,,,,,,,,,,062 -RSCC Member , 17th Representative District ,,,,LA,,,,Thomas E. Taylor,4205 Harrison St.,,Monroe,LA,71205,,,,,062,,01/13/2009,Mr. Taylor -RSCC Member , 18th Representative District ,,,,LA,,,,"William L. ""Bill"" Davis",13039 Patin Dyke Rd.,,Ventress,LA,70783,225-618-0670,W,M,R,062,02/23/2012,02/23/2008 -RSCC Member ," 19th Representative District, Subdistrict A ",,,,LA,,,,,,,,,,,,,,062 -RSCC Member ," 19th Representative District, Subdistrict B ",,,,LA,,,,Doyle E. Robinson,491 Hwy 622,,Mangham,LA,71259,318-248-2272,W,M,R,062,02/23/2012,02/23/2008 -RSCC Member ," 20th Representative District, Subdistrict A ",,,,LA,,,,"Billy C. Johnson, II",223 Johnson Rd.,,Columbia,LA,71418,318-649-8351,W,M,R,062,02/23/2012,02/23/2008 -RSCC Member ," 20th Representative District, Subdistrict B ",,,,LA,,,,"Henry G. Herford, Jr.",2604 Hwy. 17,,Delhi,LA,71232,,W,M,R,062,02/23/2012,02/23/2008 -RSCC Member ," 21st Representative District, Subdistrict A ",,,,LA,,,,Steve Fleming,100 Stewart Dr.,,Vidalia,LA,71373,318-336-9220,W,M,R,062,02/23/2012,02/23/2008 -RSCC Member ," 21st Representative District, Subdistrict B ",,,,LA,,,,Fred B. Wyly,210 Neely Plantation Road,,Tallulah,LA,71282,318574369,W,M,R,062,02/23/2012,02/23/2008 -RSCC Member ," 22nd Representative District, Subdistrict A ",,,,LA,,,,Charles Carpenter,152 Holt Rd.,,Pollock,LA,71467,,,,,062,,06/07/2008,Mr. Carpenter -RSCC Member ," 22nd Representative District, Subdistrict B ",,,,LA,,,,Billie Turnley,P.O. Box 1891,,Jena,LA,71342,318-992-2033,W,F,R,062,02/23/2012,02/23/2008 -RSCC Member ," 23rd Representative District, Subdistrict A ",,,,LA,,,,Paul Johnson,269 Chris St.,,Natchitoches,LA,71457,318-352-6938,W,M,R,062,02/23/2012,02/23/2008 -RSCC Member ," 23rd Representative District, Subdistrict B ",,,,LA,,,,Gary M. Lirette,1129 Hwy. 487,,Marthaville,LA,71450,318-796-2387,W,M,R,062,02/23/2012,02/23/2008 -RSCC Member ," 24th Representative District, Subdistrict A ",,,,LA,,,,Bobby E. Williams,277 Hwy. 118,,Florien,LA,71429,318-586-3516,W,M,R,062,02/23/2012,02/23/2008 -RSCC Member ," 24th Representative District, Subdistrict B ",,,,LA,,,,Valmore Byles,1751 Robby St.,,Many,LA,71449,318-256-5101,W,M,R,062,02/23/2012,02/23/2008 -RSCC Member ," 25th Representative District, Subdistrict A ",,,,LA,,,,"""Chuck"" Tosten",4202 Wellington Blvd.,,Alexandria,LA,71303-2828,318-442-1016,W,M,R,062,02/23/2012,02/23/2008 -RSCC Member ," 25th Representative District, Subdistrict B ",,,,LA,,,,Wayne Ryan,P.O. Box 12445,,Alexandria,LA,71315,318-613-2202,,,,062,,08/29/2009,Mr. Ryan -RSCC Member ," 25th Representative District, Subdistrict C ",,,,LA,,,,Gene Haymon,150 Mockingbird Ln.,,Leesville,LA,71446,337-238-3788,,,,062,,06/04/2009,Mr. Haymon -RSCC Member , 26th Representative District ,,,,LA,,,,Karen Kay Haymon,1809 Bush Ave.,,Alexandria,LA,71301,318-449-1108,W,F,R,062,02/23/2012,02/23/2008 -RSCC Member ," 27th Representative District, Subdistrict A ",,,,LA,,,,"Edward L. Tarpley, Jr.",519 Eagle Dr.,,Pineville,LA,71360,318-640-3337,W,M,R,062,02/23/2012,02/23/2008 -RSCC Member ," 27th Representative District, Subdistrict B ",,,,LA,,,,Edwin B. Jones,119 Rockpoint East,,Pineville,LA,71360,318-443-3823,W,M,R,062,02/23/2012,02/23/2008 -RSCC Member ," 27th Representative District, Subdistrict C ",,,,LA,,,,Clyde C. Holloway,P.O. Box 340,,Forest Hill,LA,71430,318-748-6832,,,R,062,02/23/2012,02/23/2008 -RSCC Member , 28th Representative District ,,,,LA,,,,"Kirby Roy, III",581 Little Corner Rd.,,Hessmer,LA,71341,318-563-1076,W,M,R,062,02/23/2012,02/23/2008 -RSCC Member , 29th Representative District ,,,,LA,,,,Harold Williams,P.O. Box 80727,,Baton Rouge,LA,70898,225-806-6923,B,M,R,062,02/23/2012,02/23/2008 -RSCC Member ," 30th Representative District, Subdistrict A ",,,,LA,,,,Steve Iles,1416 Camellia Dr.,,DeRidder,LA,70634,,,,,062,,06/07/2008 -RSCC Member ," 30th Representative District, Subdistrict B ",,,,LA,,,,Jack Causey,247 Alexandria Hwy.,,Leesville,LA,71446,337-239-5952,W,M,R,062,02/23/2012,02/23/2008 -RSCC Member ," 31st Representative District, Subdistrict A ",,,,LA,,,,"Ross Little, Jr.",100 Harwell,,Lafayette,LA,70503,337-981-1749,W,M,R,062,02/23/2012,02/23/2008 -RSCC Member ," 31st Representative District, Subdistrict B ",,,,LA,,,,"William P. Mills, III",2250 Robley,,Lafayette,LA,70505,337-232-1438,W,M,R,062,02/23/2012,02/23/2008 -RSCC Member ," 31st Representative District, Subdistrict C ",,,,LA,,,,"""Charlie"" Buckels",202 Sommerset,,Lafayette,LA,70506,337-981-3000,W,M,R,062,02/23/2012,02/23/2008 -RSCC Member ," 32nd Representative District, Subdistrict A ",,,,LA,,,,James David Cain,P. O. Box 640,,Dry Creek,LA,70637,337-328-7266,W,M,R,062,02/23/2012,02/23/2008 -RSCC Member ," 32nd Representative District, Subdistrict B ",,,,LA,,,,"William E. ""Bill"" Murry",P. O. Box 543,,Oakdale,LA,71463,318-335-3121,W,M,R,062,02/23/2012,02/23/2008 -RSCC Member ," 33rd Representative District, Subdistrict A ",,,,LA,,,,Lillie Brady,4700 Maplewood Dr.,,Sulphur,LA,70663,337-625-7567,W,F,R,062,02/23/2012,02/23/2008 -RSCC Member ," 33rd Representative District, Subdistrict B ",,,,LA,,,,Terry Backhaus,800 Ryan St. Ste. B,,Lake Charles,LA,70601,337-437-9950,W,M,R,062,02/23/2012,02/23/2008 -RSCC Member , 34th Representative District ,,,,LA,,,,Nathan Curtis,2899 Sugarloaf Dr. #124,,Lake Charles,LA,70607-7544,337-263-0860,W,M,R,062,02/23/2012,02/23/2008 -RSCC Member ," 35th Representative District, Subdistrict A ",,,,LA,,,,Tore Carlberg,1500 Watkins St.,,Lake Charles,LA,70601,337-721-0440,W,M,R,062,02/23/2012,02/23/2008 -RSCC Member ," 35th Representative District, Subdistrict B ",,,,LA,,,,"""Larry"" Agee",3900 Paul White Rd.,,Lake Charles,LA,70611,337-855-3124,W,M,R,062,02/23/2012,02/23/2008 -RSCC Member ," 36th Representative District, Subdistrict A ",,,,LA,,,,Keith DeSonier,917 Contraband Ln.,,Lake Charles,LA,70605,337-474-4976,W,M,R,062,02/23/2012,02/23/2008 -RSCC Member ," 36th Representative District, Subdistrict B ",,,,LA,,,,Marcia Farber,210 Lee St.,,Lake Charles,LA,70605,337-499-3357,W,F,R,062,02/23/2012,02/23/2008 -RSCC Member ," 36th Representative District, Subdistrict C ",,,,LA,,,,Shaina Farque,7285 Choupique Rd.,,Sulphur,LA,70665,337-583-4530,W,F,R,062,02/23/2012,02/23/2008 -RSCC Member ," 37th Representative District, Subdistrict A ",,,,LA,,,,Heather Johnson,19485 Freeland Rd.,,Welsh,LA,70591,337-515-6621,,,,062,,11/12/2009 -RSCC Member ," 37th Representative District, Subdistrict B ",,,,LA,,,,"Paul Delacroix, Jr.",422 E. Nezpique St.,,Jennings,LA,70546,337-824-3719,W,M,R,062,02/23/2012,02/23/2008 -RSCC Member ," 38th Representative District, Subdistrict A ",,,,LA,,,,Dennis Thompson,1038 W. Main St.,,Ville Platte,LA,70586,337-363-2620,W,M,R,062,02/23/2012,02/23/2008 -RSCC Member ," 38th Representative District, Subdistrict B ",,,,LA,,,,"""Jimmy"" LaFleur",682 Shuff Rd.,,Ville Platte,LA,70586,337-363-5317,W,M,R,062,02/23/2012,02/23/2008 -RSCC Member ," 39th Representative District, Subdistrict A ",,,,LA,,,,Dale Bourgeois,1110 N Wilderness Trail,,Carencro,LA,70520,337-896-4784,W,M,R,062,02/23/2012,02/23/2008 -RSCC Member ," 39th Representative District, Subdistrict B ",,,,LA,,,,Mike Hebert,109 Broadway Dr.,,Scott,LA,70583,,,,,062,,03/16/2009,Mr. Hebert -RSCC Member , 40th Representative District ,,,,LA,,,,Alyshia B. Boagni,410 S. Court St.,,Opelousas,LA,70570,337-948-9242,W,F,R,062,02/23/2012,02/23/2008 -RSCC Member ," 41st Representative District, Subdistrict A ",,,,LA,,,,Keith Lamm,7250 Robert Cove Rd.,,Rayne,LA,70578,337-277-6232,W,M,R,062,02/23/2012,02/23/2008 -RSCC Member ," 41st Representative District, Subdistrict B ",,,,LA,,,,Russell P. Pavich,330 South 9th St.,,Eunice,LA,70535,337-546-0494,W,M,R,062,02/23/2012,02/23/2008 -RSCC Member ," 42nd Representative District, Subdistrict A ",,,,LA,,,,Anthony Emmons,503 East Jefferson Davis,,Rayne,LA,70578,337-334-5701,W,M,R,062,02/23/2012,02/23/2008 -RSCC Member ," 42nd Representative District, Subdistrict B ",,,,LA,,,,Allison Clarke,715 E.7th St.,,,LA,70526,337-785-0168,W,F,R,062,02/23/2012,02/23/2008 -RSCC Member ," 43rd Representative District, Subdistrict A ",,,,LA,,,,Gary Reynolds,98 John Adams,,Youngsville,LA,70592,,,,,062,,06/30/2008,Mr. Reynolds -RSCC Member ," 43rd Representative District, Subdistrict B ",,,,LA,,,,Nicole Cockerham,13 Courtyard Circle,,Lafayette,LA,70508,337-234-3545,W,F,R,062,02/23/2012,02/23/2008 -RSCC Member ," 43rd Representative District, Subdistrict C ",,,,LA,,,,Tracy Richardson,303 Billy Lou Dr.,,Lafayette,LA,70508,337-993-7442,W,M,R,062,02/23/2012,02/23/2008 -RSCC Member ," 43rd Representative District, Subdistrict D ",,,,LA,,,,"""Sandy"" Gresham Hindelang",210 Lakeside Dr.,,Lafayette,LA,70508,337-984-6171,W,F,R,062,02/23/2012,02/23/2008 -RSCC Member , 44th Representative District ,,,,LA,,,,Normand Miller,311 N. Sterling,,Lafayette,LA,70501,337-234-6817,W,M,R,062,02/23/2012,02/23/2008 -RSCC Member ," 45th Representative District, Subdistrict A ",,,,LA,,,,"W. Thomas ""Tom"" Angers",116 Teche Dr.,,Lafayette,LA,70503,337-233-3268,W,M,R,062,02/23/2012,02/23/2008 -RSCC Member ," 45th Representative District, Subdistrict B ",,,,LA,,,,DeAnne Henke,107 Pericles,,Lafayette,LA,70506,337-504-3834,W,F,R,062,02/23/2012,02/23/2008 -RSCC Member ," 45th Representative District, Subdistrict C ",,,,LA,,,,"""Max"" Jordan",1915 W Saint Mary Blvd.,,Lafayette,LA,70506,337-232-6197,W,M,R,062,02/23/2012,02/23/2008 -RSCC Member ," 46th Representative District, Subdistrict A ",,,,LA,,,,Richard Delahoussaye,422 N. Pinaud St.,,St. Martinville,LA,70582,337-394-7281,W,M,R,062,02/23/2012,02/23/2008 -RSCC Member ," 46th Representative District, Subdistrict B ",,,,LA,,,,"Joseph ""Rick"" Pearson",525 Clause Dr.,,Breaux Bridge,LA,70517,337-442-6650,W,M,R,062,02/23/2012,02/23/2008 -RSCC Member ," 47th Representative District, Subdistrict A ",,,,LA,,,,Jonathan Perry,312 Abshire Drive,,Kaplan,LA,70548-2230,337-643-2057,W,M,R,062,02/23/2012,02/23/2008 -RSCC Member ," 47th Representative District, Subdistrict B ",,,,LA,,,,Dexter James Duhon,9016 Rachelle Drive,,Abbeville,LA,70510-2119,337-893-2702,W,M,R,062,02/23/2012,02/23/2008 -RSCC Member ," 48th Representative District, Subdistrict A ",,,,LA,,,,Anne B. Caffery,1001 Loreauville Rd.,,New Iberia,LA,70563,337-365-3617,W,F,R,062,02/23/2012,02/23/2008 -RSCC Member ," 48th Representative District, Subdistrict B ",,,,LA,,,,,,,,,,,,,,062 -RSCC Member ," 49th Representative District, Subdistrict A ",,,,LA,,,,Rebecca M. Allain,P.O. Box 467,,Jeanerette,LA,70544,337-276-6423,W,F,R,062,02/23/2012,02/23/2008 -RSCC Member ," 49th Representative District, Subdistrict B ",,,,LA,,,,Dick Lane Menard,1218 Victor Rd.,,Abbeville,LA,70510,337-937-6358,W,M,R,062,02/23/2012,02/23/2008 -RSCC Member ," 50th Representative District, Subdistrict A ",,,,LA,,,,Christian Gil,P. O. Box 157,,Patterson,LA,70392,985-399-4412,W,M,R,062,02/23/2012,02/23/2008 -RSCC Member ," 50th Representative District, Subdistrict B ",,,,LA,,,,Jessie Morton,108 Eastwood Dr.,,Franklin,LA,70538,337-828-0557,W,F,R,062,02/23/2012,02/23/2008 -RSCC Member ," 51st Representative District, Subdistrict A ",,,,LA,,,,Leilani N. Hardee,913 Hickory St.,,Morgan City,LA,70380,985-519-6110,W,F,R,062,02/23/2012,02/23/2008 -RSCC Member ," 51st Representative District, Subdistrict B ",,,,LA,,,,"""Joe"" Harrison, Jr.",3239 Hwy. 308,,Napoleonville,LA,70390,985-526-8434,W,M,R,062,02/23/2012,02/23/2008 -RSCC Member ," 52nd Representative District, Subdistrict A ",,,,LA,,,,"Kirby B. Fabre, Jr.",335 Sugar Plum St.,,Houma,LA,70364-4470,985-868-3879,W,M,R,062,02/23/2012,02/23/2008 -RSCC Member ," 52nd Representative District, Subdistrict B ",,,,LA,,,,"""Fred"" Fondren",30 Amarillo Dr.,,Houma,LA,70360,985-876-1151,W,M,R,062,02/23/2012,02/23/2008 -RSCC Member ," 53rd Representative District, Subdistrict A ",,,,LA,,,,"Wallace Ellender, III",239 Hwy. 55,,Bourg,LA,70343,985-594-7806,W,M,R,062,02/23/2012,02/23/2008 -RSCC Member ," 53rd Representative District, Subdistrict B ",,,,LA,,,,Lenar Whitney,300 Wilson Ave.,,Houma,LA,70364-3142,985-851-0132,W,F,R,062,02/23/2012,02/23/2008 -RSCC Member , 54th Representative District ,,,,LA,,,,"""Irv"" Magri",P. O. Box 5,,Grand Isle,LA,70358,985-787-2477,W,M,R,062,02/23/2012,02/23/2008 -RSCC Member ," 55th Representative District, Subdistrict A ",,,,LA,,,,Frank Nezzio,320 Brandywine Blvd.,,Thibodaux,LA,70301,985-448-3069,W,M,R,062,02/23/2012,02/23/2008 -RSCC Member ," 55th Representative District, Subdistrict B ",,,,LA,,,,David Gauthe,1922 Bayou Rd.,,Thibodaux,LA,70301,985-446-5364,W,M,R,062,02/23/2012,02/23/2008 -RSCC Member ," 56th Representative District, Subdistrict A ",,,,LA,,,,Wendy Benedetto,13 Ashland Dr.,,Destrehan,LA,70047,985-764-8439,W,F,R,062,02/23/2012,02/23/2008 -RSCC Member ," 56th Representative District, Subdistrict B ",,,,LA,,,,"Clayton ""Snookie"" Faucheux",140 N. Oak Ct.,,Luling,LA,70070,985-785-6588,W,M,R,062,02/23/2012,02/23/2008 -RSCC Member ," 57th Representative District, Subdistrict A ",,,,LA,,,,David W. Millet,136 West 9th St.,,Reserve,LA,70084,985-652-6261,W,M,R,062,02/23/2012,02/23/2008 -RSCC Member ," 57th Representative District, Subdistrict B ",,,,LA,,,,Emory B. Putman,1015 Madewood Rd.,,LaPlace,LA,70068,985-653-0924,W,M,R,062,02/23/2012,02/23/2008 -RSCC Member , 58th Representative District ,,,,LA,,,,Charles Carpenter,815 River Rd.,,Sunshine,LA,70780,225-642-3344,W,M,R,062,02/23/2012,02/23/2008 -RSCC Member ," 59th Representative District, Subdistrict A ",,,,LA,,,,Paul Goppelt,42291 Clouatre Rd.,,Gonzales,LA,70737,225-675-8002,W,M,R,062,02/23/2012,02/23/2008 -RSCC Member ," 59th Representative District, Subdistrict B ",,,,LA,,,,Tonya Veazey,40097 Ronda Ave.,,Prairieville,LA,70769,225-955-3085,W,F,R,062,02/23/2012,02/23/2008 -RSCC Member ," 59th Representative District, Subdistrict C ",,,,LA,,,,George Valentine,13323 Hwy. 73,,Geismar,LA,70734,225-673-6973,W,M,R,062,02/23/2012,02/23/2008 -RSCC Member , 60th Representative District ,,,,LA,,,,Garry McClure,"25125 Gasper Street, Lot #42",,Plaquemine,LA,70764,225-687-7636,W,M,R,062,02/23/2012,02/23/2008 -RSCC Member , 61st Representative District ,,,,LA,,,,Dan Richey,725 Parlange Dr.,,Baton Rouge,LA,70806,225-252-9076,W,M,R,062,02/23/2012,02/23/2008 -RSCC Member ," 62nd Representative District, Subdistrict A ",,,,LA,,,,Rick Guillory,P. O. Box 434,,Slaughter,LA,70777,225-658-2987,W,M,R,062,02/23/2012,02/23/2008 -RSCC Member ," 62nd Representative District, Subdistrict B ",,,,LA,,,,"James ""Jimmy"" Kaiser",5923 Afton Villa Way,,St. Francisville,LA,70775,225-634-1440,W,M,R,062,02/23/2012,02/23/2008 -RSCC Member , 63rd Representative District ,,,,LA,,,,Barbara Thomas,7081 Modesto Ave.,,Baton Rouge,LA,70811,225-885-8856,,,,062,,11/12/2009,Ms. Thomas -RSCC Member ," 64th Representative District, Subdistrict A ",,,,LA,,,,Gordon Atwell,35635 Woodland Ridge Dr.,,Denham Springs,LA,70706,225-664-5066,W,M,R,062,02/23/2012,02/23/2008 -RSCC Member ," 64th Representative District, Subdistrict B ",,,,LA,,,,Valarie Hodges,33885 Cypress Bluff,,Denham Springs,LA,70706,225-667-0101,W,F,R,062,02/23/2012,02/23/2008 -RSCC Member ," 64th Representative District, Subdistrict C ",,,,LA,,,,Daniel Edwards,11971 Cline Dr.,,Baker,LA,70714,225-276-9106,W,M,R,062,02/23/2012,02/23/2008 -RSCC Member ," 65th Representative District, Subdistrict A ",,,,LA,,,,Scott Wilfong,2122 Palmwood Dr.,,Baton Rouge,LA,70816,225-272-2525,W,M,R,062,02/23/2012,02/23/2008 -RSCC Member ," 65th Representative District, Subdistrict B ",,,,LA,,,,"""Ron"" Erickson, Sr.",6633 Audusson Dr.,,Greenwell Springs,LA,70739,225-262-1605,W,M,R,062,02/23/2012,02/23/2008 -RSCC Member ," 65th Representative District, Subdistrict C ",,,,LA,,,,Gerald Phares,22101 Greenwell Springs Rd.,,Greenwell Springs,LA,70739,225-261-3123,W,M,R,062,02/23/2012,02/23/2008 -RSCC Member ," 66th Representative District, Subdistrict A ",,,,LA,,,,Gene Guffey,4420 Lake Limestone,,Baton Rouge,LA,70816,225-292-5943,W,M,R,062,02/23/2012,02/23/2008 -RSCC Member ," 66th Representative District, Subdistrict B ",,,,LA,,,,Malcolm Richard,1632 Tudor Dr.,,Baton Rouge,LA,70815,225-924-4098,W,M,R,062,02/23/2012,02/23/2008 -RSCC Member ," 66th Representative District, Subdistrict C ",,,,LA,,,,Ray Williams,9575 Goodwood Blvd.,,Baton Rouge,LA,70815,225-505-9699,W,M,R,062,02/23/2012,02/23/2008 -RSCC Member , 67th Representative District ,,,,LA,,,,Gail Dignam,150 3rd St. #404,,Baton Rouge,LA,70801,225-248-8555,W,F,R,062,02/23/2012,02/23/2008 -RSCC Member ," 68th Representative District, Subdistrict A ",,,,LA,,,,Michael Chittom,4734 Hundred Oaks Ave.,,Baton Rouge,LA,70808,225-926-0667,W,M,R,062,02/23/2012,02/23/2008 -RSCC Member ," 68th Representative District, Subdistrict B ",,,,LA,,,,"""Ted"" Baldwin",3030 Congress Blvd. Apt. 55,,Baton Rouge,LA,70808,225-924-5107,W,M,R,062,02/23/2012,02/23/2008 -RSCC Member ," 68th Representative District, Subdistrict C ",,,,LA,,,,John J. Price,17512 Five Oaks Dr.,,Baton Rouge,LA,70810,225-753-5338,W,M,R,062,02/23/2012,02/23/2008 -RSCC Member ," 69th Representative District, Subdistrict A ",,,,LA,,,,Erich Ponti,1445 Thibodeaux Ave.,,Baton Rouge,LA,70806,225-925-9069,W,M,R,062,02/23/2012,02/23/2008 -RSCC Member ," 69th Representative District, Subdistrict B ",,,,LA,,,,"""Tommy"" French",5015 Parkhollow Dr.,,Baton Rouge,LA,70816,225-293-0650,W,M,R,062,02/23/2012,02/23/2008 -RSCC Member ," 69th Representative District, Subdistrict C ",,,,LA,,,,David Fakouri,P.O. Box 86255,,Baton Rouge,LA,70879,225-921-9735,W,M,R,062,02/23/2012,02/23/2008 -RSCC Member ," 69th Representative District, Subdistrict D ",,,,LA,,,,Ryan Booth,6417 Snowden Dr.,,Baton Rouge,LA,70817,225-803-2062,W,M,R,062,02/23/2012,02/23/2008 -RSCC Member ," 70th Representative District, Subdistrict A ",,,,LA,,,,Ellen Wray-Davis,10426 Springpark Ave.,,Baton Rouge,LA,70810,225-328-4983,W,F,R,062,02/23/2012,02/23/2008 -RSCC Member ," 70th Representative District, Subdistrict B ",,,,LA,,,,"""Al"" Krotoski",11620 Rue de Tonti,,Baton Rouge,LA,70810,225-769-7496,W,M,R,062,02/23/2012,02/23/2008 -RSCC Member ," 70th Representative District, Subdistrict C ",,,,LA,,,,Dan Kyle,818 Woodleigh Dr.,,Baton Rouge,LA,70810,225-978-1455,W,M,R,062,02/23/2012,02/23/2008 -RSCC Member ," 70th Representative District, Subdistrict D ",,,,LA,,,,Craig Lindsay,9832 Ginger Place Dr.,,Baton Rouge,LA,70817,225-756-0685,W,M,R,062,02/23/2012,02/23/2008 -RSCC Member ," 71st Representative District, Subdistrict A ",,,,LA,,,,"Robert W. ""Bob"" Morgan",232 Third St.,,Denham Springs,LA,70726,225-223-2144,W,M,R,062,02/23/2012,02/23/2008 -RSCC Member ," 71st Representative District, Subdistrict B ",,,,LA,,,,James Tullier,27300 Tullier Ln.,,Denham Springs,LA,70726,225-664-7063,W,M,R,062,02/23/2012,02/23/2008 -RSCC Member ," 71st Representative District, Subdistrict C ",,,,LA,,,,Gerald L. Burns,28630 Juban Road,,Denham Springs,LA,70726,225-664-3463,W,M,R,062,02/23/2012,02/23/2008 -RSCC Member ," 72nd Representative District, Subdistrict A ",,,,LA,,,,,,,,,,,,,,062 -RSCC Member ," 72nd Representative District, Subdistrict B ",,,,LA,,,,Adonica Duggan,13881 Morning Glory,,Norwood,LA,70761,,,,,062,,06/07/2008,Ms. Duggan -RSCC Member ," 73rd Representative District, Subdistrict A ",,,,LA,,,,"""Mike"" Whitlow",P. O. Box 636,,Ponchatoula,LA,70454,985-386-3873,W,M,R,062,02/23/2012,02/23/2008 -RSCC Member ," 73rd Representative District, Subdistrict B ",,,,LA,,,,George R. Holton,44260 Easy St.,,Hammond,LA,70403,985-345-6085,,,R,062,02/23/2012,02/23/2008 -RSCC Member ," 73rd Representative District, Subdistrict C ",,,,LA,,,,Frank Schneider,41317 Rue Chene,,Ponchatoula,LA,70454,225-414-0069,W,M,R,062,02/23/2012,02/23/2008 -RSCC Member ," 74th Representative District, Subdistrict A ",,,,LA,,,,Scott Simon,P. O. Box 38,,Abita Springs,LA,70420,985-630-4834,,,R,062,02/23/2012,02/23/2008,Mr. Simon -RSCC Member ," 74th Representative District, Subdistrict B ",,,,LA,,,,Christopher David Trahan,18621 Hosmer Mill Rd.,,Covington,LA,70435-7625,985-264-7573,W,M,R,062,02/23/2012,02/23/2008 -RSCC Member ," 74th Representative District, Subdistrict C ",,,,LA,,,,,,,,,,,,,,062 -RSCC Member ," 75th Representative District, Subdistrict A ",,,,LA,,,,,,,,,,,,,,062 -RSCC Member ," 75th Representative District, Subdistrict B ",,,,LA,,,,"Conrad ""Chip"" McVea",1022 Needle Rd.,,Franklinton,LA,70438,985-839-5500,W,M,R,062,02/23/2012,02/23/2008 -RSCC Member ," 76th Representative District, Subdistrict A ",,,,LA,,,,"""Ray"" Canada",P. O. Box 264,,Slidell,LA,70459-0264 ,985-640-0266,W,M,R,062,02/23/2012,02/23/2008 -RSCC Member ," 76th Representative District, Subdistrict B ",,,,LA,,,,Lee Balinas,2049 Old River Rd.,,Slidell,LA,70461,985-445-8037,W,M,R,062,02/23/2012,02/23/2008 -RSCC Member ," 76th Representative District, Subdistrict C ",,,,LA,,,,Renee McWaters,300 Military Rd. Apt 29,,Slidell,LA,70431,985-640-8152,,,,062,,08/29/2009,Ms. McWaters -RSCC Member ," 76th Representative District, Subdistrict D ",,,,LA,,,,"""A. G."" Crowe",201 Crowe Landing Rd.,,Pearl River,LA,70452,985-788-9772,W,M,R,062,02/23/2012,02/23/2008 -RSCC Member ," 77th Representative District, Subdistrict A ",,,,LA,,,,"Matthew ""Matt"" Faust",602 Phyllis Dr.,,Covington,LA,70433,985-893-3740,W,M,R,062,02/23/2012,02/23/2008 -RSCC Member ," 77th Representative District, Subdistrict B ",,,,LA,,,,Lester P. Dore,70280 First St.,,Covington,LA,70433,504-905-5365,W,M,R,062,02/23/2012,02/23/2008 -RSCC Member ," 77th Representative District, Subdistrict C ",,,,LA,,,,Sandra Bailey-Simmons,49366 Ravenwood Dr.,,Loranger,LA,70446,985-345-4562,W,F,R,062,02/23/2012,02/23/2008 -RSCC Member ," 77th Representative District, Subdistrict D ",,,,LA,,,,Suzanne Crow,135 Tchefuncta South Dr.,,Covington,LA,70433-7809,985-792-1362,,,R,062,02/23/2012,02/23/2008 -RSCC Member ," 78th Representative District, Subdistrict A ",,,,LA,,,,Paul D. Johnston,1408 N Cumberland St.,,Metairie,LA,70003,504-305-5311,W,M,R,062,02/23/2012,02/23/2008 -RSCC Member ," 78th Representative District, Subdistrict B ",,,,LA,,,,"John ""Big John"" Illg",1308 Trudeau Dr.,,Metairie,LA,70003,504-469-6884,W,M,R,062,02/23/2012,02/23/2008 -RSCC Member ," 78th Representative District, Subdistrict C ",,,,LA,,,,Stewart Lagarde,331 Midway Dr.,,River Ridge,LA,70123,504-737-7405,W,M,R,062,02/23/2012,02/23/2008 -RSCC Member ," 78th Representative District, Subdistrict D ",,,,LA,,,,Paul D. Johnston,525 Kenmore Dr.,,Harahan,LA,70123,504-737-4345,W,M,R,062,02/23/2012,02/23/2008 -RSCC Member ," 79th Representative District, Subdistrict A ",,,,LA,,,,"Edmond J. ""Ed"" Muniz",P. O. Box 641275,,Kenner,LA,70065,504-466-5958,W,M,R,062,02/23/2012,02/23/2008 -RSCC Member ," 79th Representative District, Subdistrict B ",,,,LA,,,,Betty Bonura,1009 Chateau Lafitte Dr.,,Kenner,LA,70065,504-467-7402,W,F,R,062,02/23/2012,02/23/2008 -RSCC Member ," 79th Representative District, Subdistrict C ",,,,LA,,,,"""Debbie"" Settoon",5321 Toby Lane,,Kenner,LA,70065,,W,F,R,062,02/23/2012,02/23/2008 -RSCC Member ," 79th Representative District, Subdistrict D ",,,,LA,,,,Archie Corder,5501 W. Esplanade Ave.,,Metairie,LA,70003,504-455-9864,W,M,R,062,02/23/2012,02/23/2008 -RSCC Member ," 80th Representative District, Subdistrict A ",,,,LA,,,,"Vinson J. ""Vince"" Serio",4416 West Esplanade Ave.,,Metairie,LA,70006,504-885-6382,W,M,R,062,02/23/2012,02/23/2008 -RSCC Member ," 80th Representative District, Subdistrict B ",,,,LA,,,,Lynn E. Skidmore,3207 Belmont Pl. Apt. 210,,Metairie,LA,70002,504-780-1788,W,F,R,062,02/23/2012,02/23/2008 -RSCC Member ," 80th Representative District, Subdistrict C ",,,,LA,,,,"Joseph P. Lopinto, Jr.",1608 Green Ave.,,Metairie,LA,70001,504-454-6178,W,M,R,062,02/23/2012,02/23/2008 -RSCC Member ," 81st Representative District, Subdistrict A ",,,,LA,,,,Charlotte P. Ruiz,4612 Richland Ave.,,Metairie,LA,70002,504-887-8992,W,F,R,062,02/23/2012,02/23/2008 -RSCC Member ," 81st Representative District, Subdistrict B ",,,,LA,,,,"Roger F. Villere, Jr.",838 Aurora Ave.,,Metairie,LA,70005,504-830-4505,W,M,R,062,02/23/2012,02/23/2008 -RSCC Member ," 81st Representative District, Subdistrict C ",,,,LA,,,,John S. Treen,112 Charleston Park,,Metairie,LA,70005,504-835-6936,W,M,R,062,02/23/2012,02/23/2008 -RSCC Member ," 81st Representative District, Subdistrict D ",,,,LA,,,,Monica L. Monica,411 Betz Pl.,,Metairie,LA,70005,504-832-0608,W,F,R,062,02/23/2012,02/23/2008 -RSCC Member ," 82nd Representative District, Subdistrict A ",,,,LA,,,,Keith Rush,1004 Green Acres Rd.,,Metairie,LA,70003,504-888-7718,W,M,R,062,02/23/2012,02/23/2008 -RSCC Member ," 82nd Representative District, Subdistrict B ",,,,LA,,,,Daniel Shanks,7 Pats Pl.,,Metairie,LA,70001,504-975-4601,W,M,R,062,02/23/2012,02/23/2008 -RSCC Member ," 82nd Representative District, Subdistrict C ",,,,LA,,,,Bruce P. Donnelly,3922 Audubon Trace,,Jefferson,LA,70121,504-453-1598,W,M,R,062,02/23/2012,02/23/2008 -RSCC Member ," 83rd Representative District, Subdistrict A ",,,,LA,,,,George A. Peterson,233 Modern Farms Rd.,,Waggaman,LA,70094,504-431-0144,W,M,R,062,02/23/2012,02/23/2008 -RSCC Member ," 83rd Representative District, Subdistrict B ",,,,LA,,,,Danyelle Taylor,617 Vic St.,,Westwego,LA,70094,504-347-3840,W,F,R,062,02/23/2012,02/23/2008 -RSCC Member ," 84th Representative District, Subdistrict A ",,,,LA,,,,Rickey J. Ullo,1705 Winchester Pl.,,Harvey,LA,70058,504-348-9787,W,M,R,062,02/23/2012,02/23/2008 -RSCC Member ," 84th Representative District, Subdistrict B ",,,,LA,,,,"Constance ""Connie"" Forstater",2628 Oak Forest Blvd.,,Marrero,LA,70072,,W,F,R,062,02/23/2012,02/23/2008 -RSCC Member ," 85th Representative District, Subdistrict A ",,,,LA,,,,Keith B. Hall,8 Willow Dr.,,Gretna,LA,70053,504-366-2632,W,M,R,062,02/23/2012,02/23/2008 -RSCC Member ," 85th Representative District, Subdistrict B ",,,,LA,,,,"""Billy"" Arnold",2283 S. Von Braun Ct.,,Harvey,LA,70058,504-368-4292,W,M,R,062,02/23/2012,02/23/2008 -RSCC Member ," 86th Representative District, Subdistrict A ",,,,LA,,,,"Wallace Lucas, Sr.",2505 Park Pl.,,Terrytown,LA,70056,504-251-9888,B,M,R,062,02/23/2012,02/23/2008 -RSCC Member ," 86th Representative District, Subdistrict B ",,,,LA,,,,Paul Richard,10 Annandale Ct.,,New Orleans,LA,70131,504-394-5056,W,M,R,062,02/23/2012,02/23/2008 -RSCC Member , 87th Representative District ,,,,LA,,,,"Robert ""Bob"" Muniz",3720 Burntwood Dr.,,Harvey,LA,70058,504-347-2516,W,M,R,062,02/23/2012,02/23/2008 -RSCC Member ," 88th Representative District, Subdistrict A ",,,,LA,,,,"""Chip"" McCorkle",16254 Ole Homestead Ln.,,,LA,70769,225-622-1687,W,M,R,062,02/23/2012,02/23/2008 -RSCC Member ," 88th Representative District, Subdistrict B ",,,,LA,,,,Floyd Gonzalez,14112 Forest Glen Ln.,,Walker,LA,70785,225-664-4169,W,M,R,062,02/23/2012,02/23/2008 -RSCC Member ," 88th Representative District, Subdistrict C ",,,,LA,,,,,,,,,,,,,,062 -RSCC Member ," 88th Representative District, Subdistrict D ",,,,LA,,,,,,,,,,,,,,062 -RSCC Member ," 89th Representative District, Subdistrict A ",,,,LA,,,,Jan McAllister,224 Queen Anne Dr.,,Slidell,LA,70460,,,,,062,,06/07/2008 -RSCC Member ," 89th Representative District, Subdistrict B ",,,,LA,,,,"""Betty"" Viener",204 Evangeline Dr.,,Mandeville,LA,70471,985-845-2500,,F,R,062,02/23/2012,02/23/2008 -RSCC Member ," 89th Representative District, Subdistrict C ",,,,LA,,,,Lorraine Peterson,245 Lake Vista Dr.,,Mandeville,LA,70471-8207,985-626-5588,W,F,R,062,02/23/2012,02/23/2008 -RSCC Member ," 89th Representative District, Subdistrict D ",,,,LA,,,,Jonathon James,65570 Mulberry St.,,Mandeville,LA,70448,,,,,062,,06/07/2008 -RSCC Member ," 89th Representative District, Subdistrict E ",,,,LA,,,,Malcolm B. Sonnier,1625 Penrose St.,,Mandeville,LA,70448,985-626-9721,W,M,R,062,02/23/2012,02/23/2008 -RSCC Member ," 90th Representative District, Subdistrict A ",,,,LA,,,,"Thomas ""Rocky"" Thompson",217 Windward Passage St.,,Slidell,LA,70458-9132,985-285-1767,W,M,R,062,02/23/2012,02/23/2008 -RSCC Member ," 90th Representative District, Subdistrict B ",,,,LA,,,,,,,,,,,,,,062 -RSCC Member ," 90th Representative District, Subdistrict C ",,,,LA,,,,Randy Lawshe,38204 Joan Dr.,,Pearl River,LA,70452-3504,985-778-5582,W,F,R,062,02/23/2012,02/23/2008 -RSCC Member ," 90th Representative District, Subdistrict D ",,,,LA,,,,John O'Neil,134 Kingston Dr.,,Slidell,LA,70458,985-646-2054,W,M,R,062,02/23/2012,02/23/2008 -RSCC Member , 91st Representative District ,,,,LA,,,,"John Musser, V",1218 Napoleon Ave.,,New Orleans,LA,70115,504-899-4411,W,M,R,062,02/23/2012,02/23/2008 -RSCC Member ," 92nd Representative District, Subdistrict A ",,,,LA,,,,Michael J. McMyne,3229 Roosevelt,,Kenner,LA,70065,504-352-1700,W,M,R,062,02/23/2012,02/23/2008 -RSCC Member ," 92nd Representative District, Subdistrict B ",,,,LA,,,,"Arthur ""Art"" Tudela",1609 Hudson St.,,Kenner,LA,70062,504-466-2159,W,M,R,062,02/23/2012,02/23/2008 -RSCC Member , 93rd Representative District ,,,,LA,,,,"Joseph ""Joe"" Lavigne","700 S. Peters St, #202",,New Orleans,LA,70130,504-524-1880,W,M,R,062,02/23/2012,02/23/2008 -RSCC Member ," 94th Representative District, Subdistrict A ",,,,LA,,,,"John ""Jay"" Batt, Jr.",230 Carondelet St.,,New Orleans,LA,70130,504-528-1073,W,M,R,062,02/23/2012,02/23/2008 -RSCC Member ," 94th Representative District, Subdistrict B ",,,,LA,,,,Sal Palmisano,3135 De Saix Blvd.,,New Orleans,LA,70119,504-858-3137,W,M,R,062,02/23/2012,02/23/2008 -RSCC Member ," 94th Representative District, Subdistrict C ",,,,LA,,,,"Emile ""Peppi"" Bruneau",6979 Argonne Blvd.,,New Orleans,LA,70124,504-288-1200,W,M,R,062,02/23/2012,02/23/2008 -RSCC Member , 95th Representative District ,,,,LA,,,,David Toso,15 Audubon Blvd.,,New Orleans,LA,70118,504-621-3283,W,M,R,062,02/23/2012,02/23/2008 -RSCC Member , 96th Representative District ,,,,LA,,,,Stephen M. Swain,1129 Bourbon St.,,New Orleans,LA,70116,504-523-7047,,M,R,062,02/23/2012,02/23/2008 -RSCC Member , 97th Representative District ,,,,LA,,,,Lloyd A. Harsch,4337 Seminary Pl.,,New Orleans,LA,70126,817-733-0260,W,M,R,062,02/23/2012,02/23/2008 -RSCC Member ," 98th Representative District, Subdistrict A ",,,,LA,,,,"John ""Fenn"" French",230 Carondelet St.,,New Orleans,LA,70130,504-593-9953,W,M,R,062,02/23/2012,02/23/2008 -RSCC Member ," 98th Representative District, Subdistrict B ",,,,LA,,,,David Kepper,2715 Calhoun St.,,New Orleans,LA,70118,504-582-4632,W,M,R,062,02/23/2012,02/23/2008 -RSCC Member , 99th Representative District ,,,,LA,,,,,,,,,,,,,,062 -RSCC Member ,100th Representative District ,,,,LA,,,,Lynn D. Cawthorne,1511 Oakdale St.,,Shreveport,LA,71108,,,,,062,,03/16/2009 -RSCC Member ,101st Representative District ,,,,LA,,,,Meryl B. Duroncelet,7220 Lake Willow Dr.,,New Orleans,LA,70126,504-439-2812,,F,R,062,02/23/2012,02/23/2008 -RSCC Member ,102nd Representative District ,,,,LA,,,,Irene Burrus,2820 Bristol Pl.,,New Orleans,LA,70131,504-392-1449,W,F,R,062,02/23/2012,02/23/2008 -RSCC Member ,"103rd Representative District, Subdistrict A ",,,,LA,,,,"Anh ""Joseph"" Cao",4371 Murano Rd.,,New Orleans,LA,70129,504-368-0491,O,M,R,062,02/23/2012,02/23/2008 -RSCC Member ,"103rd Representative District, Subdistrict B ",,,,LA,,,,Michael Bayham,212 W. St. Jean Baptist St.,,Chalmette,LA,70044,504-258-4467,W,M,R,062,02/23/2012,02/23/2008 -RSCC Member ,"104th Representative District, Subdistrict A ",,,,LA,,,,Therese Melerine Benit,2129 Valmar Dr.,,Meraux,LA,70075,504-271-2844,W,F,R,062,02/23/2012,02/23/2008 -RSCC Member ,"104th Representative District, Subdistrict B ",,,,LA,,,,David Peralta,4408 Newport Dr.,,Meraux,LA,70075,504-220-7334,W,M,R,062,02/23/2012,02/23/2008 -RSCC Member ,"105th Representative District, Subdistrict A ",,,,LA,,,,"""Jeff"" DiMarco",232 Bergeron Dr.,,Belle Chasse,LA,70037,504-812-4009,W,M,R,062,02/23/2012,02/23/2008 -RSCC Member ,"105th Representative District, Subdistrict B ",,,,LA,,,,Louise Broach Fischer,106 Beaupre Dr.,,Luling,LA,70070,985-785-2819,W,F,R,062,02/23/2012,02/23/2008 -Governor ,,P.O. Box 94004,,Baton Rouge,LA,70804-9004,504-342-7015,,Bobby Jindal,P.O. Box 94004,,Baton Rouge,LA,70804,225-756-7969,O,M,R,100,01/09/2012,01/14/2008,Governor Jindal -Lieutenant Governor ,,P.O. Box 44243,,Baton Rouge,LA,70804-4243,504-342-7009,,Mitch Landrieu,P.O. Box 44243,,Baton Rouge,LA,70804-4243,504-837-0770,W,M,D,105,01/09/2012,01/14/2008,Mr. Landrieu -Secretary of State ,,P.O. Box 94125,,Baton Rouge,LA,70804-9125,225-342-4479,,Jay Dardenne,P.O. Box 94125,,Baton Rouge,LA,70804-9125,225-926-7555,W,M,R,110,01/09/2012,01/14/2008,Mr. Dardenne -Attorney General ,,P. O. Box 94005,,Baton Rouge,LA,70804-9005,225-326-6000,,"James D. ""Buddy"" Caldwell",P. O. Box 94005,,Baton Rouge,LA,70804-9005,318-574-1706,W,M,D,115,01/09/2012,01/14/2008,Mr. Caldwell -State Treasurer ,,P.O. Box 44154,,Baton Rouge,LA,70804-0154 ,504-342-0010,,John Neely Kennedy,P.O. Box 44154,,Baton Rouge,LA,70804-0154 ,985-845-0056,W,M,R,120,01/09/2012,01/14/2008,Mr. Kennedy -Commissioner ,Department of Agriculture and Forestry ,P.O. Box 631,,Baton Rouge,LA,70821-0631 ,225-922-1234,,Mike Strain,P.O. Box 631,,Baton Rouge,LA,70821-0631 ,985-893-1935,W,M,R,125,01/09/2012,01/14/2008,Mr. Strain -Commissioner ,Department of Insurance ,P.O. Box 94214,,Baton Rouge,LA,70804-9214,225-342-5900,,James J. Donelon,P.O. Box 94214,,Baton Rouge,LA,70804-9214,504-455-6503,W,M,R,130,01/09/2012,01/14/2008,Mr. Donelon -U. S. Senator ,,"2800 Veterans Blvd, Ste. 201, Metairie, LA 70002-Vitter",,500 Poydras St.,LA,,,,Mary Landrieu,"500 Poydras St., Rm. 105",,New Orleans,LA,70130,504-589-2427,W,F,D,140,01/03/2015,01/03/2009,Senator Landrieu -U. S. Senator ,,"2800 Veterans Blvd, Ste. 201, Metairie, LA 70002-Vitter",,500 Poydras St.,LA,,,,David Vitter,"2800 Veterans Blvd., Ste. 201",,Metairie,LA,70002,504-589-2753,,,R,140,01/03/2011,01/03/2005,Senator Vitter -U. S. Representative ,1st Congressional District ,"3525 North Causeway Blvd., Ste. 1020",,Metairie,LA,70002,504-837-1259,,"""Steve"" Scalise","3525 North Causeway Blvd., Ste. 1020",,Metairie,LA,70002,504-831-3105,W,M,R,145,01/03/2011,01/03/2009,Congressman Scalise -U. S. Representative ,2nd Congressional District ,"501 Magazine St., Ste. 1012",,New Orleans,LA,70130,504-589-2274,,"Anh ""Joseph"" Cao",4640 South Carrollton Ave. Ste. 120,,New Orleans,LA,70119,504-483-2325,O,M,R,145,01/03/2011,01/03/2009,Congressman Cao -U. S. Representative ,3rd Congressional District ,"828 S. Irma Blvd., Ste. 107",,Gonzales,LA,70737,225-621-8490,,"""Charlie"" Melancon",P. O. Box 549,,Napoleonville,LA,70390,985-369-7785,W,M,D,145,01/03/2011,01/03/2009,Congressman Melancon -U. S. Representative ,4th Congressional District ,"6425 Youree Dr., Ste. 350",,Shreveport,LA,71105,318-798-2254,,John Fleming,"6425 Youree Dr., Ste. 350",,Shreveport,LA,71105,318-377-7464,W,M,R,145,01/03/2011,01/03/2009,Congressman Fleming -U. S. Representative ,5th Congressional District ,"1900 Stubbs Ave., Ste. B",,Monroe,LA,71201,318-322-3500,,Rodney Alexander,"1900 Stubbs Ave., Ste. B",,Monroe,LA,71201,318-259-4587,W,M,R,145,01/03/2011,01/03/2009,Congressman Alexander -U. S. Representative ,6th Congressional District ,"5555 Hilton Ave., Ste. 100",,Baton Rouge,LA,70808,225-929-7711,,"William ""Bill"" Cassidy","5555 Hilton Ave., Ste. 100",,Baton Rouge,LA,70808,225-387-2455,W,M,R,145,01/03/2011,01/03/2009,Congressman Cassidy -U. S. Representative ,7th Congressional District ,"800 Lafayette St., Ste. 1400",,Lafayette,LA,70501,337-235-6322,,"Charles W. Boustany, Jr.","800 Lafayette St., Ste. 1400",,Lafayette,LA,70501,337-993-3829,W,M,R,145,01/03/2011,01/03/2009,Congressman Boustany -Associate Justice ,1st Supreme Court District of Louisiana ,"400 Royal St., Ste. 4200",,New Orleans,LA,70130,504-310-2300,,Greg Guidry,300 Normandy Dr.,,Nine Mile Point,LA,70094,504-436-3711,W,M,R,150,12/31/2018,01/01/2009,Justice Guidry -Associate Justice ,2nd Supreme Court District of Louisiana ,"400 Royal St., Ste. 4200",,New Orleans,LA,70130,504-310-2300,,Jeffrey P. Victory,244 Wedgewood Dr.,,Shreveport,LA,71105,318-227-3710,W,M,R,150,12/31/2014,01/01/2005,Judge Victory -Associate Justice ,3rd Supreme Court District of Louisiana ,"400 Royal St., Ste. 4200",,New Orleans,LA,70130,504-310-2300,,Jeannette Theriot Knoll,148 Tarleton St.,,Marksville,LA,71351,318-253-9735,W,F,D,150,12/31/2016,01/01/2007,Judge Knoll -Associate Justice ,4th Supreme Court District of Louisiana ,"400 Royal St., Ste. 4200",,New Orleans,LA,70130,504-310-2300,,Marcus R. Clark,360 Harrell Rd.,,West Monroe,LA,71291,318-361-2296,W,M,R,150,12/31/2016,10/27/2009,Justice Clark -Associate Justice ,5th Supreme Court District of Louisiana ,"400 Royal St., Ste. 4200",,New Orleans,LA,70130,504-310-2300,,"Catherine D. ""Kitty"" Kimball",7836 Bennett Dr.,,Ventress,LA,70783,225-638-7405,W,F,D,150,12/31/2018,01/01/2009,Justice Kimball -Associate Justice ,6th Supreme Court District of Louisiana ,"400 Royal St., Ste. 4200",,New Orleans,LA,70130,504-310-2300,,John L. Weimer,H762 Hwy. 308,,Thibodaux,LA,70301,985-447-9066,W,M,D,150,12/31/2012,01/01/2003,Justice Weimer -Associate Justice ,7th Supreme Court District of Louisiana ,"400 Royal St., Ste. 4200",,New Orleans,LA,70130,504-310-2300,,Bernette Joshua Johnson,#6 Park Timbers Dr.,,New Orleans,LA,70131,504-393-0902,B,F,D,150,12/31/2010,01/01/2001,Justice Johnson -"Judge, Court of Appeal ","1st Cir., 2nd Dist., Subdist. 1, Div. A ",1600 N. Third St.,,Baton Rouge,LA,70802,225-382-3000,,"""Bob"" Downing",2933 Twelve Oaks Ave.,,Baton Rouge,LA,70820,225-389-4706,,,D,155,12/31/2010,01/01/2001,Judge Downing -"Judge, Court of Appeal ","1st Cir., 2nd Dist., Subdist. 1, Div. B ",1600 N. Third St.,,Baton Rouge,LA,70802,225-382-3000,,"""Mike"" McDonald",8742 Trinity Ave.,,Baton Rouge,LA,70806,225-389-4722,W,M,R,155,12/31/2012,01/01/2003,Judge McDonald -"Judge, Court of Appeal ","1st Cir., 2nd Dist., Subdist. 1, Div. C ",1600 N. Third St.,,Baton Rouge,LA,70802,225-382-3000,,"Jewel E. ""Duke"" Welch",412 Rue Douceur,,Baker,LA,70714,225-774-1649,W,M,R,155,12/31/2014,01/01/2005,Judge Welch -"Judge, Court of Appeal ","1st Cir., 2nd Dist., Subdist. 2, Div. D ",1600 N. Third St.,,Baton Rouge,LA,70802,225-382-3000,,John Michael Guidry,5722 Congress Blvd.,,Baton Rouge,LA,70808,225-927-6275,B,M,D,155,12/31/2010,01/01/2002,Judge Guidry -"Judge, Court of Appeal ","1st Circuit, 1st District, Division A ",1600 N. Third St.,,Baton Rouge,LA,70802,225-382-3000,,John T. Pettigrew,115 McAllen Dr.,,Houma,LA,70360,985-972-3522,W,M,D,155,12/31/2018,01/01/2009,Judge Pettigrew -"Judge, Court of Appeal ","1st Circuit, 1st District, Division B ",1600 N. Third St.,,Baton Rouge,LA,70802,225-382-3000,,"Edward J. ""Jimmy"" Gaidry",P. O. Box 1916,,Houma,LA,70364,985-876-0559,W,M,D,155,12/31/2012,01/01/2003,Mr. Gaidry -"Judge, Court of Appeal ","1st Circuit, 1st District, Division C ",1600 N. Third St.,,Baton Rouge,LA,70802,225-382-3000,,"Randolph ""Randy"" Parro",P.O. Box 5177,,Thibodaux,LA,70302,985-447-2185,W,M,D,155,12/31/2014,01/01/2005,Judge Parro -"Judge, Court of Appeal ","1st Circuit, 1st District, Division D ",1600 N. Third St.,,Baton Rouge,LA,70802,225-382-3000,,Vanessa Guidry-Whipple,P. O. Drawer 2667,,Houma,LA,70361,985-876-4034,W,F,D,155,12/31/2012,01/01/2003,Judge Guidry-Whipple -"Judge, Court of Appeal ","1st Circuit, 3rd District, Division A ",1600 N. Third St.,,Baton Rouge,LA,70802,225-382-3000,,"James E. ""Jimmy"" Kuhn",253 West Oak St.,,Ponchatoula,LA,70454,985-386-6082,W,M,R,155,12/31/2014,01/01/2005,Judge Kuhn -"Judge, Court of Appeal ","1st Circuit, 3rd District, Division B ",1600 N. Third St.,,Baton Rouge,LA,70802,225-382-3000,,Page McClendon,807 Tops'l Dr.,,Mandeville,LA,70448,985-674-7717,W,F,R,155,12/31/2012,01/01/2003,Judge McClendon -"Judge, Court of Appeal ","1st Circuit, 3rd District, Division C ",1600 N. Third St.,,Baton Rouge,LA,70802,225-382-3000,,Jefferson Davis Hughes,P.O. Box 453,,Walker,LA,70785,225-665-7238,W,M,R,155,12/31/2014,01/01/2005,Judge Hughes -"Judge, Court of Appeal ","1st Circuit, 3rd District, Division D ",1600 N. Third St.,,Baton Rouge,LA,70802,225-382-3000,,Burrell J. Carter,P. O. Box 309,,Greensburg,LA,70441,225-342-7251,W,M,D,155,12/31/2012,01/01/2003,Judge Carter -"Judge, Court of Appeal ","2nd Circuit, 1st Dist., Elec. Sect. 1C ",430 Fannin St.,,Shreveport,LA,71101,318-227-3700,,Felicia Toney Williams,P. O. Box 111,,Tallulah,LA,71284-0111 ,318-574-3994,B,F,D,155,12/31/2012,01/01/2003,Judge Williams -"Judge, Court of Appeal ","2nd Circuit, 1st Dist., Elec. Sect. 2A ",430 Fannin St.,,Shreveport,LA,71101,318-227-3700,,John Larry Lolley,2409 Pargoud Blvd.,,Monroe,LA,71201-2326,318-325-0291,W,M,D,155,12/31/2018,01/01/2009,Judge Lolley -"Judge, Court of Appeal ","2nd Circuit, 1st Dist., Elec. Sect. 2B ",430 Fannin St.,,Shreveport,LA,71101,318-227-3700,,Milton Moore,1404 Fairview Ave.,,Monroe,LA,71201,318-322-2147,W,M,D,155,12/31/2012,01/01/2003,Judge Moore -"Judge, Court of Appeal ","2nd Circuit, 2nd Dist, At-Large ",430 Fannin St.,,Shreveport,LA,71101,318-227-3700,,James Jay Caraway,121 Dover Ct.,,Bossier City,LA,71111,318-746-6649,W,M,D,155,12/31/2016,01/01/2007,Judge Caraway -"Judge, Court of Appeal ","2nd Circuit, 2nd Dist., Elec. Sec. 1 ",430 Fannin St.,,Shreveport,LA,71101,318-227-3700,,"R. Harmon Drew, Jr.",1002 Broadway St.,,Minden,LA,71055-3313,318-377-6289,W,M,D,155,12/31/2018,01/01/2009,Judge Drew -"Judge, Court of Appeal ","2nd Circuit, 2nd Dist., Elec. Sec. 2 ",430 Fannin St.,,Shreveport,LA,71101,318-227-3700,,"Henry N. Brown, Jr.",2606 Village Ln.,,Bossier City,LA,71112,318-746-6382,W,M,D,155,12/31/2010,01/01/2001,Judge Brown -"Judge, Court of Appeal ","2nd Circuit, 3rd Dist., Elec. Sect. 1A ",430 Fannin St.,,Shreveport,LA,71101,318-227-3700,,"James E. Stewart, Sr.",430 Fannin St.,,Shreveport,LA,71101,318-227-3740,B,M,D,155,12/31/2014,01/01/2005,Judge Stewart -"Judge, Court of Appeal ","2nd Circuit, 3rd Dist., Elec. Sect. 2B ",430 Fannin St.,,Shreveport,LA,71101,318-227-3700,,Charles B. Peatross,P. O. Box 1528,,Shreveport,LA,71165,318-227-3750,W,M,D,155,12/31/2012,01/01/2003,Judge Peatross -"Judge, Court of Appeal ","2nd Circuit, 3rd Dist., Elec. Sect. 2C ",430 Fannin St.,,Shreveport,LA,71101,318-227-3700,,Gay Gaskins,P.O. Box 1528,,Shreveport,LA,71165,318-227-3770,W,F,R,155,12/31/2010,01/01/2001,Judge Gaskins -"Judge, Court of Appeal ","3rd Circuit, 1st District, Division A ",1000 Main St.,,Lake Charles,LA,70601,318-433-9403,,Elizabeth A. Pickett,P. O. Box 70,,Many,LA,71449,318-256-4180,W,F,D,155,12/31/2012,01/01/2003,Judge Pickett -"Judge, Court of Appeal ","3rd Circuit, 1st District, Division B ",1000 Main St.,,Lake Charles,LA,70601,318-433-9403,,Jimmie C. Peters,P.O. Box 1380,,Jena,LA,71342,318-992-2663,W,M,D,155,12/31/2016,01/01/2007,Judge Peters -"Judge, Court of Appeal ","3rd Circuit, 1st District, Division C ",1000 Main St.,,Lake Charles,LA,70601,318-433-9403,,Shannon James Gremillion,4721 Collinsburg Dr.,,Alexandria,LA,71303,318-487-8672,W,M,D,155,12/31/2016,11/14/2008,Mr. Gremillion -"Judge, Court of Appeal ","3rd Circuit, 2nd Dist., Elec. Sect. 1C ",1000 Main St.,,Lake Charles,LA,70601,318-433-9403,,Ulysses Gene Thibodeaux,3910 Marie Ct.,,Lake Charles,LA,70607,337-474-5123,B,M,D,155,12/31/2010,01/01/2001,Judge Thibodeaux -"Judge, Court of Appeal ","3rd Circuit, 2nd Dist., Elec. Sect. 2A ",1000 Main St.,,Lake Charles,LA,70601,318-433-9403,,Joseph David Painter,1001 9th St.,,Lake Charles,LA,70601,337-433-8861,W,M,D,155,12/31/2014,01/01/2005,Judge Painter -"Judge, Court of Appeal ","3rd Circuit, 2nd Dist., Elec. Sect. 2B ",1000 Main St.,,Lake Charles,LA,70601,318-433-9403,,Billy H. Ezell,P. O. Box 16577,,Lake Charles,LA,70766,337-433-8833,W,M,R,155,12/31/2012,01/01/2003,Justice Ezell -"Judge, Court of Appeal ","3rd Circuit, 3rd Dist., Elec. Sect. 1C ",1000 Main St.,,Lake Charles,LA,70601,318-433-9403,,John Saunders,P. O. Box 566,,Ville Platte,LA,70586,337-363-5620,W,M,D,155,12/31/2012,01/01/2003,Judge Saunders -"Judge, Court of Appeal ","3rd Circuit, 3rd Dist., Elec. Sect. 2D ",1000 Main St.,,Lake Charles,LA,70601,318-433-9403,,Sylvia R. Cooks,P. O. Box 3841,,Lafayette,LA,70502,337-235-2196,B,F,D,155,12/31/2012,01/01/2003,Judge Cooks -"Judge, Court of Appeal ","3rd Circuit, 3rd Dist., Elec. Sect. 3E ",1000 Main St.,,Lake Charles,LA,70601,318-433-9403,,Oswald Decuir,702 Pintail Ln.,,New Iberia,LA,70560,337-369-3540,W,M,D,155,12/31/2012,01/01/2003,Judge Decuir -"Judge, Court of Appeal ","3rd Circuit, 3rd Dist., Elec. Sect. 4F ",1000 Main St.,,Lake Charles,LA,70601,318-433-9403,,Marc Amy,1007 W. St. Mary St.,,Abbeville,LA,70510,337-893-0270,,,D,155,12/31/2018,01/01/2009,Judge Amy -"Judge, Court of Appeal ","3rd Circuit, 3rd Dist., Elec. Sect. 5A ",1000 Main St.,,Lake Charles,LA,70601,318-433-9403,,"David Ellis Chatelain, ",100 East Vermilion,,Lafayette,LA,70501,,,,,155,,01/04/2010,Judge Chatelain -"Judge, Court of Appeal ","3rd Circuit, 3rd District, Division B ",1000 Main St.,,Lake Charles,LA,70601,318-433-9403,,"""Jimmy"" Genovese",145 Aspen Ln.,,Opelousas,LA,70570,337-942-4240,W,M,D,155,12/31/2014,01/01/2005,Judge Genovese -"Judge, Court of Appeal ",4th Circuit at Large ,410 Royal St.,,New Orleans,LA,70130,504-412-6001,,Roland L. Belsome,734 Crystal St.,,New Orleans,LA,70124,504-283-0811,W,M,D,155,12/31/2011,03/23/2004,Judge Belsome -"Judge, Court of Appeal ",4th Circuit at Large ,410 Royal St.,,New Orleans,LA,70130,504-412-6001,,"James F. McKay, III",410 Royal St.,,New Orleans,LA,70130-2199,504-592-0929,W,M,D,155,12/31/2012,01/01/2003,Judge McKay -"Judge, Court of Appeal ","4th Circuit, 1st District, Division A ",410 Royal St.,,New Orleans,LA,70130,504-412-6001,,Edwin A. Lombard,6200 Oxford Pl.,,New Orleans,LA,70131,504-394-3876,,,D,155,12/31/2012,01/01/2003,Judge Lombard -"Judge, Court of Appeal ","4th Circuit, 1st District, Division B ",410 Royal St.,,New Orleans,LA,70130,504-412-6001,,Paul A. Bonin,4224 Canal St.,,New Orleans,LA,70119,504-586-0064,,,D,155,12/31/2012,07/21/2008,Judge Bonin -"Judge, Court of Appeal ","4th Circuit, 1st District, Division C ",410 Royal St.,,New Orleans,LA,70130,504-412-6001,,"Dennis R. Bagneris, Sr.",4415 Franklin Ave.,,New Orleans,LA,70122,504-412-6000,B,M,D,155,12/31/2018,01/01/2009,Judge Bagneris -"Judge, Court of Appeal ","4th Circuit, 1st District, Division D ",410 Royal St.,,New Orleans,LA,70130,504-412-6001,,"Max N. Tobias, Jr.",P.O. Box 51509,,New Orleans,LA,70151,504-412-6074,W,M,D,155,12/31/2016,01/01/2007,Judge Tobias -"Judge, Court of Appeal ","4th Circuit, 1st District, Division E ",410 Royal St.,,New Orleans,LA,70130,504-412-6001,,Terri Love,5809 Canal Blvd.,,New Orleans,LA,70124,504-412-6068,B,F,D,155,12/31/2014,01/01/2005,Judge Love -"Judge, Court of Appeal ","4th Circuit, 1st District, Division F ",410 Royal St.,,New Orleans,LA,70130,504-412-6001,,"""Pattie"" Murray",140 Royal St.,,New Orleans,LA,70130,504-392-1060,W,F,D,155,12/31/2011,01/01/2002,Judge Murray -"Judge, Court of Appeal ","4th Circuit, 1st District, Division G ",410 Royal St.,,New Orleans,LA,70130,504-412-6001,,Joan Bernard Armstrong,4701 Lafon Dr.,,New Orleans,LA,70126,504-241-5155,B,F,D,155,12/31/2011,01/01/2002,Judge Armstrong -"Judge, Court of Appeal ","4th Circuit, 1st District, Division H ",410 Royal St.,,New Orleans,LA,70130,504-412-6001,,Charles R. Jones,6301 Parish Ave.,,New Orleans,LA,70122,504-282-4504,B,M,D,155,12/31/2012,01/01/2003,Judge Jones -"Judge, Court of Appeal ","4th Circuit, 2nd District, Division A ",410 Royal St.,,New Orleans,LA,70130,504-412-6001,,"Michael E. ""Mike"" Kirby",P.O. Box 340,,Empire,LA,70050,504-657-5037,W,M,D,155,12/31/2011,01/01/2002,Judge Kirby -"Judge, Court of Appeal ","4th Circuit, 3rd District, Division A ",410 Royal St.,,New Orleans,LA,70130,504-412-6001,,David S. Gorbaty,2509 Pakenham Dr.,,Chalmette,LA,70043,504-279-0752,W,M,D,155,12/31/2010,01/01/2001,Judge Gorbaty -"Judge, Court of Appeal ","5th Circuit, 1st Dist., Elec. Sect. 2C ",101 Derbigny St.,,Gretna,LA,70053,504-376-1400,,Marc E. Johnson,2214 Rev. Richard Wilson Dr.,,Kenner,LA,70062,504-464-0803,B,M,D,155,12/31/2014,04/14/2009,Judge Johnson -"Judge, Court of Appeal ","5th Circuit, 1st District, Division B ",101 Derbigny St.,,Gretna,LA,70053,504-376-1400,,Fredericka Homberg Wicker,2600 Labarre Lane,,Metairie,LA,70001,504-831-9070,W,F,R,155,12/31/2010,02/01/2006,Judge Wicker -"Judge, Court of Appeal ","5th Circuit, 1st District, Division D ",101 Derbigny St.,,Gretna,LA,70053,504-376-1400,,Susan M. Chehardy,318 Citrus Rd.,,River Ridge,LA,70123,504-738-0857,W,F,R,155,12/31/2012,01/01/2003,Judge Chehardy -"Judge, Court of Appeal ","5th Circuit, 1st District, Division E ",101 Derbigny St.,,Gretna,LA,70053,504-376-1400,,Marion F. Edwards,4951 Authur Ln.,,Barataria,LA,70036,504-689-3056,W,M,D,155,12/31/2012,01/01/2003,Judge Edwards -"Judge, Court of Appeal ","5th Circuit, 1st District, Division F ",101 Derbigny St.,,Gretna,LA,70053,504-376-1400,,"Walter J. ""Wally"" Rothschild",4413 Ferran Dr.,,Metairie,LA,70002-3131,504-885-3088,W,M,R,155,12/31/2012,01/01/2003,Judge Rothschild -"Judge, Court of Appeal ","5th Circuit, 1st District, Division G ",101 Derbigny St.,,Gretna,LA,70053,504-376-1400,,Clarence E. McManus,824 Bonnabel Blvd.,,Metairie,LA,70005,504-833-5475,W,M,R,155,12/31/2012,01/01/2003,Judge McManus -"Judge, Court of Appeal ","5th Circuit, 2nd District, Division A ",101 Derbigny St.,,Gretna,LA,70053,504-376-1400,,Jude G. Gravois,P. O. Box 67,,Vacherie,LA,70090,225-265-3923,W,M,D,155,12/31/2010,04/14/2009,Judge Gravois -"Judge, Court of Appeal ","5th Circuit, 3rd District, Division A ",101 Derbigny St.,,Gretna,LA,70053,504-376-1400,,"Edward A. Dufresne, Jr.",14041 River Rd.,,Luling,LA,70070,985-785-6233,W,M,D,155,12/31/2012,01/01/2003,Judge Dufresne -Public Service Commission,District 1 ,P. O. Box 91154,,Baton Rouge,LA,70821-9154,225-342-4404,,Eric Skrmetta,P. O. Box 55896,,Metairie,LA,70055,504-650-0642,W,M,R,160,12/31/2014,01/01/2009,Mr. Skrmetta -Public Service Commission,District 2 ,P. O. Box 91154,,Baton Rouge,LA,70821-9154,225-342-4404,,Jimmy Field,8743 W. Fairway Dr.,,Baton Rouge,LA,70809,225-925-5262,W,M,R,160,12/31/2012,01/01/2007,Mr. Field -Public Service Commission,District 3 ,P. O. Box 91154,,Baton Rouge,LA,70821-9154,225-342-4404,,"Lambert C. Boissiere, III",2910 Castiglione St.,,New Orleans,LA,70119,504-949-0789,B,M,D,160,12/31/2010,01/01/2005,Mr. Boissiere -Public Service Commission,District 4 ,P. O. Box 91154,,Baton Rouge,LA,70821-9154,225-342-4404,,Clyde C. Holloway,P.O. Box 340,,Forest Hill,LA,71430,318-748-6803,W,M,R,160,12/31/2010,04/15/2009,Mr. Holloway -Public Service Commission,District 5 ,P. O. Box 91154,,Baton Rouge,LA,70821-9154,225-342-4404,,Foster Campbell,1800 Jimmie Davis Hwy.,,Bossier City,LA,71112,318-746-2078,W,M,D,160,12/31/2014,01/01/2009,Mr. Campbell -"Member, BESE ",District 1 ,P.O. Box 94064,,Baton Rouge,LA,70804-9064,225-342-5840,,"James ""Jim"" Garvey",4800 Beau Lac Ln.,,Metairie,LA,70002,504-304-7755,W,M,R,165,01/09/2012,01/14/2008,Mr. Garvey -"Member, BESE ",District 2 ,P.O. Box 94064,,Baton Rouge,LA,70804-9064,225-342-5840,,Louella P. Givens,2248 11 St.,,Mandeville,LA,70448,985-892-6300,B,F,D,165,01/09/2012,01/14/2008,Ms. Givens -"Member, BESE ",District 3 ,P.O. Box 94064,,Baton Rouge,LA,70804-9064,225-342-5840,,Glenny Lee C. Buquet,1309 Bayou Black Dr.,,Houma,LA,70360,985-876-5216,W,F,D,165,01/09/2012,01/14/2008,Mr. Buquet -"Member, BESE ",District 4 ,P.O. Box 94064,,Baton Rouge,LA,70804-9064,225-342-5840,,Walter C. Lee,2007 Urbandale St.,,Shreveport,LA,71118,318-686-8394,W,M,D,165,01/09/2012,01/14/2008,Mr. Lee -"Member, BESE ",District 5 ,P.O. Box 94064,,Baton Rouge,LA,70804-9064,225-342-5840,,Keith Guice,2307 Valencia Blvd.,,Monroe,LA,71201,318-388-0973,W,M,D,165,01/09/2012,01/14/2008,Mr. Guice -"Member, BESE ",District 6 ,P.O. Box 94064,,Baton Rouge,LA,70804-9064,225-342-5840,,"Charles E. ""Chas"" Roemer",6837 Rue Bocage,,Baton Rouge,LA,70809,225-925-0451,W,M,R,165,01/09/2012,01/14/2008,Mr. Roemer -"Member, BESE ",District 7 ,P.O. Box 94064,,Baton Rouge,LA,70804-9064,225-342-5840,,Dale Bayard,P.O. Box 5674,,Lake Charles,LA,70606,337-477-9494,W,M,D,165,01/09/2012,01/14/2008,Mr. Bayard -"Member, BESE ",District 8 ,P.O. Box 94064,,Baton Rouge,LA,70804-9064,225-342-5840,,Linda M. Johnson,AP.O. Box 866,,Plaquemine,LA,70765,225-687-2308,B,F,D,165,01/09/2012,01/14/2008,Ms. Johnson -State Senator, 1st Senatorial District,P. O. Box 94183,,Baton Rouge,LA,70804,225-342-2040,,A. G. Crowe,201 Crowes Landing Rd.,,Pearl River,LA,70452-3712,985-788-9772,W,M,R,200,01/09/2012,01/14/2008,Sen. Crowe -State Senator , 2nd Senatorial District ,P. O. Box 94183,,Baton Rouge,LA,70804,225-342-2040,,Ann Duplessis,130 W. Greenbier Dr.,,New Orleans,LA,70128,504-243-5149,B,F,D,200,01/09/2012,01/14/2008,Senator Duplessis -State Senator , 3rd Senatorial District ,P. O. Box 94183,,Baton Rouge,LA,70804,225-342-2040,,"""J.P."" Morrell",4645 Music St.,,New Orleans,LA,70122,504-286-2334,B,M,D,200,01/09/2012,12/16/2008,Senator Morrell -State Senator , 4th Senatorial District ,P. O. Box 94183,,Baton Rouge,LA,70804,225-342-2040,,Edwin Murray,1540 N. Broad St.,,New Orleans,LA,70119,504-945-0042,B,M,D,200,01/09/2012,01/14/2008,Sen. Murray -State Senator , 5th Senatorial District ,P. O. Box 94183,,Baton Rouge,LA,70804,225-342-2040,,"Karen Carter Peterson, ",547 Baronne St. #205,,New Orleans,LA,70113-3901,504-309-3538,B,F,D,200,01/09/2012,02/17/2010 -State Senator , 6th Senatorial District ,P. O. Box 94183,,Baton Rouge,LA,70804,225-342-2040,,Julie Quinn,419 Northline,,Metairie,LA,70005,504-219-4640,W,F,R,200,01/09/2012,01/14/2008,Sen. Quinn -State Senator , 7th Senatorial District ,P. O. Box 94183,,Baton Rouge,LA,70804,225-342-2040,,David Heitmeier,32 Kings Canyon,,New Orleans,LA,70131,504-394-0131,W,M,D,200,01/09/2012,01/14/2008,Senator Heitmeier -State Senator , 8th Senatorial District ,P. O. Box 94183,,Baton Rouge,LA,70804,225-342-2040,,"John A. Alario, Jr.",469 Vine Dr.,,Westwego,LA,70094,504-340-2221,W,M,D,200,01/09/2012,01/14/2008,Sen. Alario -State Senator , 9th Senatorial District ,P. O. Box 94183,,Baton Rouge,LA,70804,225-342-2040,,Conrad Appel,3832 Edenborn Ave.,,Metairie,LA,70002,504-887-6026,W,M,R,200,01/09/2012,11/14/2008,Mr. Appel -State Senator ,10th Senatorial District ,P. O. Box 94183,,Baton Rouge,LA,70804,225-342-2040,,"Daniel R. ""Danny"" Martiny",622 Carmenere Dr.,,Kenner,LA,70065,504-464-9045,W,M,R,200,01/09/2012,01/14/2008,Sen Martiny -State Senator ,11th Senatorial District ,P. O. Box 94183,,Baton Rouge,LA,70804,225-342-2040,,"""Jack"" Donahue",123 Maple Ridge Way,,Covington,LA,70433,985-612-1034,W,M,R,200,01/09/2012,01/14/2008,Sen Donahue -State Senator ,12th Senatorial District ,P. O. Box 94183,,Baton Rouge,LA,70804,225-342-2040,,Ben Wayne Nevers,61596 Little Southern Village,,Bogalusa,LA,70427,985-732-4062,W,M,D,200,01/09/2012,01/14/2008,Senator Nevers -State Senator ,13th Senatorial District ,P. O. Box 94183,,Baton Rouge,LA,70804,225-342-2040,,Dale Erdey,19875 McLin Rd.,,Livingston,LA,70754,225-686-7405,W,M,R,200,01/09/2012,01/14/2008,Senator Erdey -State Senator ,14th Senatorial District ,P. O. Box 94183,,Baton Rouge,LA,70804,225-342-2040,,Yvonne Dorsey,"1520 Thomas Delpit Dr., Ste. 226",,Baton Rouge,LA,70802,225-342-9700,B,F,D,200,01/09/2012,01/14/2008,Senator Dorsey -State Senator ,15th Senatorial District ,P. O. Box 94183,,Baton Rouge,LA,70804,225-342-2040,,Sharon Weston Broome,P.O. Box 52783,,Baton Rouge,LA,70892,225-275-7995,B,F,D,200,01/09/2012,01/14/2008,Sen Broome -State Senator ,16th Senatorial District ,P. O. Box 94183,,Baton Rouge,LA,70804,225-342-2040,,"""Dan"" Claitor",7520 Perkins Rd. Ste. 170,,Baton Rouge,LA,70808,225-757-0159,W,M,R,200,01/09/2012,04/14/2009,Senator Claitor -State Senator ,17th Senatorial District ,P. O. Box 94183,,Baton Rouge,LA,70804,225-342-2040,,"Robert ""Rob"" Marionneaux","19540 Hwy., #77",,Grosse Tete,LA,70740,225-648-3115,W,M,D,200,01/09/2012,01/14/2008,Sen Marionneaux -State Senator ,18th Senatorial District ,P. O. Box 94183,,Baton Rouge,LA,70804,225-342-2040,,"""Jody"" Amedee",42418 Clouatre Rd.,,Gonzales,LA,70737,225-675-6661,W,M,D,200,01/09/2012,01/14/2008,Senator Amedee -State Senator ,19th Senatorial District ,P. O. Box 94183,,Baton Rouge,LA,70804,225-342-2040,,"Joel T. Chaisson, II",1 Ormond Trace,,Destrehan,LA,70047,985-764-9596,W,M,D,200,01/09/2012,01/14/2008,Senator Chaisson -State Senator ,20th Senatorial District ,P. O. Box 94183,,Baton Rouge,LA,70804,225-342-2040,,Norbert N. Chabert,P. O. Box 517,,Chauvin,LA,70344,985-594-5024,W,M,D,200,01/09/2012,09/09/2009,Senator Chabert -State Senator ,21st Senatorial District ,P. O. Box 94183,,Baton Rouge,LA,70804,225-342-2040,,"""Butch"" Gautreaux",714 Second St.,,Morgan City,LA,70380-3609,985-380-2433,W,M,D,200,01/09/2012,01/14/2008,Sen Gautreaux -State Senator ,22nd Senatorial District ,P. O. Box 94183,,Baton Rouge,LA,70804,225-342-2040,,Troy Hebert,"800 S. Lewis St., Ste. 203",,New Iberia,LA,70560,337-276-6564,W,M,D,200,01/09/2012,01/14/2008,Senator Hebert -State Senator ,23rd Senatorial District ,P. O. Box 94183,,Baton Rouge,LA,70804,225-342-2040,,"""Mike"" Michot",130 Acacia Dr.,,Lafayette,LA,70508,337-237-0987,W,M,R,200,01/09/2012,01/14/2008,Senator Michot -State Senator ,24th Senatorial District ,P. O. Box 94183,,Baton Rouge,LA,70804,225-342-2040,,Elbert L. Guillory,633 E. Landry,,Opelousas,LA,70570,337-945-1702,B,M,D,200,01/09/2012,05/12/2009,Senator Guillory -State Senator ,25th Senatorial District ,P. O. Box 94183,,Baton Rouge,LA,70804,225-342-2040,,"Dan ""Blade"" Morrish",3042 Englewood Dr.,,Jennings,LA,70546,337-824-1286,W,M,R,200,01/09/2012,01/14/2008,Senator Morrish -State Senator ,26th Senatorial District ,P. O. Box 94183,,Baton Rouge,LA,70804,225-342-2040,,"""Nick"" Gautreaux",209 E. St. Victor,,Abbeville,LA,70510,337-319-0085,W,M,D,200,01/09/2012,01/14/2008,Sen Gautreaux -State Senator ,27th Senatorial District ,P. O. Box 94183,,Baton Rouge,LA,70804,225-342-2040,,Willie L. Mount,P.O. Box 3004,,Lake Charles,LA,70602,337-433-0569,W,F,D,200,01/09/2012,01/14/2008,Senator Mount -State Senator ,28th Senatorial District ,P. O. Box 94183,,Baton Rouge,LA,70804,225-342-2040,,Eric LaFleur,P.O. Box 607,,Ville Platte,LA,70586,337-363-6211,W,M,D,200,01/09/2012,01/14/2008,Senator LaFleur -State Senator ,29th Senatorial District ,P. O. Box 94183,,Baton Rouge,LA,70804,225-342-2040,,"""Joe"" McPherson",2000 Maison Rue,,Woodworth,LA,71485,318-445-0350,W,M,D,200,01/09/2012,01/14/2008,Sen McPherson -State Senator ,30th Senatorial District ,P. O. Box 94183,,Baton Rouge,LA,70804,225-342-2040,,John Smith,6 Live Oak Dr.,,Leesville,LA,71446,337-239-2541,W,M,D,200,01/09/2012,01/14/2008,Senator Smith -State Senator ,31st Senatorial District ,P. O. Box 94183,,Baton Rouge,LA,70804,225-342-2040,,Gerald Long,P.O. Box 1181,,Natchitoches,LA,71458,318-628-5799,W,M,R,200,01/09/2012,01/14/2008,Sen Long -State Senator ,32nd Senatorial District ,P. O. Box 94183,,Baton Rouge,LA,70804,225-342-2040,,Neil Riser,297 Hearn Island Dr.,,Columbia,LA,71418,318-649-2457,W,M,R,200,01/09/2012,01/14/2008,Senator Riser -State Senator ,33rd Senatorial District ,P. O. Box 94183,,Baton Rouge,LA,70804,225-342-2040,,"""Mike"" Walsworth",511 Comanche Trail,,West Monroe,LA,71291,318-614-0336,W,M,R,200,01/09/2012,01/14/2008,Sen Walsworth -State Senator ,34th Senatorial District ,P. O. Box 94183,,Baton Rouge,LA,70804,225-342-2040,,Francis Thompson,P.O. Box 322,,Delhi,LA,71232,318-878-5612,W,M,D,200,01/09/2012,01/14/2008,Sen Thompson -State Senator ,35th Senatorial District ,P. O. Box 94183,,Baton Rouge,LA,70804,225-342-2040,,"Robert W. ""Bob"" Kostelka",2111 Maywood,,Monroe,LA,71201,318-323-7591,W,M,R,200,01/09/2012,01/14/2008,Senator Kostelka -State Senator ,36th Senatorial District ,P. O. Box 94183,,Baton Rouge,LA,70804,225-342-2040,,Robert Adley,611 Jessie Jones Dr.,,Benton,LA,71006-4247,318-965-1755,W,M,R,200,01/09/2012,01/14/2008,Sen Adley -State Senator ,37th Senatorial District ,P. O. Box 94183,,Baton Rouge,LA,70804,225-342-2040,,"B. L. ""Buddy"" Shaw",956 Ontario St.,,Shreveport,LA,71106-1151,318-861-5941,W,M,R,200,01/09/2012,01/14/2008,Senator Shaw -State Senator ,38th Senatorial District ,P. O. Box 94183,,Baton Rouge,LA,70804,225-342-2040,,Sherri Smith Cheek,2109 Chase Cove,,Shreveport,LA,71118-4610,318-687-4891,W,,R,200,01/09/2012,01/14/2008,Sen Cheek -State Senator ,39th Senatorial District ,P. O. Box 94183,,Baton Rouge,LA,70804,225-342-2040,,Lydia P. Jackson,108 Plano St.,,Shreveport,LA,71103-2055,318-424-1234,B,F,D,200,01/09/2012,01/14/2008,Senator Jackson -State Representative , 1st Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,"James H. ""Jim"" Morris",P.O. Box 217,,Oil City,LA,71061,318-378-4710,W,M,R,205,01/09/2012,01/14/2008,Mr. Morris -State Representative , 2nd Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,Roy A. Burrell,2613 Lakeway Dr.,,Shreveport,LA,71109,318-635-4967,B,M,D,205,01/09/2012,01/14/2008,Mr. Burrell -State Representative , 3rd Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,Barbara Norton,3821 Morrow St.,,Shreveport,LA,71109,318-635-2923,B,,D,205,01/09/2012,01/14/2008,Ms. Norton -State Representative , 4th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,Patrick C. Williams,609 Texas St.,,Shreveport,LA,71101-3511,318-518-7535,B,M,D,205,01/09/2012,01/14/2008,Mr. Williams -State Representative , 5th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,Wayne Waddell,3221 Green Terrace Rd.,,Shreveport,LA,71118-2921,318-687-5319,W,M,R,205,01/09/2012,01/14/2008,Representative Waddell -State Representative , 6th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,"Thomas Gaughan Carmody, Jr.",440 Albert Ave.,,Shreveport,LA,71105,318-865-5471,W,,R,205,01/09/2012,02/20/2008,Representative Carmody -State Representative , 7th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,"Richard ""Richie"" Burford",P. O. Box 599,,Stonewall,LA,71078,318-925-0949,W,M,R,205,01/09/2012,01/14/2008,Mr. Burford -State Representative , 8th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,Jane H. Smith,106 Cambridge Cir.,,Bossier City,LA,71111-2278,318-742-3898,W,F,R,205,01/09/2012,01/14/2008,Ms. Smith -State Representative , 9th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,Henry Burns,134 Chimney Ln.,,Haughton,LA,71037-9207,318-949-9115,W,M,R,205,01/09/2012,01/14/2008,Mr. Burns -State Representative , 10th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,Jean Doerge,700 Nella St.,,Minden,LA,71055,318-377-2803,W,F,D,205,01/09/2012,01/14/2008,Ms. Doerge -State Representative , 11th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,"""Rick"" Gallot",P.O. Box 1117,,Ruston,LA,71273,318-251-1020,B,M,D,205,01/09/2012,01/14/2008,Mr. Gallot -State Representative , 12th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,Hollis Downs,143 Downs Rd.,,Ruston,LA,71270,318-247-6411,W,M,R,205,01/09/2012,01/14/2008,Representative Downs -State Representative , 13th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,"James R. ""Jim"" Fannin",568 Taylor Rd.,,Jonesboro,LA,71251,318-259-4535,W,M,D,205,01/09/2012,01/14/2008,Mr. Fannin -State Representative , 14th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,"""Sam"" Little",13492 Cooper Lake Rd.,,Bastrop,LA,71220,318-281-7960,W,M,R,205,01/09/2012,01/14/2008 -State Representative , 15th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,Frank Hoffmann,139 Comanche Trail,,West Monroe,LA,71291,318-396-2930,W,M,R,205,01/09/2012,01/14/2008,Mr. Hoffman -State Representative , 16th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,Kay Kellogg Katz,2905 Lamy Cir.,,Monroe,LA,71201,318-387-7728,W,F,R,205,01/09/2012,01/14/2008,Ms. Katz -State Representative , 17th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,Rosalind D. Jones,1803 Medra Dr.,,Monroe,LA,71202,318-322-7990,B,F,D,205,01/09/2012,01/14/2008,Ms. Jones -State Representative , 18th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,Major Thibaut,"2004 False River Dr., Ste. B",,New Roads,LA,70760,225-638-3000,W,M,D,205,01/09/2012,11/14/2008,Rep. Thibaut -State Representative , 19th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,"Charles R. ""Bubba"" Chaney",73 Pecan Dr.,,Rayville,LA,71269,318-728-3421,W,M,D,205,01/09/2012,01/14/2008,Mr. chaney -State Representative , 20th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,Noble Ellington,4272 Front St.,,Winnsboro,LA,71295,318-435-0049,W,M,D,205,01/09/2012,01/14/2008,Mr. Ellington -State Representative , 21st Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,"""Andy"" Anders",1499 Indian Village Rd.,,Clayton,LA,71326,318-757-6684,W,M,D,205,01/09/2012,01/14/2008,Mr. Anders -State Representative , 22nd Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,Billy Chandler,P.O. Box 100,,Dry Prong,LA,71423,318-899-5884,W,M,D,205,01/09/2012,01/14/2008,Mr. Chandler -State Representative , 23rd Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,"""Rick"" Nowlin",1005 Williams Ave.,,Natchitoches,LA,71457,318-357-1183,W,M,R,205,01/09/2012,01/14/2008,Mr. Nowlin -State Representative , 24th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,"""Frankie"" Howard",P. O. Box 10,,Hornbeck,LA,71439,318-565-4433,W,M,R,205,01/09/2012,01/14/2008,Mr. Howard -State Representative , 25th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,"Chris J. Roy, Jr.",P. O. Box 11774,,Alexandria,LA,71315-1774,318-767-6095,W,M,D,205,01/09/2012,01/14/2008,Mr. Roy -State Representative , 26th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,Herbert B. Dixon,P.O. Box 1203,,Alexandria,LA,71309,318-443-8274,B,M,D,205,01/09/2012,01/14/2008,Mr. Dixon -State Representative , 27th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,"""Chris"" Hazel",5930 Adrian Dr.,,Ball,LA,71405,318-641-7769,W,M,R,205,01/09/2012,01/14/2008,Mr. Hazel -State Representative , 28th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,Robert Johnson,P. O. Box 468,,Marksville,LA,71351,318-253-0935,W,M,D,205,01/09/2012,01/14/2008,Mr. Johnson -State Representative , 29th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,Regina Ashford Barrow,6512 Vineyard Dr.,,Baton Rouge,LA,70812,225-359-9586,B,F,D,205,01/09/2012,01/14/2008,Ms. Barrow -State Representative , 30th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,James Armes,181 Country Club Ln.,,Leesville,LA,71446,337-239-7437,W,M,D,205,01/09/2012,01/14/2008,Mr. Armes -State Representative , 31st Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,Nancy Landry,4503 Johnston St.,,Lafayette,LA,70503,337-280-2139,W,F,R,205,01/09/2012,11/14/2008,Rep. Landry -State Representative , 32nd Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,Dorothy Sue Hill,529 Tramel Rd.,,Dry Creek,LA,70637-5018,337-639-2341,W,F,D,205,01/09/2012,01/14/2008,Ms. Hill -State Representative , 33rd Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,"""Mike"" Danahay",23 Poinsetta Rd.,,Sulphur,LA,70663,337-625-9046,W,M,D,205,01/09/2012,01/14/2008,Representative Danahay -State Representative , 34th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,"""A. B."" Franklin",2406 Elaine St.,,Lake Charles,LA,70601,337-439-2897,B,M,D,205,01/09/2012,01/14/2008,Mr. Franklin -State Representative , 35th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,Brett Geymann,4832 Cypress Lake Dr.,,Lake Charles,LA,70611,337-855-9224,W,M,R,205,01/09/2012,01/14/2008,Representative Geymann -State Representative , 36th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,"""Chuck"" Kleckley",4836 Portrush Dr.,,Lake Charles,LA,70605,337-477-2673,W,M,R,205,01/09/2012,01/14/2008,Representative Kleckley -State Representative , 37th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,"John E. ""Johnny"" Guinn",515 13th St.,,Jennings,LA,70546,337-824-7210,W,M,R,205,01/09/2012,01/14/2008,Mr. Guinn -State Representative , 38th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,H. Bernard LeBas,P.O. Box 370,,Ville Platte,LA,70586,337-363-3456,W,M,D,205,01/09/2012,01/14/2008,Representative LeBas -State Representative , 39th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,Bobby G. Badon,P. O. Box 184,,Carencro,LA,70520,337-896-8740,W,M,D,205,01/09/2012,01/14/2008,Mr. Badon -State Representative , 40th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,Ledricka Johnson Thierry,512 Sapphire St.,,Opelousas,LA,70570,337-942-4733,B,F,D,205,01/09/2012,09/09/2009,Representative Thierry -State Representative , 41st Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,Mickey J. Guillory,516 Rozas Rd.,,Eunice,LA,70535,337-457-0194,W,M,D,205,01/09/2012,01/14/2008,Representative Guillory -State Representative , 42nd Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,Jack Montoucet,123 Credeur Rd.,,Scott,LA,70583,337-873-3087,W,M,D,205,01/09/2012,01/14/2008,Mr. Montoucet -State Representative , 43rd Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,"""Page"" Cortez","1720 Kaliste Saloom Road, Ste. D-4",,Lafayette,LA,70508,337-993-0603,W,M,R,205,01/09/2012,01/14/2008,Mr. Cortez -State Representative , 44th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,Rickey Hardy,339 Cooper Dr.,,Lafayette,LA,70501-1711,337-269-9346,B,M,D,205,01/09/2012,01/14/2008,Mr. Hardy -State Representative , 45th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,Joel C. Robideaux,101 Ruth Dr.,,Lafayette,LA,70506,337-989-2984,W,M,,205,01/09/2012,01/14/2008,Representative Robideaux -State Representative , 46th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,"Fred H. Mills, Jr.",4711-A Main Hwy.,,St. Martinville,LA,70582,337-332-3475,W,M,D,205,01/09/2012,01/14/2008,Rep. Mills -State Representative , 47th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,Jonathan Perry,312 Abshire Dr.,,Kaplan,LA,70548,337-643-2057,,,R,205,01/09/2012,01/14/2008,Rep. Perry -State Representative , 48th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,Taylor F. Barras,705 Oak Manor Dr.,,New Iberia,LA,70563,337-369-3995,W,M,D,205,01/09/2012,01/14/2008,Mr. Barras -State Representative , 49th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,Simone Champagne,206 Virginia St.,,Jeanerette,LA,70544,337-276-6540,W,F,D,205,01/09/2012,01/14/2008,Representative Champagne -State Representative , 50th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,Sam Jones,1501 Sterling Rd.,,Franklin,LA,70538-3836,337-828-1530,W,M,D,205,01/09/2012,01/14/2008,Mr. Jones -State Representative , 51st Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,"""Joe"" Harrison",3239 Hwy. 308,,Napoleonville,LA,70390,985-526-8434,W,M,R,205,01/09/2012,01/14/2008,Mr. Harrison -State Representative , 52nd Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,Gordon Dove,5 Glen Oaks Dr.,,Houma,LA,70360-6078,985-876-8823,W,M,R,205,01/09/2012,01/14/2008,Representative Dove -State Representative , 53rd Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,Damon Baldone,162 New Orleans Blvd.,,Houma,LA,70364-3344,985-868-3427,W,M,D,205,01/09/2012,01/14/2008,Rep. Baldone -State Representative , 54th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,"Jerry ""Truck"" Gisclair",P. O. Box 1350,,Larose,LA,70373,985-693-3826,W,M,D,205,01/09/2012,01/14/2008,Mr. Gisclair -State Representative , 55th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,"Jerome ""Dee"" Richard",416 Plater Dr.,,Thibodaux,LA,70301,985-447-6033,W,M,,205,01/09/2012,01/14/2008,Mr. Richard -State Representative , 56th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,"Gary L. Smith, Jr.",P.O. Box 189,,Norco,LA,70079,985-764-9122,W,M,D,205,01/09/2012,01/14/2008,Rep. Smith -State Representative , 57th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,Nickie Monica,298 Doral Ln.,,LaPlace,LA,70068,985-651-9008,W,M,R,205,01/09/2012,01/14/2008,Mr. Monica -State Representative , 58th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,Elton M. Aubert,2740 S. Bank Ln.,,Vacherie,LA,70090,225-265-2577,B,M,D,205,01/09/2012,01/14/2008,Mr. Aubert -State Representative , 59th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,Eddie J. Lambert,P.O. Box 88,,Gonzales,LA,70707,225-647-9788,W,M,R,205,01/09/2012,01/14/2008,Representative Lambert -State Representative , 60th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,Karen St. Germain,3413 Hwy. 70,,Pierre Part,LA,70339,985-252-9017,W,F,D,205,01/09/2012,01/14/2008,Representative St. Germain -State Representative , 61st Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,Michael Jackson,"606 N. Foster Dr., Ste. A-214",,Baton Rouge,LA,70806,225-342-0774,B,M,D,205,01/09/2012,01/14/2008,Mr. Jackson -State Representative , 62nd Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,"Thomas H. ""Tom"" McVea",P.O. Box 249,,St. Francisville,LA,70775,225-635-3005,W,M,R,205,01/09/2012,01/14/2008,Rep. McVea -State Representative , 63rd Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,Avon Honey,8776 Scenic Hwy.,,Baton Rouge,LA,70807,225-771-5674,B,M,D,205,01/09/2012,01/14/2008,Representative Honey -State Representative , 64th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,"Mack ""Bodi"" White, Jr.",P.O. Box 854,,Watson,LA,70786,225-261-3903,W,M,R,205,01/09/2012,01/14/2008,Mr. White -State Representative , 65th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,"""Clif"" Richardson",12025 Sullivan Rd.,,Baton Rouge,LA,70818,225-262-1600,W,M,R,205,01/09/2012,01/14/2008,Mr. Richardson -State Representative , 66th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,Hunter Greene,12203 Lake Sherwood Ave. N.,,Baton Rouge,LA,70816,225-927-9455,W,M,R,205,01/09/2012,01/14/2008,Representative Greene -State Representative , 67th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,Patricia Smith,P. O. Box 2701,,Baton Rouge,LA,70821,225-381-8317,B,F,D,205,01/09/2012,01/14/2008,Ms. Smith -State Representative , 68th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,"""Steve"" Carter",P. O. Box 14808,,Baton Rouge,LA,70898,225-216-2421,W,M,R,205,01/09/2012,01/14/2008,Mr. Carter -State Representative , 69th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,Erich Ponti,1445 Thibodeaux Ave.,,Baton Rouge,LA,70806,225-927-9069,W,M,R,205,01/09/2012,01/14/2008,Mr. Ponti -State Representative , 70th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,Franklin J. Foil,426 W. Woodgate Ct.,,Baton Rouge,LA,70808,225-382-3264,W,M,R,205,01/09/2012,01/14/2008,Mr. Foil -State Representative , 71st Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,J. Rogers Pope,P. O. Box 555,,Denham Springs,LA,70727,225-664-4068,W,M,R,205,01/09/2012,01/14/2008,Mr. Pope -State Representative , 72nd Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,John Bel Edwards,P. O. Box 1495,,Amite,LA,70422,985-747-1088,W,M,D,205,01/09/2012,01/14/2008,Mr. Edwards -State Representative , 73rd Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,"""Steve"" Pugh",P. O. Box 2473,,Ponchatoula,LA,70454,985-386-7844,W,M,R,205,01/09/2012,01/14/2008,Mr. Pugh -State Representative , 74th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,Scott Simon,P. O. Box 1297,,Abita Springs,LA,70420,985-630-4834,W,M,R,205,01/09/2012,01/14/2008,Mr. Simon -State Representative , 75th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,Harold L. Ritchie,25255 Hwy. 62,,Franklinton,LA,70438,985-848-5558,W,M,D,205,01/09/2012,01/14/2008,Representative Ritchie -State Representative , 76th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,Kevin Pearson,P. O. Box 398,,Slidell,LA,70459,985-290-3586,W,M,R,205,01/09/2012,01/14/2008,Mr. Pearson -State Representative , 77th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,John M. Schroder,819 W. 13th Ave.,,Covington,LA,70433,985-875-2147,W,M,R,205,01/09/2012,01/14/2008,Mr. Schroder -State Representative , 78th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,Kirk Talbot,"9523 Jefferson Hwy.,Ste. B",,River Ridge,LA,70123,504-737-9598,W,M,R,205,01/09/2012,01/14/2008,Mr. Talbot -State Representative , 79th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,"""Tony"" Ligi",5216 Senac Dr.,,Metairie,LA,70003,504-455-8050,W,M,R,205,01/09/2012,01/14/2008,Mr. Ligi -State Representative , 80th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,Joseph Lopinto,2016 Persimmon Ave.,,Metairie,LA,70001,504-455-8173,W,M,R,205,01/09/2012,01/14/2008,Rep. Lopinto -State Representative , 81st Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,"John F. Labruzzo, Jr.",1427 Choctaw Ave.,,Metairie,LA,70005,504-838-4449,W,M,R,205,01/09/2012,01/14/2008,Representative Labruzzo -State Representative , 82nd Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,Cameron Henry,400 Central Ave.,,Jefferson,LA,70121,504-483-7737,W,M,R,205,01/09/2012,01/14/2008,Rep. Henry -State Representative , 83rd Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,Robert E. Billiot,341 Ave. C,,Westwego,LA,70094,504-347-7424,W,M,D,205,01/09/2012,01/14/2008,Mr. Billiot -State Representative , 84th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,Patrick Connick,720 Fos Ave.,,Harvey,LA,70058,504-347-6157,W,M,R,205,01/09/2012,01/14/2008,Representative Connick -State Representative , 85th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,Ricky J. Templet,150 Linda Ct.,,Gretna,LA,70053,504-382-6832,W,M,R,205,01/09/2012,01/14/2008,Rep. Templet -State Representative , 86th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,"""Jim"" Tucker",732 Berhman Hwy. Ste. C-2,,Terrytown,LA,70056,504-393-5646,W,M,R,205,01/09/2012,01/14/2008,Representative Tucker -State Representative , 87th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,"Girod Jackson, III",1528 Haydel St.,,Marrero,LA,70072,504-382-4435,B,M,D,205,01/09/2012,01/14/2008,Representative Jackson -State Representative , 88th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,"M.J. ""Mert"" Smiley, Jr.",14464 L. Keller Rd.,,St. Amant,LA,70774,225-622-1300,W,M,R,205,01/09/2012,01/14/2008,Representative Smiley -State Representative , 89th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,"""Tim"" Burns",1501 Madison St.,,Mandeville,LA,70448,985-373-3939,W,M,R,205,01/09/2012,01/14/2008,Representative Burns -State Representative , 90th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,"""Greg"" Cromer",P.O. Box 2088,,Slidell,LA,70459,985-640-0865,W,M,R,205,01/09/2012,01/14/2008,Representative Cromer -State Representative , 91st Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,"""Walt"" Leger, III",2320 Laurel St.,,New Orleans,LA,70130,504-636-1395,W,M,D,205,01/09/2012,01/14/2008,Mr. Leger -State Representative , 92nd Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,"""Tom"" Willmott",3209 Kansas Ave,,Kenner,LA,70065,504-443-6182,W,M,R,205,01/09/2012,01/14/2008,Mr. Willmott -State Representative , 93rd Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,Karen Carter,"920 Poeyfarre St., Unit 316",,New Orleans,LA,70130,504-568-8346,B,F,D,205,01/09/2012,01/14/2008,Rep. Carter -State Representative , 94th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,"Nicholas J. ""Nick"" Lorusso",1133 Robert E. Lee Blvd.,,New Orleans,LA,,504-282-4001,W,M,R,205,01/09/2012,01/14/2008,Mr. Lorusso -State Representative , 95th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,Walker Hines,100 Audubon Blvd.,,New Orleans,LA,70118,504-231-4991,W,M,D,205,01/09/2012,01/14/2008,Mr. Hines -State Representative , 96th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,Juan Lafonta,"6305 Elysian Ave., Ste. 207",,New Orleans,LA,70122,504-288-4911,B,M,D,205,01/09/2012,01/14/2008,Representative Lafonta -State Representative , 97th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,Jared Brossett,4749 Marigny St.,,New Orleans,LA,70122,504-286-1033,B,M,D,205,01/09/2012,05/12/2009,Representative Brossett -State Representative , 98th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,Neil Abramson,906 Arabella St.,,New Orleans,LA,70115,504-897-5449,W,M,D,205,01/09/2012,01/14/2008,Mr. Abramson -State Representative , 99th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,Charmaine L. Marchand,1730 Andry St.,,New Orleans,LA,70117,504-945-8151,B,F,D,205,01/09/2012,01/14/2008,Rep. Marchand -State Representative ,100th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,Austin Badon,3212 Prytania St.,,New Orleans,LA,70115,504-577-5329,B,M,D,205,01/09/2012,01/14/2008,Rep. Badon -State Representative ,101st Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,Cedric L. Richmond,7021 Cove Dr.,,New Orleans,LA,70126,225-342-9866,B,M,D,205,01/09/2012,01/14/2008,Rep. Richmond -State Representative ,102nd Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,"Jeffery ""Jeff"" Arnold",2415 Danbury Dr.,,New Orleans,LA,70131,504-394-5586,W,M,D,205,01/09/2012,01/14/2008,Rep. Arnold -State Representative ,103rd Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,Reed S. Henderson,3004 Farmsite Rd.,,Violet,LA,70092,504-220-9707,W,M,D,205,01/09/2012,01/14/2008,Mr. Henderson -State Representative ,104th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,"""Nita"" Hutter",P.O. Box 275,,Chalmette,LA,70044,504-361-6684,W,F,R,205,01/09/2012,01/14/2008,Rep. Hutter -State Representative ,105th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,Ernest Durham Wooton,113 Vernon St.,,Belle Chasse,LA,70037,504-392-7404,W,M,R,205,01/09/2012,01/14/2008,Rep. Wooton -District Judge ," 1st JDC, Election Section 1, Division B ",,,,LA,,,,Ramona Emanuel,6204 Sonhaven Dr.,,Shreveport,LA,71119-6219,318-631-6038,B,F,D,210,12/31/2014,01/01/2009,Judge Emanuel -District Judge ," 1st JDC, Election Section 1, Division D ",,,,LA,,,,Leon L. Emanuel,P.O. Box 3588,,Shreveport,LA,71133,318-226-6812,B,M,D,210,12/31/2014,01/01/2009,Judge Emanuel -District Judge ," 1st JDC, Election Section 1, Division G ",,,,LA,,,,"John Mosely, Jr.",2512 Parham Dr.,,Shreveport,LA,71109-3014,318-636-1700,B,M,D,210,12/31/2014,01/01/2009,Judge Mosely -District Judge ," 1st JDC, Election Section 1, Division J ",,,,LA,,,,Ramon Lafitte,4322 Rosary Ln.,,Shreveport,LA,71108-3020,318-226-0826,B,M,D,210,12/31/2014,01/01/2009,Judge Lafitte -District Judge ," 1st JDC, Election Section 2, Division C ",,,,LA,,,,Scott J. Crichton,424 Evangeline Pl.,,Shreveport,LA,71106,318-868-0818,W,M,D,210,12/31/2014,01/01/2009,Judge Crichton -District Judge ," 1st JDC, Election Section 2, Division H ",,,,LA,,,,Jeanette G. Garrett,7717 Creswell Rd. Lot 4,,Shreveport,LA,71106,318-868-0588,W,F,D,210,12/31/2014,01/01/2009,Judge Garrett -District Judge ," 1st JDC, Election Section 2, Division I ",,,,LA,,,,Craig Marcotte,450 Monrovia St.,,Shreveport,LA,71106-1608,318-464-7773,W,,R,210,12/31/2014,01/01/2009,Judge Marcotte -District Judge ," 1st JDC, Election Section 3, Division A ",,,,LA,,,,"Robert P. ""Bobby"" Waddell",3252 Green Terrace Rd.,,Shreveport,LA,71118-2922,318-686-3086,W,,D,210,12/31/2014,01/01/2009,Judge Waddell -District Judge ," 1st JDC, Election Section 3, Division E ",,,,LA,,,,"""Mike"" Pitman",Ste. 300 D,,Shreveport,LA,71101,318-226-6810,W,M,R,210,12/31/2014,01/01/2009,Judge Pitman -District Judge ," 1st JDC, Election Section 3, Division F ",,,,LA,,,,Frances Pitman,8509 E. Wilderness Way,,Shreveport,LA,71106,318-464-9449,W,F,R,210,12/31/2014,01/01/2009,Judge Pitman -District Judge ," 1st JDC, Election Section 3, Division K ",,,,LA,,,,Roy L. Brun,501 Texas St. Rm. 404,,Shreveport,LA,71101,318-677-5340,W,M,R,210,12/31/2014,01/01/2009,Judge Brun -District Judge ," 2nd Judicial District, Division A ",,,,LA,,,,Jenifer Ward Clason,P.O. Box 786,,Homer,LA,71040,318-927-2161,W,F,D,210,12/31/2014,01/01/2009,Judge Clason -District Judge ," 2nd Judicial District, Division B ",,,,LA,,,,Jimmy Teat,P.O. Box 100,,Jonesboro,LA,71251,318-259-3442,W,M,D,210,12/31/2014,01/01/2009,Judge Teat -District Judge ," 2nd Judicial District, Division C ",,,,LA,,,,Glenn Fallin,212 Hwy. 519,,Arcadia,LA,71001,318-263-9408,W,M,D,210,12/31/2014,01/01/2009,Judge Fallin -District Judge ," 3rd Judicial District, Division A ",,,,LA,,,,Cynthia Woodard,2110 North Trenton St.,,Ruston,LA,71270,318-255-4691,W,F,,210,12/31/2014,01/01/2009,Judge Woodard -District Judge ," 3rd Judicial District, Division B ",,,,LA,,,,R. Wayne Smith,1604 Ravine Dr.,,Ruston,LA,71270,318-255-4763,W,M,,210,12/31/2014,01/01/2009,Judge Smith -District Judge ," 3rd Judicial District, Division C ",,,,LA,,,,Jay B. McCallum,P.O. Box 138,,Farmerville,LA,71241,318-368-2027,W,M,D,210,12/31/2014,01/01/2009,Judge McCallum -District Judge ," 4th JDC, Election Section 1, Division G ",,,,LA,,,,Carl Sharp,1247 Hwy. 594,,Monroe,LA,71203,318-361-2253,B,M,D,210,12/31/2014,01/01/2009,Judge Sharp -District Judge ," 4th JDC, Election Section 1, Division H ",,,,LA,,,,Benjamin Jones,169 Turtledove Dr.,,Monroe,LA,71203,318-345-1104,B,M,D,210,12/31/2014,01/01/2009,Judge Jones -District Judge ," 4th JDC, Election Section 1, Division I ",,,,LA,,,,Alvin R. Sharp,P. O. Box 3251,,Monroe,LA,71210,318-361-2298,B,M,D,210,12/31/2014,01/01/2009,Judge Sharp -District Judge ," 4th JDC, Election Section 1, Division J ",,,,LA,,,,Robert C. Johnson,241 Oregon Trail,,Monroe,LA,71202,318-361-0341,B,M,D,210,12/31/2014,01/01/2009,Judge Johnson -District Judge ," 4th JDC, Election Section 2, Division A ",,,,LA,,,,Scott Leehy,4100 Chauvin Ln.,,Monroe,LA,71201,318-388-2103,W,M,R,210,12/31/2014,01/01/2009,Judge Leehy -District Judge ," 4th JDC, Election Section 2, Division B ",,,,LA,,,,Sharon Ingram Marchman,2606 Pargoud Blvd.,,Monroe,LA,71201,318-323-5308,W,F,R,210,12/31/2014,01/01/2009,Judge Marchman -District Judge ," 4th JDC, Election Section 2, Division C ",,,,LA,,,,John Wilson Rambo,124 Western Ave.,,West Monroe,LA,71291,318-361-2286,W,M,,210,12/31/2014,01/01/2009,Judge Rambo -District Judge ," 4th JDC, Election Section 2, Division D ",,,,LA,,,,Stephens Winters,160 Napoleon,,West Monroe,LA,71291,318-397-2403,W,M,D,210,12/31/2014,01/01/2009,Judge Winters -District Judge ," 4th JDC, Election Section 2, Division E ",,,,LA,,,,"""Fred"" Amman, ",3309 Stowers Dr.,,Monroe,LA,71201-1947,318-325-4878,W,M,N,210,,02/18/2010 -District Judge ," 4th JDC, Election Section 2, Division F ",,,,LA,,,,Wendell Manning,394 Joe White Rd.,,Monroe,LA,71203,318-343-9252,W,M,R,210,12/31/2014,01/01/2009,Judge Manning -District Judge ," 4th JDC, Election Section 2, Division K ",,,,LA,,,,Daniel Joseph Ellender,P.O. Box 604,,Mer Rouge,LA,71261,318-647-9909,W,M,R,210,12/31/2014,01/01/2009,Judge Ellender -District Judge ," 5th Judicial District, Division A ",,,,LA,,,,Terry A. Doughty,945 Overland Stage Rd.,,Rayville,LA,71269,318-728-2395,W,M,R,210,12/31/2014,01/01/2009,Judge Doughty -District Judge ," 5th Judicial District, Division B ",,,,LA,,,,"James M. ""Jimbo"" Stephens",310 A. J. Stephens Rd.,,Baskin,LA,71219,318-248-2795,W,M,R,210,12/31/2014,01/01/2009,Judge Stephens -District Judge ," 5th Judicial District, Division C ",,,,LA,,,,"""Rudy"" McIntyre","6566 Main St., Second Fl.",,Winnsboro,LA,71295,318-435-7111,W,M,D,210,12/31/2014,01/01/2009,Judge McIntyre -District Judge ," 6th Judicial District, Division A ",,,,LA,,,,Michael E. Lancaster,311 Cleveland St.,,Tallulah,LA,71282,318-574-2577,W,M,D,210,12/31/2014,01/01/2009,Judge Lancaster -District Judge ," 6th Judicial District, Division B ",,,,LA,,,,John D. Crigler,P.O. Box 708,,St. Joseph,LA,71366,318-766-3360,W,M,D,210,12/31/2014,01/01/2009,Judge Crigler -District Judge ," 7th Judicial District, Division A ",,,,LA,,,,Kathy Johnson,501 Highway 3037,,Jonesville,LA,71343,318-339-6481,W,F,D,210,12/31/2014,01/01/2009,Judge Johnson -District Judge ," 7th Judicial District, Division B ",,,,LA,,,,Leo Boothe,P. O. Box 310,,Harrisonburg,LA,71340,318-744-5414,W,M,D,210,12/31/2014,01/01/2009,Judge Boothe -District Judge , 8th Judicial District ,,,,LA,,,,Jacque Derr,P.O. Box 908,,Winnfield,LA,71483,318-628-4079,W,M,R,210,12/31/2014,01/01/2009,Judge Derr -District Judge ," 9th JDC, Election Section 1, Division A ",,,,LA,,,,Donald Johnson,2116 Coulee Crossing Rd.,,Woodworth,LA,71485,318-473-8616,B,M,D,210,12/31/2014,01/01/2009,Judge Johnson -District Judge ," 9th JDC, Election Section 1, Division F ",,,,LA,,,,"George C. Metoyer, Jr.",P.O. Drawer 1431,,Alexandria,LA,71309,318-443-6893,B,M,D,210,12/31/2014,01/01/2009,Judge Metoyer -District Judge ," 9th JDC, Election Section 2, Division B ",,,,LA,,,,"Thomas ""Tom"" Yeager",1037 Edgewood Dr.,,Pineville,LA,71360,318-640-9762,W,M,O,210,12/31/2014,01/01/2009,Judge Yeager -District Judge ," 9th JDC, Election Section 2, Division C ",,,,LA,,,,Mary Lauve Doggett,5716 Courtland Place,,Alexandria,LA,71301,318-443-8425,W,F,D,210,12/31/2014,01/01/2009,Judge -District Judge ," 9th JDC, Election Section 2, Division D ",,,,LA,,,,John C. Davidson,475 Downs Ln.,,Alexandria,LA,71303,318-442-1341,,,D,210,12/31/2014,01/01/2009,Judge Davidson -District Judge ," 9th JDC, Election Section 2, Division E ",,,,LA,,,,Patricia Evans Koch,4406 Willowick Blvd.,,Alexandria,LA,71303,318-442-3912,W,F,D,210,12/31/2014,01/01/2009,Judge Koch -District Judge ," 9th JDC, Subdistrict 2, Division G ",,,,LA,,,,Harry F. Randow,P.O. Box 1431,,Alexandria,LA,71309,318-443-6893,W,M,D,210,12/31/2014,01/01/2009,Judge Randow -District Judge ,"10th Judicial District, Division A ",,,,LA,,,,"""Rick"" Harrington",5923 Hwy. 6,,Natchitoches,LA,71457,318-357-8698,W,M,D,210,12/31/2014,01/01/2009,Judge Harrington -District Judge ,"10th Judicial District, Division B ",,,,LA,,,,Dee A. Hawthorne,2498 Hwy. 119,,Melrose,LA,71452,318-379-0178,W,F,D,210,12/31/2014,01/01/2009,Judge Hawthorne -District Judge ,11th Judicial District ,,,,LA,,,,Stephen Beasley,P.O. Box 56,,Many,LA,71449,318-256-0966,W,M,D,210,12/31/2014,01/01/2009,Judge Beasley -District Judge ,"12th Judicial District, Division A ",,,,LA,,,,Mark Jeansonne,P.O. Box 301,,Hessmer,LA,71341,318-253-9418,W,M,D,210,12/31/2014,01/01/2009,Judge Jeansonne -District Judge ,"12th Judicial District, Division B ",,,,LA,,,,"William J. ""Billy"" Bennett",P.O. Box 84,,Marksville,LA,71351,318-253-8953,W,M,D,210,12/31/2014,01/01/2009,Judge Bennett -District Judge ,"13th Judicial District, Division A ",,,,LA,,,,J. Larry Vidrine,2087 Faubourg Rd.,,Ville Platte,LA,70586,337-363-5516,W,M,D,210,12/31/2014,01/01/2009,Judge Vidrine -District Judge ,"13th Judicial District, Division B ",,,,LA,,,,"Thomas ""Tom"" Fuselier",1300 Fuselier Rd.,,Mamou,LA,70554,337-363-5608,W,M,D,210,12/31/2014,01/01/2009,Judge Fuselier -District Judge ,"14th JDC, Elect. Sect. 1 & 3, Division I ",,,,LA,,,,Lilynn Cutrer,P.O. Box 1150,,Lake Charles,LA,70602,337-480-1331,W,F,D,210,12/31/2014,01/01/2009,Judge Cutrer -District Judge ,"14th JDC, Election Section 1, Division F ",,,,LA,,,,Wilford D. Carter,509 N. 1st Ave.,,Lake Charles,LA,70601,337-436-6227,B,M,D,210,12/31/2014,01/01/2009,Judge Carter -District Judge ,"14th JDC, Election Section 1, Division H ",,,,LA,,,,"""Ron"" Ware",647 Stella Dr.,,Lake Charles,LA,70611,337-855-3633,B,M,D,210,12/31/2014,01/01/2009,Judge Ware -District Judge ,"14th JDC, Election Section 2, Division B ",,,,LA,,,,Clayton Davis,1304 Hillcroft Dr.,,Lake Charles,LA,70605,337-479-2215,W,M,R,210,12/31/2014,01/01/2009,Judge Davis -District Judge ,"14th JDC, Election Section 2, Division C ",,,,LA,,,,Guy Bradberry,1508 Bank St.,,Lake Charles,LA,70601,337-437-3363,W,M,D,210,12/31/2014,01/21/2009,Judge Bradberry -District Judge ,"14th JDC, Election Section 2, Division D ",,,,LA,,,,Robert L. Wyatt,5567 Chuck Dr.,,Lake Charles,LA,70605,337-477-3349,W,M,D,210,12/31/2014,01/01/2009,Judge Wyatt -District Judge ,"14th JDC, Election Section 2, Division G ",,,,LA,,,,"Michael ""Mike"" Canaday",2859 Henderson Forest Ln.,,Lake Charles,LA,70605,337-474-4972,W,M,D,210,12/31/2014,01/01/2009,Judge Canaday -District Judge ,"14th JDC, Election Section 3, Division A ",,,,LA,,,,D. Kent Savoie,1302 Spanish Dr.,,Lake Charles,LA,70665,337-583-4118,W,M,D,210,12/31/2014,01/01/2009,Judge Savoie -District Judge ,"14th JDC, Election Section 3, Division E ",,,,LA,,,,David Ritchie,4504 Maplewood Dr.,,Sulphur,LA,70663,337-625-4504,W,M,R,210,12/31/2014,01/01/2009,Judge ritchie -District Judge ,"15th JDC, Election Section 1, Division B ",,,,LA,,,,Jules D. Edwards,215 Failla Rd.,,Lafayette,LA,70508,337-412-6009,B,M,O,210,12/31/2014,01/01/2009,Judge Edwards -District Judge ,"15th JDC, Election Section 1, Division D ",,,,LA,,,,"""Ed"" Rubin",101 Jyro Lane,,Carencro,LA,70520,337-896-6083,B,M,D,210,12/31/2014,01/01/2009,Judge Rubin -District Judge ,"15th JDC, Election Section 2, Division E ",,,,LA,,,,Herman Clause,517 Trappey Rd.,,Carencro,LA,70520,337-896-8872,W,M,D,210,12/31/2014,01/01/2009,Judge Clause -District Judge ,"15th JDC, Election Section 3, Division H ",,,,LA,,,,David A. Blanchet,P.O. Box 3407,,Lafayette,LA,70502,337-269-5729,W,M,R,210,12/31/2014,01/01/2009,Judge Blanchet -District Judge ,"15th JDC, Election Section 3, Division I ",,,,LA,,,,Thomas Duplantier,222 Antigua Dr.,,Lafayette,LA,70503,337-269-5722,W,M,D,210,12/31/2014,01/01/2009,Judge Duplantier -District Judge ,"15th JDC, Election Section 3, Division K ",,,,LA,,,,"Patrick Louis ""Rick"" Michot, Sr.",904 Bayou Tortue Rd.,,Broussard,LA,70518,337-837-8943,W,M,R,210,12/31/2014,01/01/2009,Judge Michot -District Judge ,"15th JDC, Election Section 3, Division L ",,,,LA,,,,Marilyn C. Castle,406 Montrose Ave.,,Lafayette,LA,70503,337-981-4048,W,F,R,210,12/31/2014,01/01/2009,Judge Castle -District Judge ,"15th JDC, Election Section 3, Division M ",,,,LA,,,,Phyllis Montgomery Keaty,620 Woodvale Ave.,,Lafayette,LA,70505,337-261-5125,W,F,R,210,12/31/2014,01/01/2009,Judge Keaty -District Judge ,"15th JDC, Election Section 4, Division A ",,,,LA,,,,John D. Trahan,1718 N. Ave D,,Crowley,LA,70526,337-788-2435,W,M,D,210,12/31/2014,01/01/2009,Judge Trahan -District Judge ,"15th JDC, Election Section 4, Division F ",,,,LA,,,,"""Glenn"" Everett",P.O. Box 503,,Crowley,LA,70526,337-788-8814,W,M,D,210,12/31/2014,01/01/2009,Judge Everrett -District Judge ,"15th JDC, Election Section 4, Division J ",,,,LA,,,,Kristian D. Earles,1534 Connie Rd.,,Iota,LA,70543,337-250-0550,W,M,D,210,12/31/2014,01/01/2009,Judge Earles -District Judge ,"15th JDC, Election Section 5, Division C ",,,,LA,,,,"""Ed"" Broussard",P.O. Box 7,,Abbeville,LA,70511,337-893-3423,W,M,D,210,12/31/2014,01/01/2009,Judge Broussard -District Judge ,"15th JDC, Election Section 5, Division G ",,,,LA,,,,Durwood Conque,14121 Towne Ln.,,Abbeville,LA,70510,337-893-1781,,,D,210,12/31/2014,01/01/2009,Judge Conque -District Judge ,"16th JDC, Election Section 1, Division G ",,,,LA,,,,Charles L. Porter,1014 Loreauville Rd.,,New Iberia,LA,70563,337-365-4966,B,M,D,210,12/31/2014,01/01/2009,Judge Porter -District Judge ,"16th JDC, Election Section 1, Division H ",,,,LA,,,,Lori A. Landry,P.O. Box 9067,,New Iberia,LA,70562,337-365-7323,B,F,D,210,12/31/2014,01/01/2009,Judge Landry -District Judge ,"16th JDC, Election Section 2, Division A ",,,,LA,,,,Gerard B. Wattigny,P.O. Box 13446,,New Iberia,LA,70562,337-364-7376,W,M,D,210,12/31/2014,01/01/2009,Judge Wattingny -District Judge ,"16th JDC, Election Section 2, Division B ",,,,LA,,,,Paul deMahy,2206 Catherine Dr.,,St. Martinville,LA,70582,337-394-4523,W,M,R,210,12/31/2014,01/01/2009,Judge deMahy -District Judge ,"16th JDC, Election Section 2, Division C ",,,,LA,,,,John E. Conery,P.O. Box 1,,Franklin,LA,70538,337-828-4100,W,M,D,210,12/31/2014,01/01/2009,Judge Conery -District Judge ,"16th JDC, Election Section 2, Division D ",,,,LA,,,,James R. McClelland,P.O. Box 268,,Franklin,LA,70538,337-828-0574,W,M,,210,12/31/2014,01/01/2009,Judge McClelland -District Judge ,"16th JDC, Election Section 2, Division E ",,,,LA,,,,Keith Comeaux,109 Plantation Dr.,,New Iberia,LA,70563,337-367-8923,W,M,,210,12/31/2014,01/01/2009,Judge Comeaux -District Judge ,"16th JDC, Election Section 2, Division F ",,,,LA,,,,"Edward ""Ed"" Leonard, Jr.",716 1st St.,,Morgan City,LA,70380,985-385-3412,W,M,D,210,12/31/2014,01/01/2009,Judge Leonard -District Judge ,"17th Judicial District, Division A ",,,,LA,,,,John LeBlanc,P.O. Box 231,,Thibodaux,LA,70302,985-447-3780,W,M,D,210,12/31/2014,01/01/2009,Judge LeBlanc -District Judge ,"17th Judicial District, Division B ",,,,LA,,,,"Jerome J. ""Jerry"" Barbera, III",312 Ashland Dr.,,Thibodaux,LA,70301,985-447-4843,W,M,D,210,12/31/2014,01/01/2009,Judge Barbera -District Judge ,"17th Judicial District, Division C ",,,,LA,,,,"Walter I. Lanier, III",1082 Hwy. 1,,Thibodaux,LA,70301,985-448-0897,W,M,D,210,12/31/2014,01/01/2009,Judge Lanier -District Judge ,"17th Judicial District, Division D ",,,,LA,,,,Bruce Simpson,P.O. Box 67,,Lockport,LA,70374,985-532-2233,W,M,D,210,12/31/2014,01/01/2009,Judge Simpson -District Judge ,"17th Judicial District, Division E ",,,,LA,,,,"F. Hugh ""Buddy"" Larose",102 Palm Pl.,,Thibodaux,LA,70301,985-446-1694,W,M,D,210,12/31/2014,01/01/2009,Judge Larose -District Judge ,"18th JDC, Election Section 1, Division C ",,,,LA,,,,"Alvin Batiste, Jr.",20725 Charles Ory Dr.,,Plaquemine,LA,70764,225-687-5230,B,M,D,210,12/31/2014,01/01/2009,Judge Batiste -District Judge ,"18th JDC, Election Section 2, Division D ",,,,LA,,,,William C. Dupont,24010 Sherwood Dr.,,Plaquemine,LA,70764,225-687-7070,W,M,D,210,12/31/2014,01/01/2009,Judge Dupont -District Judge ,"18th JDC, Election Section 3, Division B ",,,,LA,,,,J. Robin Free,P.O. Box 274,,Port Allen,LA,70767,225-627-3918,W,M,D,210,12/31/2014,01/01/2009,Judge Free -District Judge ,"18th JDC, Election Section 4, Division A ",,,,LA,,,,James J. Best,14433 Waterloo Drive,,Ventress,LA,70783,225-638-5630,W,M,D,210,12/31/2014,01/01/2009,Judge Best -District Judge ,"19th JDC, Election Section 1, Division B ",,,,LA,,,,"Donald ""Don"" Johnson",3124 Jefferson Ave.,,Baton Rouge,LA,70802,225-278-5972,B,M,D,210,12/31/2014,01/01/2009,Judge Johnson -District Judge ,"19th JDC, Election Section 1, Division D ",,,,LA,,,,Janice Clark,"222 St. Louis St., Ste. 816",,Baton Rouge,LA,70801,225-389-5012,B,F,D,210,12/31/2014,01/01/2009,Judge Clark -District Judge ,"19th JDC, Election Section 1, Division J ",,,,LA,,,,Trudy White,P.O. Box 66514,,Baton Rouge,LA,70896,225-389-3025,B,F,D,210,12/31/2014,01/01/2009,Judge White -District Judge ,"19th JDC, Election Section 1, Division K ",,,,LA,,,,Bonnie Jackson,1235 Chariot Dr.,,Baton Rouge,LA,70816,225-389-4755,B,F,D,210,12/31/2014,01/01/2009,Judge Jackson -District Judge ,"19th JDC, Election Section 1, Division O ",,,,LA,,,,Wilson Fields,2147 Government St.,,Baton Rouge,LA,70802,225-343-5377,B,M,D,210,12/31/2014,01/01/2009,Judge Fields -District Judge ,"19th JDC, Election Section 2, Division A ",,,,LA,,,,Todd Hernandez,"222 St. Louis St., Ste. 619",,Baton Rouge,LA,70801,225-389-4706,W,M,R,210,12/31/2014,01/01/2009,Judge Hernandez -District Judge ,"19th JDC, Election Section 2, Division G ",,,,LA,,,,Richard D. Anderson,12888 Triple B Rd.,,Greenwell Springs,LA,70739,225-262-0970,W,M,R,210,12/31/2014,01/01/2009,Judge Anderson -District Judge ,"19th JDC, Election Section 2, Division L ",,,,LA,,,,"""Mike"" Erwin",1024 E. Lakeview,,Baton Rouge,LA,70810,225-769-0213,W,M,D,210,12/31/2014,01/01/2009,Judge Erwin -District Judge ,"19th JDC, Election Section 2, Division M ",,,,LA,,,,Kay Bates,"222 St. Louis St., Ste. 776",,Baton Rouge,LA,70802,225-389-4787,W,F,D,210,12/31/2014,01/01/2009,Judge Bates -District Judge ,"19th JDC, Election Section 2, Division N ",,,,LA,,,,"Richard ""Chip"" Moore, III",4965 East Mae St.,,Zachary,LA,70791,225-658-4888,W,M,R,210,12/31/2014,01/01/2009,Judge Moore -District Judge ,"19th JDC, Election Section 3, Division C ",,,,LA,,,,Louis R. Daniel,8925 Brookwood Dr.,,Baton Rouge,LA,70809,225-926-1553,W,M,R,210,12/31/2014,01/01/2009,Judge Daniel -District Judge ,"19th JDC, Election Section 3, Division E ",,,,LA,,,,William Morvant,"222 St. Louis St., Ste. 880",,Baton Rouge,LA,70801,225-389-4714,W,M,R,210,12/31/2014,01/01/2009,Judge Morvant -District Judge ,"19th JDC, Election Section 3, Division F ",,,,LA,,,,"""Tim"" Kelley",P.O. Box 3261,,Baton Rouge,LA,70821,225-389-4728,W,M,R,210,12/31/2014,01/01/2009,Judge Kelley -District Judge ,"19th JDC, Election Section 3, Division H ",,,,LA,,,,"Anthony J. ""Tony"" Marabella, Jr.",16654 S. Fulwar Skipwith Rd.,,Baton Rouge,LA,70810,225-754-1068,W,M,D,210,12/31/2014,01/01/2009,Judge Marabella -District Judge ,"19th JDC, Election Section 3, Division I ",,,,LA,,,,R. Michael Caldwell,4518 Whitehaven St.,,Baton Rouge,LA,70808,225-389-4734,W,M,R,210,12/31/2014,01/01/2009,Judge Caldwell -District Judge ,"20th Judicial District, Division A ",,,,LA,,,,"""Hal"" Ware",P.O. Box 38,,Wilson,LA,70789,225-629-4724,W,M,D,210,12/31/2014,01/01/2009,Judge Ware -District Judge ,"20th Judicial District, Division B ",,,,LA,,,,William G. Carmichael,P.O. Box 803,,Clinton,LA,70722,,W,M,D,210,12/31/2014,01/01/2009,Judge Carmichael -District Judge ,"21st Judicial District, Division A ",,,,LA,,,,Wayne Ray Chutz,990 Calmes Rd.,,Denham Springs,LA,70706,225-665-6039,W,M,R,210,12/31/2014,01/01/2009,Judge Chutz -District Judge ,"21st Judicial District, Division B ",,,,LA,,,,Bruce C. Bennett,P.O. Box 401,,Livingston,LA,70754,225-791-3753,W,M,R,210,12/31/2014,01/01/2009,Judge Bennett -District Judge ,"21st Judicial District, Division C ",,,,LA,,,,"Robert H. ""Bob"" Morrison, III",P.O. Box 800,,Watson,LA,70786,225-665-1562,W,M,R,210,12/31/2014,01/01/2009,Judge Morrison -District Judge ,"21st Judicial District, Division D ",,,,LA,,,,"Milton D. ""Doug"" Hughes",1101 Cockerham Rd.,,Denham Springs,LA,70726,225-667-4870,W,M,R,210,12/31/2014,01/01/2009,Judge Hughes -District Judge ,"21st Judicial District, Division E ",,,,LA,,,,Brenda Bedsole Ricks,P.O. Box 280,,Amite,LA,70422,985-748-8439,W,F,R,210,12/31/2014,01/01/2009,Judge Ricks -District Judge ,"21st Judicial District, Division F ",,,,LA,,,,"Elizabeth ""Beth"" Wolfe",P.O. Box 36,,Albany,LA,70711,225-567-1037,W,F,R,210,12/31/2014,01/01/2009,Judge Wolfe -District Judge ,"21st Judicial District, Division G ",,,,LA,,,,"Ernest ""Ernie"" Drake, Jr.",P.O. Box 188,,Ponchatoula,LA,70454,985-386-9713,W,M,D,210,12/31/2014,01/01/2009,Judge Drake -District Judge ,"21st Judicial District, Division H ",,,,LA,,,,"Zorraine M. ""Zoey"" Waguespack",30047 Corbin Ave.,,Walker,LA,70785,225-665-8265,W,F,D,210,12/31/2014,01/01/2009,Judge Waguespack -District Judge ,"21st Judicial District, Division I ",,,,LA,,,,Blair Downing Edwards,1303 North General Pershing,,Hammond,LA,70401,985-542-6621,W,F,R,210,12/31/2014,01/01/2009,Judge Edwards -District Judge ,"22nd Judicial District, Division A ",,,,LA,,,,"""Ray"" Childress",83366 Shepherd Ln.,,Folsom,LA,70437,985-796-9081,W,M,R,210,12/31/2014,01/01/2009,Judge Childress -District Judge ,"22nd Judicial District, Division B ",,,,LA,,,,A. J. Hand,1016 1/2 W. 21st Ave.,,Covington,LA,70433,985-892-7211,W,M,R,210,12/31/2014,01/01/2009,Judge Hand -District Judge ,"22nd Judicial District, Division C ",,,,LA,,,,"Richard ""Rick"" Swartz",P.O. Box 4099,,Slidell,LA,70459,985-641-4688,W,M,R,210,12/31/2014,01/01/2009,Judge Swartz -District Judge ,"22nd Judicial District, Division D ",,,,LA,,,,Peter J. Garcia,220 S. Massachusetts St.,,Covington,LA,70433,985-809-5324,W,M,,210,12/31/2014,01/01/2009,Judge Garcia -District Judge ,"22nd Judicial District, Division E ",,,,LA,,,,"William J. ""Bill"" Burris",24447 Hwy. 25,,Franklinton,LA,70438,985-839-2145,W,M,R,210,12/31/2014,01/01/2009,Judge Burris -District Judge ,"22nd Judicial District, Division F ",,,,LA,,,,Martin E. Coady,72569 Military Rd.,,Covington,LA,70435,985-809-5330,W,M,R,210,12/31/2014,01/01/2009,Judge Coady -District Judge ,"22nd Judicial District, Division G ",,,,LA,,,,"William J. ""Will"" Crain",P.O. Box 1810,,Covington,LA,70434,985-892-4801,W,M,R,210,12/31/2014,01/01/2009,Judge Crain -District Judge ,"22nd Judicial District, Division H ",,,,LA,,,,"Allison Hopkins Penzato, ",701 N. Columbia St.,,Covington,LA,70433,985-809-5340,W,F,R,210,12/31/2014,01/01/2009,Judge Penzato -District Judge ,"22nd Judicial District, Division I ",,,,LA,,,,Reginald T. Badeaux,107 E. 7th Ave.,,Covington,LA,70433,985-893-5003,,,R,210,12/31/2014,01/01/2009,Judge Badeaux -District Judge ,"22nd Judicial District, Division J ",,,,LA,,,,"William ""Rusty"" Knight",20106 Hwy. 25,,Franklinton,LA,70438,985-839-3493,W,M,R,210,12/31/2014,01/01/2009,Judge Knight -District Judge ,"22nd Judicial District, Division K ",,,,LA,,,,Mary Clemence Devereux,2145 Hampshire Dr.,,Slidell,LA,70461,985-893-7550,W,F,R,210,12/31/2014,01/01/2009 -District Judge ,"22nd Judicial District, Division L ",,,,LA,,,,Dawn Amacker,534 E. Boston St.,,Covington,LA,70433,985-249-6008,W,F,R,210,12/31/2014,01/01/2009,Judge Amacker -District Judge ,"23rd JDC, Election Section 1, Division E ",,,,LA,,,,"Alvin Turner, Jr.",2222 S. Edward St.,,Gonzales,LA,70737,225-621-8500,B,M,D,210,12/31/2014,01/01/2009,Judge Turner -District Judge ,"23rd JDC, Election Section 2, Division A ",,,,LA,,,,Ralph Tureau,11117 Hwy. 431,,St. Amant,LA,70774,225-621-8514,W,M,D,210,12/31/2014,01/01/2009,Judge Tureau -District Judge ,"23rd JDC, Election Section 2, Division B ",,,,LA,,,,"""Tom"" Kliebert",2768 La. Hwy 44,,Paulina,LA,70763,225-869-4064,W,M,D,210,12/31/2014,01/01/2009,Judge Kliebert -District Judge ,"23rd JDC, Election Section 2, Division C ",,,,LA,,,,Guy Holdridge,2019 S. Woodlawn,,Gonzales,LA,70737,225-621-8500,W,M,D,210,12/31/2014,01/01/2009,Judge Holdridge -District Judge ,"23rd JDC, Election Section 2, Division D ",,,,LA,,,,Jane Triche-Milazzo,5184 Hwy. 308,,Napoleonville,LA,70390,985-369-6437,W,F,D,210,12/31/2014,01/01/2009,Judge Triche-Milazzo -District Judge ,"24th JDC, Election Section 1, Division G ",,,,LA,,,,"Robert A. ""Bob"" Pitre, Jr.",5214 Pitre Dr.,,Crown Point,LA,70072,504-689-2114,W,M,R,210,12/31/2014,01/01/2009,Judge Pitre -District Judge ,"24th JDC, Election Section 1, Division O ",,,,LA,,,,Ross P. LaDart,2516 Cypress Lawn Dr.,,Marrero,LA,70072,504-347-4993,W,M,R,210,12/31/2014,01/01/2009,Judge Dart -District Judge ,"24th JDC, Election Section 2, Division A ",,,,LA,,,,"William C. Credo, ",1900 Division St.,,Metairie,LA,70001,,,,,210,,12/21/2009,Judge -District Judge ,"24th JDC, Election Section 2, Division D ",,,,LA,,,,Robert M. Murphy,450 Woodvine Ave.,,Metairie,LA,70005,504-837-6912,W,M,R,210,12/31/2014,01/01/2009,Judge Murphy -District Judge ,"24th JDC, Election Section 2, Division F ",,,,LA,,,,Patrick J. McCabe,4712 Toby Ln.,,Metairie,LA,70003,504-887-2959,W,M,R,210,12/31/2014,01/01/2009,Judge McCabe -District Judge ,"24th JDC, Election Section 2, Division N ",,,,LA,,,,Hans J. Liljeberg,71 Metairie Ct. Pkwy.,,Metairie,LA,70001,504-301-3648,W,M,R,210,12/31/2014,01/01/2009,Judge Liljeberg -District Judge ,"24th JDC, Election Section 3, Division K ",,,,LA,,,,Ellen Shirer Kovach,2612 Labarre Ln.,,Metairie,LA,70001,504-831-0890,W,F,R,210,12/31/2014,01/01/2009,Judge Kovach -District Judge ,"24th JDC, Election Section 3, Division L ",,,,LA,,,,"Donald A. ""Donnie"" Rowan, Jr.",P.O. Box 1034,,Metairie,LA,70404,504-834-5444,W,M,R,210,12/31/2014,01/01/2009,Judge Rowan -District Judge ,"24th JDC, Election Section 4, Division H ",,,,LA,,,,Glenn B. Ansardi,25 Emile St.,,Kenner,LA,70065,504-466-1331,W,M,R,210,12/31/2014,01/01/2009,Judge Ansardi -District Judge ,"24th JDC, Election Section 4, Division I ",,,,LA,,,,Nancy A. Miller,4708 Green Acres Ct.,,Metairie,LA,70003,504-237-3903,W,F,R,210,12/31/2014,01/01/2009,Judge Miller -District Judge ,"24th JDC, Election Section 5, Division C ",,,,LA,,,,June Berry Darensburg,6005 Boutall St.,,Metairie,LA,70003,504-456-6485,B,F,D,210,12/31/2014,01/01/2009,Judge Darensburg -District Judge ,"24th JDC, Election Section 5, Division P ",,,,LA,,,,"Lee V. Faulkner, Jr.",P.O. Box 185,,Gretna,LA,70054,504-361-8596,B,M,D,210,12/31/2014,01/01/2009,Judge Faulkner -District Judge ,"24th JDC, Election Section 6, Division J ",,,,LA,,,,"Stephen J. ""Steve"" Windhorst",200 Derbigny St. Div. J,,Gretna,LA,70053,504-364-3916,W,M,R,210,12/31/2014,01/01/2009,Judge Windhorst -District Judge ,"24th JDC, Election Section 6, Division M ",,,,LA,,,,"Henry G. Sullivan, Jr.",15 Derbes Dr.,,Gretna,LA,70053,,W,M,D,210,12/31/2014,01/01/2009,Judge Sullivan -District Judge ,"24th JDC, Election Section 7, Division B ",,,,LA,,,,"Cornelius E. ""Conn"" Regan",127 Arlington Dr.,,Metairie,LA,70001,504-835-3933,W,M,R,210,12/31/2014,01/01/2009,Judge Regan -District Judge ,"24th JDC, Election Section 7, Division E ",,,,LA,,,,"John J. Molaison, Jr.",420 Timberlane Dr.,,Gretna,LA,70056,504-362-0772,W,M,R,210,12/31/2014,01/01/2009,Judge Molaison -District Judge ,"25th Judicial District, Division A ",,,,LA,,,,Kevin Conner,122 Clausen Rd.,,Belle Chasse,LA,70037,504-656-2495,W,M,O,210,12/31/2014,01/01/2009,Judge Conner -District Judge ,"25th Judicial District, Division B ",,,,LA,,,,"Joyce Cossich ""Joy"" Lobrano",P.O. Box 671,,Belle Chasse,LA,70037,504-433-3100,W,F,R,210,12/31/2014,01/01/2009,Judge Lobrano -District Judge ,"26th Judicial District, Division A ",,,,LA,,,,"Michael ""Mike"" Craig",1000 Mallard Bend Cir.,,Bossier City,LA,71111,318-752-5770,W,M,R,210,12/31/2014,01/01/2009,Judge Craig -District Judge ,"26th Judicial District, Division B ",,,,LA,,,,"Ford E. Stinson, Jr.",P.O. Box 276,,Benton,LA,71006,318-965-9659,W,M,D,210,12/31/2014,01/01/2009,Judge Stinson -District Judge ,"26th Judicial District, Division C ",,,,LA,,,,"""Jeff"" Cox",345 Crosscreek Dr.,,Bossier City,LA,71111,318-752-4470,W,M,R,210,12/31/2014,01/01/2009,Judge Cox -District Judge ,"26th Judicial District, Division D ",,,,LA,,,,John M. Robinson,512 Weavers Way,,Bossier City,LA,71111,318-965-2217,W,M,,210,12/31/2014,01/01/2009,Judge Robinson -District Judge ,"26th Judicial District, Division E ",,,,LA,,,,Bruce Bolin,1009 Cressmont St.,,Bossier City,LA,71111,318-965-2217,W,M,D,210,12/31/2014,01/01/2009,Judge Bolin -District Judge ,"26th Judicial District, Division F ",,,,LA,,,,Parker Self,200 Claremore Cir.,,Bossier City,LA,71111,318-747-1946,W,M,D,210,12/31/2014,01/01/2009,Judge Self -District Judge ,"27th JDC, Election Section 1, Division C ",,,,LA,,,,Alonzo Harris,4573 Hwy. 743,,Washington,LA,70589,337-826-7104,B,M,D,210,12/31/2014,01/01/2009,Judge Harris -District Judge ,"27th JDC, Election Section 2, Division A ",,,,LA,,,,"James P. ""Jim"" Doherty, Jr.",P.O. Box 881,,Opelousas,LA,70570,337-942-4134,W,M,D,210,12/31/2014,01/01/2009,Judge Doherty -District Judge ,"27th JDC, Election Section 3, Division D ",,,,LA,,,,Donald W. Hebert,117 E. Smiley St.,,Opelousas,LA,70570,337-942-8647,W,M,D,210,12/31/2014,01/01/2009,Judge Hebert -District Judge ,"27th JDC, Election Section 4, Division B ",,,,LA,,,,Ellis J. Daigle,P.O. Box 1686,,Eunice,LA,70535,337-948-0586,W,M,D,210,12/31/2014,01/01/2009,Judge Daigle -District Judge ,28th Judicial District ,,,,LA,,,,J. Christopher Peters,P.O. Box 2387,,Jena,LA,71342,318-992-1950,W,M,D,210,12/31/2014,01/01/2009,Judge Peters -District Judge ,"29th Judicial District, Division C ",,,,LA,,,,Emile R. St. Pierre,135 Ormond Oaks Dr.,,Destrehan,LA,70047,985-764-8031,W,M,D,210,12/31/2014,01/01/2009,Judge St. Pierre -District Judge ,"29th Judicial District, Division D ",,,,LA,,,,Lauren Lemmon,117 Wade St.,,Luling,LA,70070,985-783-6789,W,F,D,210,12/31/2014,01/01/2009,Judge Lemmon -District Judge ,"29th Judicial District, Division E ",,,,LA,,,,Robert A. Chaisson,P.O. Box 222,,Destrehan,LA,70047,985-764-6054,W,M,D,210,12/31/2014,01/01/2009,Judge Chaisson -District Judge ,"30th Judicial District, Division A ",,,,LA,,,,Vernon B. Clark,116 Bray Lane,,Leesville,LA,71446,337-239-4485,W,M,D,210,12/31/2014,01/01/2009,Judge Clark -District Judge ,"30th Judicial District, Division B ",,,,LA,,,,John Ford,1461 Fords Dairy Rd.,,New Llano,LA,71461,337-239-0103,W,M,D,210,12/31/2014,01/01/2009,Judge Ford -District Judge ,"30th Judicial District, Division C ",,,,LA,,,,"James R. ""Jim"" Mitchell",729 Alexandria Hwy.,,Leesville,LA,71446,337-239-6709,W,M,R,210,12/31/2014,01/01/2009,Judge Mitchell -District Judge ,31st Judicial District ,,,,LA,,,,Steve Gunnell,2200 E. Academy Ave.,,Jennings,LA,70546,337-824-8552,W,M,D,210,12/31/2014,01/01/2009,Judge Gunnell -District Judge ,"32nd Judicial District, Division A ",,,,LA,,,,"George J. Larke, Jr.",7 Richland Row,,Houma,LA,70360-7935,985-876-3858,W,M,D,210,12/31/2014,01/01/2009,Judge Lark -District Judge ,"32nd Judicial District, Division B ",,,,LA,,,,John R. Walker,221 Maple Ave.,,Houma,LA,70364-3150,985-876-3797,W,M,D,210,12/31/2014,01/01/2009,Judge Walker -District Judge ,"32nd Judicial District, Division C ",,,,LA,,,,Timothy C. Ellender,P.O. Box 308,,Houma,LA,70361-0308 ,985-804-0303,W,M,R,210,12/31/2014,01/01/2009,Judge Ellender -District Judge ,"32nd Judicial District, Division D ",,,,LA,,,,David W. Arceneaux,88 Wayside Dr.,,Houma,LA,70360-6100,985-868-7465,W,M,R,210,12/31/2014,01/01/2009,Judge Arceneaux -District Judge ,"32nd Judicial District, Division E ",,,,LA,,,,"Randall L. ""Randy"" Bethancourt",504 June Dr.,,Houma,LA,70360-7423,985-868-0942,W,M,R,210,12/31/2014,01/01/2009,Judge Bethancourt -District Judge ,"33rd Judicial District, Division A ",,,,LA,,,,Joel Davis,202 Hospital Dr.,,Oakdale,LA,71463,318-335-1521,W,M,D,210,12/31/2014,01/01/2009,Judge Davis -District Judge ,"33rd Judicial District, Division B ",,,,LA,,,,Patricia Cole,P.O. Box 584,,Oberlin,LA,70655,337-639-2762,W,F,D,210,12/31/2014,01/01/2009,Judge Cole -District Judge ,"34th Judicial District, Division A ",,,,LA,,,,"Robert A. ""Bob"" Buckley",10 Pecan Grove Ln.,,Meraux,LA,70075,504-277-6171,W,M,D,210,12/31/2014,01/01/2009,Judge Buckley -District Judge ,"34th Judicial District, Division B ",,,,LA,,,,"Manuel A. ""Manny"" Fernandez",2032 Fort Beauregard Blvd.,,St. Bernard,LA,70085,504-267-0014,W,M,D,210,12/31/2014,01/01/2009,Judge Fernandez -District Judge ,"34th Judicial District, Division C ",,,,LA,,,,Robert J. Klees,41409 Rue Chene,,Pontahoula,LA,70454,,,,,210,,11/08/2009,Judge Klees -District Judge ,"34th Judicial District, Division C ",,,,LA,,,,"Perry Nicosia, ",2113 Serpas Ln.,,St. Bernard,LA,70085-5822,504-267-3936,W,M,D,210,,02/15/2010 -District Judge ,"34th Judicial District, Division D ",,,,LA,,,,Kirk A. Vaughn,3613 Dauterive Dr.,,Chalmette,LA,70043,504-301-0328,W,M,D,210,12/31/2014,01/01/2009,Judge Vaughn -District Judge ,"34th Judicial District, Division E ",,,,LA,,,,Jacques A. Sanborn,1101 West St. Bernard Hwy.,,Chalmette,LA,70043,504-481-8135,W,M,D,210,12/31/2014,01/01/2009,Judge Sanborn -District Judge ,35th Judicial District ,,,,LA,,,,"Warren Daniel ""Danny"" Willett",125 Durham Rd.,,Pollock,LA,71467,318-765-0821,W,M,R,210,12/31/2014,01/01/2009,Judge Willett -District Judge ,"36th Judicial District, Division A ",,,,LA,,,,Martha Ann O'Neal,703 Park Rd.,,DeRidder,LA,70634,337-462-6051,W,F,D,210,12/31/2014,01/01/2009,Judge O'Neal -District Judge ,"36th Judicial District, Division B ",,,,LA,,,,Kerry Anderson,P.O. Box 1025,,DeRidder,LA,70634,337-463-2100,W,M,,210,12/31/2014,01/01/2009,Judge Anderson -District Judge ,37th Judicial District ,,,,LA,,,,Don C. Burns,2071 Hwy. 850,,Grayson,LA,71435,318-649-2793,W,M,D,210,12/31/2014,01/01/2009,Judge Burns -District Judge ,38th Judicial District ,,,,LA,,,,Penelope Quinn Richard,4924 West Creole Hwy.,,Cameron,LA,70631,337-542-4310,W,F,D,210,12/31/2014,01/01/2009,Judge Richard -District Judge ,39th Judicial District ,,,,LA,,,,Lewis O. Sams,P.O. Box 383,,Coushatta,LA,71019,318-932-6241,W,M,D,210,12/31/2014,01/01/2009,Judge Sams -District Judge ,"40th JDC, Election Section 1, Division B ",,,,LA,,,,Mary Hotard Becnel,400 West Fifth St.,,LaPlace,LA,70068,985-652-6747,W,F,D,210,12/31/2014,01/01/2009,Judge Becnel -District Judge ,"40th JDC, Election Section 2, Division A ",,,,LA,,,,Madeline Jasmine,P.O. Box 189,,Edgard,LA,70049,985-497-8247,B,F,D,210,12/31/2014,01/01/2009,Judge Jasmine -District Judge ,"40th JDC, Election Section 3, Division C ",,,,LA,,,,Sterling Snowdy,P.O. Box 308,,Edgard,LA,70049,985-652-8939,W,M,D,210,12/31/2014,01/01/2009,Judge Snowdy -District Judge ,"42nd Judicial District Court, Division A ",,,,LA,,,,Robert E. Burgess,P.O. Box 1581,,Mansfield,LA,71052,318-872-5160,W,M,,210,12/31/2014,01/01/2009,Judge Burgess -District Judge ,"42nd Judicial District Court, Division B ",,,,LA,,,,Charles B. Adams,1172 Smyrna Rd.,,Keatchie,LA,71046-3006,318-933-8740,W,M,R,210,12/31/2014,01/01/2009,Judge Adams -Judge ,"Civil District Court, Division A ",,,,LA,,,,Tiffany Gautier Chase,Div. A,,New Orleans,LA,70112,504-581-9059,B,F,D,210,12/31/2014,01/01/2009,Judge Chase -Judge ,"Civil District Court, Division B ",,,,LA,,,,Rose Ledet,1229 Gov. Nicholls St.,,New Orleans,LA,70116,504-592-9204,B,F,D,210,12/31/2014,01/01/2009,Judge Ledet -Judge ,"Civil District Court, Division C ",,,,LA,,,,"Sidney H. Cates, IV",#8 DuckHook Dr.,,New Orleans,LA,70118,504-373-5645,B,M,D,210,12/31/2014,01/01/2009,Judge Cates -Judge ,"Civil District Court, Division D ",,,,LA,,,,"Lloyd J. Medley, Jr.",P.O. Box 51597,,New Orleans,LA,70151,504-491-6075,B,M,D,210,12/31/2014,01/22/2009,Judge Medley -Judge ,"Civil District Court, Division E ",,,,LA,,,,Madeleine M. Landrieu,"421 Loyola Ave., Div. E.",,New Orleans,LA,70112,504-592-9213,W,F,D,210,12/31/2014,01/01/2009,Judge Landrieu -Judge ,"Civil District Court, Division F ",,,,LA,,,,"Christopher ""Chris"" Bruno",170 Audubon Blvd.,,New Orleans,LA,70118,504-862-0108,W,M,D,210,12/31/2014,01/01/2009,Judge Bruno -Judge ,"Civil District Court, Division G ",,,,LA,,,,Robin Giarrusso,3557 Inwood Avenue,,New Orleans,LA,70131,504-433-9974,W,F,D,210,12/31/2014,01/01/2009,Judge Giarrusso -Judge ,"Civil District Court, Division H ",,,,LA,,,,Michael G. Bagneris,P.O. Box 56775,,New Orleans,LA,70156,504-289-6564,B,M,D,210,12/31/2014,01/01/2009,Judge Bagneris -Judge ,"Civil District Court, Division I ",,,,LA,,,,Piper Griffin,P.O. Box 51886,,New Orleans,LA,70151,504-451-6515,B,F,D,210,12/31/2014,01/01/2009,Judge Griffin -Judge ,"Civil District Court, Division J ",,,,LA,,,,"Paula Brown, ",3724 Clermont Dr.,,New Orleans,LA,70122-4737,504-473-4366,B,F,D,210,12/31/2014,02/17/2010,Judge Brown -Judge ,"Civil District Court, Division J ",,,,LA,,,,"James M. Williams, ",3500 N. Hullen St.,,Metairie,LA,70002,,,,,210,,10/12/2009,Mr. Williams -Judge ,"Civil District Court, Division K ",,,,LA,,,,Herbert A. Cade,3949 Mimosa Drive,,New Orleans,LA,70131,504-394-5339,B,M,D,210,12/31/2014,01/01/2009,Judge Cade -Judge ,"Civil District Court, Division L ",,,,LA,,,,Kern A. Reese,4824 Bancroft Dr.,,New Orleans,LA,70122,504-473-3253,B,M,D,210,12/31/2014,01/01/2009,Judge Reese -Judge ,"Civil District Court, Division M ",,,,LA,,,,Paulette Irons,4819 Bancroft Dr.,,New Orleans,LA,70122,504-237-6010,B,F,D,210,12/31/2014,01/01/2009,Judge Irons -Judge ,"Civil District Court, Division N ",,,,LA,,,,Ethel Julien,3200 Louisiana Avenue Parkway,,New Orleans,LA,70125,504-821-7015,B,F,D,210,12/31/2014,01/01/2009,Judge Julien -Judge ,"Criminal District Court, Section A ",,,,LA,,,,Laurie White,P.O. Box 30087,,New Orleans,LA,70190,504-289-7371,W,F,D,210,12/31/2014,01/01/2009,Judge White -Judge ,"Criminal District Court, Section B ",,,,LA,,,,Lynda Van Davis,"2700 Tulane Ave., Section ""B""",,New Orleans,LA,70119,504-658-9140,B,F,D,210,12/31/2014,01/01/2009,Judge Davis -Judge ,"Criminal District Court, Section C ",,,,LA,,,,Benedict J. Willard,1670 Sere St.,,New Orleans,LA,70122,504-658-9150,B,M,D,210,12/31/2014,01/01/2009,Judge Willard -Judge ,"Criminal District Court, Section D ",,,,LA,,,,Frank A. Marullo,7904 Birch St.,,New Orleans,LA,70118,504-861-0993,W,M,D,210,12/31/2014,01/01/2009,Judge Marullo -Judge ,"Criminal District Court, Section E ",,,,LA,,,,Keva Landrum-Johnson,P.O. Box 58333,,New Orleans,LA,70158,504-554-9777,B,F,D,210,12/31/2014,01/01/2009,Ms. Landrum-Johnson -Judge ,"Criminal District Court, Section F ",,,,LA,,,,Robin Pittman,2700 Tulane Ave.,,New Orleans,LA,70119,504-913-6581,B,F,D,210,12/31/2014,01/01/2009,Judge Pittman -Judge ,"Criminal District Court, Section G ",,,,LA,,,,Julian A. Parker,2700 Tulane Ave.,,New Orleans,LA,70119,504-658-9190,B,M,D,210,12/31/2014,01/01/2009,Judge Parker -Judge ,"Criminal District Court, Section H ",,,,LA,,,,Camille Buras,417 18th St.,,New Orleans,LA,70124,504-884-5832,W,F,D,210,12/31/2014,01/01/2009,Judge Buras -Judge ,"Criminal District Court, Section I ",,,,LA,,,,Karen Herman,P.O. Box 15646,,New Orleans,LA,70175,504-452-1147,W,F,D,210,12/31/2014,01/01/2009,Judge Herman -Judge ,"Criminal District Court, Section J ",,,,LA,,,,Darryl Derbigny,"2700 Tulane Ave., Section ""J""",,New Orleans,LA,70119,504-658-9320,B,M,D,210,12/31/2014,01/01/2009,Judge Derbigny -Judge ,"Criminal District Court, Section K ",,,,LA,,,,Arthur Hunter,P.O. Box 53404,,New Orleans,LA,70153,504-919-2868,B,M,D,210,12/31/2014,01/01/2009,Judge Hunter -Judge ,"Criminal District Court, Section L ",,,,LA,,,,Terry Q. Alarcon,6225 St. Bernard Avenue,,New Orleans,LA,70122,504-283-8582,W,M,D,210,12/31/2014,01/01/2009,Judge Alarcon -Magistrate ,"Magistrate Section, Criminal District Court ",,,,LA,,,,Gerard J. Hansen,"4007 St. Charles Ave., Unit 208",,,LA,70115,504-874-1596,W,M,D,210,12/31/2014,01/01/2009,Magistrate Hansen -District Attorney , 1st Judicial District ,501 Texas St.,,Shreveport,LA,71101-5400,318-226-6956,,Charles Rex Scott,9304 Melissa Way,,Shreveport,LA,71115-2527,318-797-1245,W,,D,215,01/11/2015,01/12/2009,Mr. Scott -District Attorney , 2nd Judicial District ,512 North Main,,Homer,LA,71040,318-927-4862,,Jonathan M. Stewart,2013 Hwy. 794,,Gibsland,LA,71028,318-263-2031,W,M,D,215,01/11/2015,01/12/2009,Mr. Stewart -District Attorney , 3rd Judicial District ,P.O. Box 777,,Ruston,LA,71273-0777 ,318-251-5100,,Robert W. Levy,One Ridgecrest Dr.,,Vienna,LA,71235,318-251-5100,W,M,D,215,01/11/2015,01/12/2009,Mr. Levy -District Attorney , 4th Judicial District ,P.O. Box 1652,,Monroe,LA,71210,318-388-4720,,Jerry L. Jones,P.O. Box 52,,Mer Rouge,LA,71261,318-647-3364,W,M,D,215,01/11/2015,01/12/2009,Mr. Jones -District Attorney , 5th Judicial District ,P.O. Box 389,,Rayville,LA,71269,318-728-3227,,"William R. ""Billy"" Coenen, Jr.",P.O. Box 389,,Rayville,LA,71269,318-728-3227,W,M,D,215,01/11/2015,01/12/2009,Mr. Coenen -District Attorney , 6th Judicial District ,P.O. Box 43,,Tallulah,LA,71284-0043 ,318-574-4771,,James E. Paxton,P. O. Box 97,,St. Joseph,LA,71366,318-766-4892,W,M,D,215,01/11/2015,01/12/2009,Mr. Paxton -District Attorney , 7th Judicial District ,"4001 Carter St., Ste. 9",,Vidalia,LA,71373,318-336-5526,,Bradley R. Burget,"4001 Carter St., Ste. 9",,Vidalia,LA,71373,318-336-5526,W,M,D,215,01/11/2015,01/12/2009,Mr. Burget -District Attorney , 8th Judicial District ,P.O. Box 1374,,Winnfield,LA,71483-1374,318-628-2141,,"R. C. ""Chris"" Nevils",407 W. Main St.,,Winnfield,LA,71483,318-628-2141,W,M,D,215,01/11/2015,01/12/2009,Mr. Nevils -District Attorney , 9th Judicial District ,P.O. Drawer 1472,,Alexandria,LA,71309,318-473-6650,,"James C. ""Jam"" Downs",P.O. Box 269,,Alexandria,LA,71309,318-448-3439,W,M,D,215,01/11/2015,01/12/2009,Mr. Downs -District Attorney ,10th Judicial District ,P.O. Box 838,,Natchitoches,LA,71458-0838 ,318-357-2214,,Van H. Kyzar,1946 Williams Ave.,,Natchitoches,LA,71457,318-352-6585,W,M,D,215,01/11/2015,01/12/2009,Mr. Kyzar -District Attorney ,11th Judicial District ,P.O. Box 1557,,Many,LA,71449,318-256-3072,,Don M. Burkett,540 N. Courthouse St.,,Many,LA,71449,318-471-7101,W,M,R,215,01/11/2015,01/12/2009,Mr. Burkett -District Attorney ,12th Judicial District ,P.O. Box 608,,Marksville,LA,71351,318-253-6587,,"Charles ""Charlie"" Riddle, III",P.O. Box 315,,Marksville,LA,71351,318-253-4551,W,M,D,215,01/11/2015,01/12/2009,Mr. Riddle -District Attorney ,13th Judicial District ,P.O. Box 450,,Ville Platte,LA,70586,337-363-3438,,Trent Brignac,1726 Chicot Park Rd.,,Ville Platte,LA,70586,337-363-0492,W,M,D,215,01/11/2015,01/12/2009,Mr. Brignac -District Attorney ,14th Judicial District ,1020 Ryan St.,,Lake Charles,LA,70602,337-437-3400,,John DeRosier,3600 Lake St.,,Lake Charles,LA,70605,337-477-3599,W,M,D,215,01/11/2015,01/12/2009,Mr. DeRosier -District Attorney ,15th Judicial District ,800 S. Buchanan St.,,Lafayette,LA,70502,318-232-5170,,Michael Harson,100 Demas Dr.,,Lafayette,LA,70506,337-984-9794,W,M,D,215,01/11/2015,01/12/2009,Mr. Harson -District Attorney ,16th Judicial District ,"Courthouse Bldg., Ste. 200",,New Iberia,LA,70560-4583,337-369-4420,,J. Phil Haney,2103 Warwick St.,,New Iberia,LA,70563,337-229-8222,W,M,D,215,01/11/2015,01/12/2009,Mr. Haney -District Attorney ,17th Judicial District ,P.O. Box 431,,Thibodaux,LA,70301,985-447-2003,,"Camille A. ""Cam"" Morvant, II",421 Plater Dr.,,Thibodaux,LA,70301,985-446-6291,W,M,D,215,01/11/2015,01/12/2009,Mr. Morvant -District Attorney ,18th Judicial District ,P.O. Drawer 880,,Plaquemine,LA,70765-0880 ,225-687-5210,,"Richard J. ""Ricky"" Ward, Jr.",P.O. Box 309,,Maringouin,LA,70757,225-687-5210,W,M,D,215,01/11/2015,01/12/2009,Mr. Ward -District Attorney ,19th Judicial District ,222 St. Louis St.,,Baton Rouge,LA,70802,225-389-3400,,Hillar Moore,6513 Perkins Rd.,,Baton Rouge,LA,70808,225-757-0100,W,M,D,215,01/11/2015,01/12/2009,Mr. Moore -District Attorney ,20th Judicial District ,P.O. Box 429,,Jackson,LA,70748,225-634-2535,,"""Sam"" D'Aquilla",P. O. Box 429,,Jackson,LA,70748,225-634-2535,W,M,D,215,01/11/2015,01/12/2009,Mr. D'Aquilla -District Attorney ,21st Judicial District ,P.O. Drawer 639,,Amite,LA,70422,985-748-7890,,Scott M. Perrilloux,17120 Natures Trace,,Hammond,LA,70403,985-542-6985,W,M,R,215,01/11/2015,01/12/2009,Mr. Perrilloux -District Attorney ,22nd Judicial District ,428 East Boston St.,,Covington,LA,70433,985-898-2392,,Walter P. Reed,701 N. Columbia St.,,Covington,LA,70433,985-809-8383,W,M,R,215,01/11/2015,01/12/2009,Mr. Reed -District Attorney ,23rd Judicial District ,P.O. Drawer 279,,Napoleonville,LA,70390,504-369-3568,,Ricky Babin,12420 Fernand Rd.,,Gonzales,LA,70737,225-677-8490,W,M,D,215,01/11/2015,01/12/2009,Mr. Babin -District Attorney ,24th Judicial District ,Courthouse Annex,,Gretna,LA,70053,,,"Paul D. Connick, Jr.",113 Beverly Dr.,,Metairie,LA,70001,504-835-0754,W,M,D,215,01/11/2015,01/12/2009,Mr. Connick -District Attorney ,25th Judicial District ,Courthouse,,Pointe-a-la-hache,LA,70082,504-392-6690,,Charles J. Ballay,1 Park Riverwoods,,Belle Chasse,LA,70037,504-394-2690,W,M,D,215,01/11/2015,01/12/2009,Mr. Ballay -District Attorney ,26th Judicial District ,P.O. Box 69,,Benton,LA,71006,318-965-2332,,Schuyler Marvin,700 Gladney,,Minden,LA,71055,318-377-3593,W,M,R,215,01/11/2015,01/12/2009,Mr. Marvin -District Attorney ,27th Judicial District ,P.O. Drawer 1968,,Opelousas,LA,70571,337-948-3041,,Earl Taylor,P. O. Drawer 1968,,Opelousas,LA,70571-1968,337-948-3007,W,M,D,215,01/11/2015,01/12/2009,Mr. Taylor -District Attorney ,28th Judicial District ,P.O. Box 1406,,Jena,LA,71342,318-992-2603,,Reed Walters,P.O. Box 1066,,Jena,LA,71342,318-992-8282,W,M,D,215,01/11/2015,01/12/2009,Mr. Walters -District Attorney ,29th Judicial District ,107 Camelia Ct.,,Luling,LA,70070,985-785-0374,,"Harry J. Morel, Jr.",107 Camellia Ct.,,Luling,LA,70070,985-785-0374,W,M,D,215,01/11/2015,01/12/2009,Mr. Morel -District Attorney ,30th Judicial District ,P. O. Box 466,,Leesville,LA,71446,337-239-3742,,Asa Skinner,124 Fullerton Dr.,,Leesville,LA,71446,337-238-1951,W,M,,215,01/11/2015,01/12/2009,Ms. Skinner -District Attorney ,31st Judicial District ,603 Lucy St.,,Jennings,LA,70546,337-824-0315,,Michael C. Cassidy,603 Lucy St.,,Jennings,LA,70546,337-824-0315,W,M,D,215,01/11/2015,01/12/2009,Mr. Cassidy -District Attorney ,32nd Judicial District ,"7856 Main St., Courthouse Annex, Ste. 220",,Houma,LA,70360,985-873-6500,,"""Joe"" Waitz, Jr.",11 Summerfield Dr.,,Houma,LA,70360-7243,985-868-0704,W,M,D,215,01/11/2015,01/12/2009,Mr. Waitz -District Attorney ,33rd Judicial District ,1273 Old Pump Rd.,,Kinder,LA,70648,318-738-5561,,H. Todd Nesom,P. O. Box 839,,Oberlin,LA,70655,318-639-2641,W,M,D,215,01/11/2015,01/12/2009,Mr. Nesom -District Attorney ,34th Judicial District ,P.O. Box 947,,Chalmette,LA,70044-0947 ,504-271-1658,,"John F. ""Jack"" Rowley",4625 East St. Bernard Hwy.,,Meraux,LA,70075,504-271-0111,W,M,D,215,01/11/2015,01/12/2009,Mr. Rowley -District Attorney ,35th Judicial District ,"Courthouse, 200 Main St., Ste. 203",,Colfax,LA,71417,318-627-3205,,"James P. ""Jay"" Lemoine",144 Red Oak Ln.,,Dry Prong,LA,71423,318-627-3205,W,M,D,215,01/11/2015,01/12/2009,Mr. Lemoine -District Attorney ,36th Judicial District ,P.O. Box 99,,DeRidder,LA,70634,337-463-5578,,David Burton,1324 Woodbrook Dr.,,DeRidder,LA,70634,337-463-4601,W,M,D,215,01/11/2015,01/12/2009,Mr. Burton -District Attorney ,37th Judicial District ,P.O. Box 119,,Columbia,LA,71418,318-649-2508,,W. Mark McKee,4719 Hwy. 559,,Columbia,LA,71418,318-649-2005,W,M,D,215,01/11/2015,01/12/2009,Mr. McKee -District Attorney ,38th Judicial District ,P.O. Drawer 280,,Cameron,LA,70631,337-775-5713,,Cecil R. Sanner,190 Raymond Sanner Ln.,,Hackberry,LA,70645,337-775-5713,W,M,D,215,01/11/2015,01/12/2009,Mr. Sanner -District Attorney ,39th Judicial District ,P.O. Box 606,,Coushatta,LA,71019,318-932-4035,,Julie C. Jones,P.O. Box 54,,Coushatta,LA,71019,318-932-9323,W,F,D,215,01/11/2015,01/12/2009,Ms. Jones -District Attorney ,40th Judicial District ,1916 Madewood Dr.,,LaPlace,LA,70068,985-652-9757,,"Thomas ""Tom"" Daley",2037 Colonial Dr.,,Laplace,LA,70068,985-652-8779,,,,215,01/11/2015,01/12/2009,Mr. Daley -District Attorney ,42nd Judicial District Court ,,,,LA,,,,"Richard Z. Johnson, Jr.",373 Ginger St.,,Mansfield,LA,71052,318-872-1830,B,M,D,215,01/11/2015,01/01/2009,Mr. Johnson -District Attorney ,Criminal District Court ,2700 Tulane Ave.,,New Orleans,LA,70119,504-827-2414,,"Leon A. Cannizzaro, Jr.",7223 Ring St.,,New Orleans,LA,70124,504-282-0175,W,M,D,215,01/11/2015,11/14/2008,Mr. Cannizzaro -City Judge ,"City Court, City of Eunice ",P. O. Box 591,,Eunice,LA,70535,318-457-6535,,Lynette Young Feucht,430 S. Fifth St.,,Eunice,LA,70535,337-457-6535,W,F,D,250,12/31/2014,01/01/2009,Judge Feucht -"City Judge, City Court ","Elec. Dist. 1, Div. A, City of Shreveport ",1244 Texas Ave.,,Shreveport,LA,71101,318-673-5870,,R. Lee Irvin,6144 River Rd.,,Shreveport,LA,71105,318-673-5870,W,M,R,250,12/31/2014,01/01/2009,Judge Irvin -"City Judge, City Court ","Elec. Dist. 1, Div. B, City of Shreveport ",1244 Texas Ave.,,Shreveport,LA,71101,318-673-5885,,"""Bill"" Kelly",4618 Fern Ave.,,Shreveport,LA,71105-3118,318-861-1185,W,M,D,250,12/31/2014,01/01/2009,Judge Kelly -"City Judge, City Court ","Elec. Dist. 2, Div. C, City of Shreveport ",1244 Texas Ave.,,Shreveport,LA,71101,318-673-5890,,Pammela Lattier,107 Waters Edge Dr.,,Shreveport,LA,71106-7775,318-798-4045,B,,D,250,12/31/2014,01/01/2009,Judge Lattier -"City Judge, City Court ","Elec. Dist. 2, Div. D, City of Shreveport ",1244 Texas Ave.,,Shreveport,LA,71101,318-673-5878,,Randy E. Collins,3015 Pines Rd.,,Shreveport,LA,71119,318-525-1229,B,M,D,250,12/31/2014,01/01/2009,Judge Collins -City Marshal ,"City Court, City of Eunice ",P. O. Box 591,,Eunice,LA,70535-1106,337-457-6580,,Terry J. Darbonne,1250 Phillip Ave.,,Eunice,LA,70535,337-305-0353,W,M,D,250,12/31/2014,01/01/2009,Marshal Darbonne -City Marshal ,"City Court, City of Shreveport ",1244 Texas Ave.,,Shreveport,LA,71101,318-673-6800,,Charlie Caldwell,9209 Midvale Dr.,,Shreveport,LA,71118,318-560-2347,B,M,D,250,12/31/2014,01/01/2009,Marshal Caldwell -Mayor ,City of Broussard ,416 E. Main,,Broussard,LA,,337-837-6681,,Charles E. Langlinais,612 W. Main St.,,Broussard,LA,70518,337-837-5811,W,M,D,300,12/31/2010,01/01/2007,Mayor Langlinais -Mayor ,City of DeRidder ,200 South Jefferson,,DeRidder,LA,,337-462-8900,,"""Ron"" Roberts, ",1916 Dr. Beckom Dr.,,DeRidder,LA,70634-5313,337-462-2613,W,M,N,300 -Mayor ,City of DeRidder ,200 South Jefferson,,DeRidder,LA,,337-462-8900,,Ron Roberts,1916 Doctor Beckcom Dr.,,DeRidder,LA,70634,337-462-2613,W,M,D,300,06/30/2010,07/01/2006,Mayor Roberts -Mayor ,City of Eunice ,P. O. Box 1106,,Eunice,LA,,337-457-6516,,"Robert ""Bob"" Morris",331 W. Maple Ave.,,Eunice,LA,70535,337-581-4108,W,M,R,300,12/31/2010,01/01/2007,Mr. Morris -Mayor ,City of Shreveport ,P. O. Box 31109,,Shreveport,LA,,318-673-5262,,Cedric B. Glover,P. O. Box 31109,,Shreveport,LA,71130,318-226-5665,,,D,300,11/22/2010,11/28/2006,Mayor Glover -Mayor ,Town of Arnaudville ,P. O. Box 1010,,Arnaudville,LA,,337-754-5911,,"""Kathy"" Richard",P.O. Box 294,,Arnaudville,LA,70512,337-754-5137,W,F,D,300,12/31/2010,01/01/2007,Mayor Richard -Mayor ,Town of Basile ,P. O. Box 308,,Basile,LA,,337-432-6693,,Berline B. Sonnier,1205 S. Mildred St.,,Basile,LA,70515,337-658-2651,W,F,D,300,12/31/2010,01/01/2007,Mayor Sonnier -Mayor ,Town of Delcambre ,107 N. Railroad,,Delcambre,LA,,337-685-4462,,Carol Broussard,312 E. LeBlanc St.,,Delcambre,LA,70528,337-685-2899,W,M,D,300,12/31/2012,01/01/2009,Mayor Broussard -Mayor ,Town of Duson ,P. O. Box 10,,Duson,LA,,337-873-6754,,"Carolyn ""Susie"" Lagneaux",P.O. Box 6,,Duson,LA,70529,337-873-0261,W,F,D,300,12/31/2010,10/30/2007,Mayor Lagneaux -Mayor ,Village of Downsville ,P. O. Box 128,,Downsville,LA,,318-982-5344,,Reggie Skains,P.O. Box 98,,Downsville,LA,71234,318-982-5341,W,M,D,300,12/31/2010,01/01/2007,Mr. Skains -Mayor ,Village of Junction City ,P. O. Box 142,,Junction City,LA,,318-986-4459,,Preston Rogers,P.O. Box 153,,Junction City,LA,71749,318-986-5331,W,M,D,300,12/31/2010,01/01/2007,Mr. Rogers -Chief of Police ,City of Broussard ,416 E. Main,,Broussard,LA,70518,337-837-6681,,Brannon J. Decou,1010 N. Larriviere Rd.,,Youngsville,LA,70592,337-839-0318,W,M,R,305,12/31/2010,01/01/2007 -Chief of Police ,City of Eunice ,P. O. Box 1106,,Eunice,LA,70535-1106,337-457-6516,,"Gary ""Goose"" Fontenot",231 Aymond St.,,Eunice,LA,70535,337-546-6911,W,M,O,305,12/31/2010,01/01/2007,Chief Fontenot -Chief of Police ,Town of Arnaudville ,P. O. Box 1010,,Arnaudville,LA,70512-1010,337-754-5911,,Richard Mizzi,P.O. Box 391,,Arnaudville,LA,70512,337-754-9188,W,M,,305,12/31/2010,01/01/2007,Mr. Mizzi -Chief of Police ,Town of Basile ,P. O. Box 308,,Basile,LA,70515-0308 ,337-432-6693,,"Allen Ivory, Jr.",P.O. Box 619,,Basile,LA,70515,337-432-5579,B,M,D,305,12/31/2010,01/01/2007,Mr. Ivory -Chief of Police ,Town of Delcambre ,107 N. Railroad,,Delcambre,LA,70528-3099,337-985-4462,,James Broussard,P. O. Box 192,,Delcambre,LA,70528-0192 ,337-685-4652,W,M,D,305,12/31/2012,01/01/2009,Chief Broussard -Chief of Police ,Town of Duson ,P. O. Box 10,,Duson,LA,70529-0010 ,337-873-6754,,"Frank Andrew, III",P.O. Box 10,,Duson,LA,70529,,,,,305,,06/15/2009,Chief Andrews -Chief of Police ,Village of Downsville ,P. O. Box 128,,Downsville,LA,71234,318-982-5344,,Earl Roberts,889 Arthur McDaniel Rd.,,Downsville,LA,71234,318-982-5838,W,M,D,305,12/31/2010,01/01/2007,Mr. Roberts -Chief of Police ,Village of Junction City ,P. O. Box 142,,Junction City,LA,71749,318-986-4459,,Clarence McLelland,P.O. Box 673,,Junction City,LA,71749,318-986-5586,W,M,D,305,12/31/2010,01/01/2007,Mr. McLelland -Alderman at Large ,City of Eunice ,P. O. Box 1106,,Eunice,LA,70535-1106,337-457-6516,,"I. Jackson ""Jack"" Burson, Jr.",P.O. Box 985,,1unice,LA,70535,337-457-1227,W,M,D,308,12/31/2010,01/01/2007,Mr. Burson -Alderman at Large ,Town of Basile ,P. O. Box 308,,Basile,LA,70515-0308 ,337-432-6693,,"""Ronnie"" Denette",P.O. Box 294,,Basile,LA,70515,337-432-5403,W,M,,308,12/31/2010,01/01/2007,Mr. Denette -Councilman at Large ,City of Broussard ,416 E. Main,,Broussard,LA,70518,,,Johnnie M. Foco,405 E. Fairfield Rd.,,Broussard,LA,70518,337-837-6342,W,M,R,308,12/31/2010,01/01/2007 -Councilman at Large ,City of DeRidder ,200 South Jefferson,,DeRidder,LA,70634,337-462-2461,,Vincent Labue,P.O. Box 125,,DeRidder,LA,70634,337-463-6800,W,M,D,308,06/30/2010,07/01/2006,Mr. Labue -Councilman at Large ,City of DeRidder ,200 South Jefferson,,DeRidder,LA,70634,337-462-2461,,Hayward Steele,202 S. Helen St.,,DeRidder,LA,70634,337-463-4655,B,M,D,308,06/30/2010,07/01/2006,Mr. Steele -Alderman ,"District 1, Town of Basile ",P. O. Box 308,,Basile,LA,70515-0308 ,337-432-6693,,Rodney J. Bellon,1637 Duplechin St.,,Basile,LA,70515,337-432-6878,W,M,D,310,12/31/2010,01/01/2007,Mr. Bellon: -Alderman ,"District 1, Town of Delcambre ",107 N. Railroad,,Delcambre,LA,70528-3099,337-685-4462,,"Scott Peter Saunier, ",512 N. Railroad St.,,Delcambre,LA,70528,337-685-2485,W,M,,310,12/31/2012,01/01/2009,Mr. Saunier -Alderman ,"District 2, Town of Basile ",P. O. Box 308,,Basile,LA,70515-0308 ,337-432-6693,,Mona Fontenot Jenkins,P.O. Box 819,,Basile,LA,70515,337-789-7525,W,F,,310,12/31/2010,01/01/2007,Ms. Jenkins -Alderman ,"District 2, Town of Delcambre ",107 N. Railroad,,Delcambre,LA,70528-3099,337-685-4462,,Sarah Ann Trahan,709 Francois St.,,Delcambre,LA,70528,337-685-1021,B,F,D,310,12/31/2012,01/01/2009,Ms. Trahan -Alderman ,"District 3, Town of Basile ",P. O. Box 308,,Basile,LA,70515-0308 ,337-432-6693,,Jessica Denette,P.O. Box 294,,Basile,LA,70515,337-432-5403,W,F,R,310,12/31/2010,01/01/2007,Ms. Denette -Alderman ,"District 3, Town of Delcambre ",107 N. Railroad,,Delcambre,LA,70528-3099,337-685-4462,,"Timothy ""Slim"" Derise",115 S. St. Peter St.,,Delcambre,LA,70528,337-577-2690,W,M,D,310,12/31/2012,01/01/2009,Mr. Derise -Alderman ,"District 4, Town of Basile ",P. O. Box 308,,Basile,LA,70515-0308 ,337-432-6693,,"Frank Ceasar, Sr.",P.O. Box 601,,Basile,LA,70515,337-432-5507,B,M,D,310,12/31/2010,01/01/2007,Mr. Ceasar -Alderman ,"District 4, Town of Delcambre ",107 N. Railroad,,Delcambre,LA,70528-3099,337-685-4462,,"Donald ""Phonse"" Martin",217 S. Pelloat St.,,Delcambre,LA,70528,337-685-2790,,,D,310,12/31/2012,01/01/2009,Mr. Martin -Alderman ,"District 5, Town of Delcambre ",107 N. Railroad,,Delcambre,LA,70528-3099,337-685-4462,,Mildred D. Delcambre,308 S. President St.,,Delcambre,LA,70528,337-685-2247,W,F,D,310,12/31/2012,01/01/2009,Ms. Delcambre -Alderman ,Town of Arnaudville ,P. O. Box 1010,,Arnaudville,LA,70512-1010,337-754-5911,,"Chester ""Doc"" Broussard",478 Market St.,,Arnaudville,LA,70512,,W,M,R,310,12/31/2010,01/01/2007,Mr. Broussard -Alderman ,Town of Arnaudville ,P. O. Box 1010,,Arnaudville,LA,70512-1010,337-754-5911,,Annette K. Guidry,226 E. Pound St.,,Arnaudville,LA,70512,337-207-2030,W,F,D,310,12/31/2010,01/01/2007,Mr. Guidry -Alderman ,Town of Arnaudville ,P. O. Box 1010,,Arnaudville,LA,70512-1010,337-754-5911,,Ricky J. Lagrange,P.O. Box 617,,Arnaudville,LA,70512,337-754-7190,W,M,D,310,12/31/2010,01/01/2007,Mr. Lagrange -Alderman ,Town of Arnaudville ,P. O. Box 1010,,Arnaudville,LA,70512-1010,337-754-5911,,Todd Meche,236 St. Landry Ave.,,Arnaudville,LA,70512,337-754-5078,W,M,R,310,12/31/2010,01/01/2007,Mr. Meche -Alderman ,Town of Arnaudville ,P. O. Box 1010,,Arnaudville,LA,70512-1010,337-754-5911,,"Louis E. Stelly, Jr.",P.O. Box 268,,Arnaudville,LA,70512,337-754-5936,W,M,D,310,12/31/2010,01/01/2007,Mr. Stelly -Alderman ,Town of Duson ,P. O. Box 10,,Duson,LA,70529-0010 ,337-873-6754,,Gerald Alleman,P.O. Box 581,,Duson,LA,70529,337-873-8810,W,M,D,310,12/31/2010,01/01/2007,Mr. Alleman -Alderman ,Town of Duson ,P. O. Box 10,,Duson,LA,70529-0010 ,337-873-6754,,Dwayne Bowers,P.O. Box 987,,Duson,LA,70529,337-873-3848,W,M,D,310,12/31/2010,01/01/2007,Mr. Bowers -Alderman ,Town of Duson ,P. O. Box 10,,Duson,LA,70529-0010 ,337-873-6754,,Eugene Cahanin,P.O. Box 67,,Duson,LA,70529,337-873-8487,W,M,D,310,12/31/2010,01/01/2007,Mr. Cahanin -Alderman ,Town of Duson ,P. O. Box 10,,Duson,LA,70529-0010 ,337-873-6754,,"""Jimmy"" Champagne",P.O. Box 551,,Duson,LA,70529,337-873-8486,W,M,D,310,12/31/2010,01/01/2007,Mr. Champagne -Alderman ,Town of Duson ,P. O. Box 10,,Duson,LA,70529-0010 ,337-873-6754,,Alvin Felix,P.O. Box 576,,Duson,LA,70529,337-873-8604,B,M,D,310,12/31/2010,01/01/2007,Mr.Felix -Alderman ,Village of Downsville ,P. O. Box 128,,Downsville,LA,71234,318-982-5344,,Sheree Allen,P.O. Box 65,,Downsville,LA,71234,318-982-5900,W,F,R,310,12/31/2010,01/01/2007,Ms. Allen -Alderman ,Village of Downsville ,P. O. Box 128,,Downsville,LA,71234,318-982-5344,,Myron Toft,P.O. Box 127,,Donaldsonville,LA,71234,318-982-7547,W,M,D,310,12/31/2010,01/01/2007,Mr. Toft -Alderman ,Village of Downsville ,P. O. Box 128,,Downsville,LA,71234,318-982-5344,,John Edward Wallace,P.O. Box 161,,Downsville,LA,71234,318-982-7257,W,M,D,310,12/31/2010,01/01/2007,Mr. Wallace -Alderman ,Village of Junction City ,P. O. Box 142,,Junction City,LA,71749,318-986-4459,,"""Ronnie"" Daniels",P.O. Box 294,,Junction City,LA,71749,318-986-5607,W,M,D,310,12/31/2010,01/01/2007,Mr. Daniels -Alderman ,Village of Junction City ,P. O. Box 142,,Junction City,LA,71749,318-986-4459,,Terry Enis,P.O. Box 41,,Junction City,LA,71749,318-986-4982,W,M,D,310,12/31/2010,01/01/2007,Mr. Enis -Alderman ,Village of Junction City ,P. O. Box 142,,Junction City,LA,71749,318-986-4459,,Arnold Jones,P.O. Box 41,,Junction City,LA,71749,318-986-5177,W,M,D,310,12/31/2010,01/01/2007,Mr. Jones -Alderman ,"Ward 1, City of Eunice ",P. O. Box 1106,,Eunice,LA,70535-1106,337-457-6516,,"Wallace ""Bubba"" Bourque",1345 E. Laurel Ave.,,Eunice,LA,70535,337-384-6367,W,M,R,310,12/31/2010,01/01/2007,Mr. Bourque -Alderman ,"Ward 2, City of Eunice ",P. O. Box 1106,,Eunice,LA,70535-1106,337-457-6516,,Germaine Simpson,P. O. Box 784,,Eunice,LA,70535,337-580-5635,B,F,D,310,12/31/2010,10/27/2009,Mr. Simpson -Alderman ,"Ward 3, City of Eunice ",P. O. Box 1106,,Eunice,LA,70535-1106,337-457-6516,,Chawana V. Fontenot,P.O. Box 1162,,Eunice,LA,70535,337-457-8260,W,F,R,310,12/31/2010,01/01/2007,Mr. Fontenot -Alderman ,"Ward 4, City of Eunice ",P. O. Box 1106,,Eunice,LA,70535-1106,337-457-6516,,"""Dale"" Soileau",441 S. Sixth St.,,Eunice,LA,70535,337-457-7727,W,M,D,310,12/31/2010,01/01/2007,Mr. Soileau -Councilman ,"District A, City of Shreveport ",P. O. Box 31109,,Shreveport,LA,71130-1109,318-673-5262,,"Calvin ""Ben"" Lester, Jr.",3907 Eddy Pl.,,Shreveport,LA,71107,318-675-0331,B,M,D,310,11/22/2010,11/28/2006,Mr. Lester -Councilman ,"District B, City of Shreveport ",P. O. Box 31109,,Shreveport,LA,71130-1109,318-673-5262,,"""Monty"" Walford",960 McCormick St.,,Shreveport,LA,71104-4820,318-868-6281,W,M,D,310,11/22/2010,11/28/2006,Mr. Walford -Councilman ,"District C, City of Shreveport ",P. O. Box 31109,,Shreveport,LA,71130-1109,318-673-5262,,Michael Long,236 Preston Ave.,,Shreveport,LA,71105-3306,318-208-3400,W,M,R,310,11/22/2010,11/28/2006,Mr. Long -Councilman ,"District D, City of Shreveport ",P. O. Box 31109,,Shreveport,LA,71130-1109,318-673-5262,,Bryan Wooley,9114 Campfire Ln.,,Shreveport,LA,71115,318-780-8838,W,M,R,310,11/22/2010,11/28/2006,Mr. Wooley -Councilman ,"District E, City of Shreveport ",P. O. Box 31109,,Shreveport,LA,71130-1109,318-673-5262,,"""Ron"" Webb",2406 Helmsdale Ct.,,Shreveport,LA,71118-4546,318-564-8080,W,M,R,310,11/22/2010,11/28/2006,Mr. Webb -Councilman ,"District F, City of Shreveport ",P. O. Box 31109,,Shreveport,LA,71130-1109,318-673-5262,,Joe Shyne,4532 Alton St.,,Shreveport,LA,71109-6808,318-636-2617,B,M,D,310,11/22/2010,11/28/2006,Mr. Shyne -Councilman ,"District G, City of Shreveport ",P. O. Box 31109,,Shreveport,LA,71130-1109,318-673-5262,,Joyce Bowman,3623 Milton St.,,Shreveport,LA,71109-3327,318-635-6379,B,F,D,310,11/22/2010,11/28/2006,Ms. Bowman -Councilman ,"District 1, City of Broussard ",416 E. Main,,Broussard,LA,70518,337-837-6681,,Terry J. Guilbeau,110 Bismark Dr.,,Broussard,LA,70518,337-839-1904,W,M,D,310,12/31/2010,01/01/2007 -Councilman ,"District 1, City of DeRidder ",200 South Jefferson,,DeRidder,LA,70634,337-462-2461,,"Robert ""Bo"" Rice",326 Branch St.,,DeRidder,LA,70634,337-462-0316,B,M,D,310,06/30/2010,07/01/2006,Mr. Rice -Councilman ,"District 1, City of DeRidder ",200 South Jefferson,,DeRidder,LA,70634,337-462-2461,,"Robert ""Bo"" Rice, ",326 Branch St.,,DeRidder,LA,70634-4102,337-462-0316,B,M,D,310 -Councilman ,"District 2, City of Broussard ",416 E. Main,,Broussard,LA,70518,337-837-6681,,David M. Bonin,300 S. St. Pierre St.,,Broussard,LA,70518,337-207-8871,W,M,R,310,12/31/2010,01/01/2007 -Councilman ,"District 2, City of DeRidder ",200 South Jefferson,,DeRidder,LA,70634,337-462-2461,,Jonnie F. Mango,405 Elton Mango Dr.,,DeRidder,LA,70634,337-463-4667,B,F,D,310,06/30/2010,07/01/2006,Ms. Mango -Councilman ,"District 3, City of Broussard ",416 E. Main,,Broussard,LA,70518,337-837-6681,,Keith G. Rousseau,301 Rue De Canne,,Broussard,LA,70518,337-837-1367,W,M,R,310,12/31/2010,01/01/2007 -Councilman ,"District 3, City of DeRidder ",200 South Jefferson,,DeRidder,LA,70634,337-462-2461,,Gordon Jenkins,817 Chinquapin,,DeRidder,LA,70634,337-463-9977,W,M,,310,06/30/2010,07/01/2006,Mr. Jenkins -Councilman ,"District 3, City of DeRidder ",200 South Jefferson,,DeRidder,LA,70634,337-462-2461,,"Gordon C. Jenkins, ",817 Chinquapin Dr.,,DeRidder,LA,70634-5322,337-463-9977,W,M,N,310 -Councilman ,"District 4, City of Broussard ",416 E. Main,,Broussard,LA,70518,337-837-6681,,Gertrude Batiste,216 Gustave St.,,Broussard,LA,70518,337-837-3349,B,F,D,310,12/31/2010,01/01/2007 -Councilman ,"District 4, City of DeRidder ",200 South Jefferson,,DeRidder,LA,70634,337-462-2461,,Elizabeth S. Granger,710 N. Frusha Dr.,,DeRidder,LA,70634,337-460-9161,W,F,,310,06/30/2010,04/14/2009,Ms. Granger -Councilman ,"District 4, City of DeRidder ",200 South Jefferson,,DeRidder,LA,70634,337-462-2461,,"Elizabeth Storer Granger, ",710 N. Frusha Dr.,,DeRidder,LA,70634-3222,337-460-9161,W,F,N,310 -Councilman ,"District 5, City of Broussard ",416 E. Main,,Broussard,LA,70518,337-837-6681,,Kenny Higginbotham,120 Beau Clos Ln.,,Broussard,LA,70518,337-837-1723,W,M,R,310,12/31/2010,01/01/2007,Mr. Higginbotham -Councilman ,"District 5, City of DeRidder ",200 South Jefferson,,DeRidder,LA,70634,337-462-2461,,Joseph Siciliano,1100 Christina Dr.,,DeRidder,LA,70634,337-462-6965,W,M,R,310,06/30/2010,06/04/2007,Mr. Siciliano -Councilman ,"District 5, City of DeRidder ",200 South Jefferson,,DeRidder,LA,70634,337-462-2461,,"Joseph ""Joe"" Siciliano, ",1100 Christina Dr.,,DeRidder,LA,70634-2940,337-462-6965,W,M,R,310 -Councilman ,"District 6, City of Broussard ",416 E. Main,,Broussard,LA,70518,337-837-6681,,"Albert ""Nookie"" Romero",206 W. Railroad,,Broussard,LA,70518,337-837-2577,W,M,D,310,12/31/2010,01/01/2007,Mr. Romero -DPEC Member ,at Large ,,,,LA,,,ACADIA,"""Billie"" Fulkerson",324 W Northern Ave.,,Crowley,LA,70526,337-783-6450,W,F,D,054,02/20/2012,02/20/2008,Mr. Fulkerson -DPEC Member ,at Large ,,,,LA,,,ACADIA,Jerrl L. Thompson,262 Thompson Rd.,,Crowley,LA,70526,337-783-6434,W,M,D,054,02/20/2012,02/20/2008,Mr. Thompson -DPEC Member ,District 1 ,,,,LA,,,ACADIA,,,,,,,,,,,056 -DPEC Member ,District 2 ,,,,LA,,,ACADIA,,,,,,,,,,,056 -DPEC Member ,District 3 ,,,,LA,,,ACADIA,,,,,,,,,,,056 -DPEC Member ,District 4 ,,,,LA,,,ACADIA,,,,,,,,,,,056 -DPEC Member ,District 5 ,,,,LA,,,ACADIA,,,,,,,,,,,056 -DPEC Member ,District 6 ,,,,LA,,,ACADIA,,,,,,,,,,,056 -DPEC Member ,District 7 ,,,,LA,,,ACADIA,,,,,,,,,,,056 -DPEC Member ,District 8 ,,,,LA,,,ACADIA,,,,,,,,,,,056 -RPEC Member ,at Large ,,,,LA,,,ACADIA,Nick Bouterie,110 st. Peter St.,,Iota,LA,70543,337-280-7984,,,,064,,05/05/2008,Mr. Bouterie -RPEC Member ,at Large ,,,,LA,,,ACADIA,Jud Gautreaux,P.O. Box 1192,,Rayne,LA,70578,337-334-2964,,,,064,,05/05/2008,Mr. Gautreaux -RPEC Member ,at Large ,,,,LA,,,ACADIA,Nancy E. Tislow,1117 Crawford Ave.,,Crowley,LA,70526,337-783-3129,W,F,R,064,02/20/2012,02/20/2008,Ms. Tislow -RPEC Member ,District 1 ,,,,LA,,,ACADIA,Ira Thomas,1203 Hockaday St.,,Crowley,LA,70526,337-783-6824,,,,066,,05/05/2008,Mr. Thomas -RPEC Member ,District 2 ,,,,LA,,,ACADIA,Debbie Dore,199 Forest Dr.,,Crowley,LA,70526,337-783-1624,,,,066,,05/05/2008,Ms. Dore -RPEC Member ,District 3 ,,,,LA,,,ACADIA,"""Phil"" Myers",P. O. Box 294,,Estherwood,LA,70534,337-785-0750,W,M,R,066,02/20/2012,02/20/2008,Mr. Myers -RPEC Member ,District 4 ,,,,LA,,,ACADIA,Jeff Meche,302 Junot Rd.,,Rayne,LA,70578,337-501-5122,,,,066,,06/06/2008,Mr. Meche -RPEC Member ,District 5 ,,,,LA,,,ACADIA,Helen Blue Garrett,310 S. Arenas St.,,Rayne,LA,70578,337-393-2166,W,F,R,066,02/20/2012,02/20/2008,Ms. Garrett -RPEC Member ,District 6 ,,,,LA,,,ACADIA,Frank Bargeron,504 Deer Park Dr.,,Rayne,LA,70578,337-581-5321,,,,066,,06/06/2008,Mr. Bargeron -RPEC Member ,District 7 ,,,,LA,,,ACADIA,"""Mac"" Atteberry",1265 Atteberry Rd.,,Eunice,LA,70535,337-546-6270,W,M,R,066,02/20/2012,02/20/2008,Mr. Atteberry -RPEC Member ,District 8 ,,,,LA,,,ACADIA,Larry G. Miller,886 McMillan Ave.,,Iota,LA,70543,337-779-2456,W,M,R,066,02/20/2012,02/20/2008,Mr. Miller -Sheriff ,,P. O. Box 289,,Crowley,LA,70527,337-788-8700,ACADIA,Wayne A. Melancon,P.O. Box 289,,Crowley,LA,70527,337-783-8198,W,M,D,225,06/30/2012,07/01/2008,Sheriff Melancon -Clerk of Court ,,P. O. Box 922,,Crowley,LA,70527,337-788-8881,ACADIA,"Robert T. ""Robby"" Barousse",P.O. Box 922,,Crowley,LA,70527,337-783-0191,W,M,D,230,06/30/2012,07/01/2008,Mr. Barousse -Assessor ,,P. O. Box 1329,,Crowley,LA,70527-1329,337-788-8871,ACADIA,Russel L. Benoit,2000 E. Jefferson Davis,,Rayne,LA,70578,337-334-4958,W,M,D,235,12/31/2012,01/01/2009,Mr. Benoit -Coroner ,,717 Curtis Dr.,,Rayne,LA,70578,337-334-7551,ACADIA,Mark Dawson,717 Curtis Dr.,,Rayne,LA,70578,337-334-7551,W,M,R,240,03/25/2012,03/24/2008,Mr. Dawson -Police Juror,District 1,P.O. Box A,,Crowley,LA,70527-6001,337-788-8800,ACADIA,"Alton ""Al"" Stevenson",P.O. Box 2366,,Crowley,LA,70527,337-783-6215,B,M,D,245,01/08/2012,01/14/2008,Mr. Stevenson -Police Juror ,District 2 ,P.O. Box A,,Crowley,LA,70527-6001,337-788-8800,ACADIA,"A.J. ""Fatty"" Broussard",526 Atwood Dr.,,Crowley,LA,70526,337-783-1607,W,M,R,245,01/08/2012,01/14/2008,Mr. Broussard -Police Juror ,District 3 ,P.O. Box A,,Crowley,LA,70527-6001,337-788-8800,ACADIA,Kermit Richard,P.O. Box 363,,Morse,LA,70559,337-329-2091,W,M,D,245,01/08/2012,01/14/2008,Mr. Richard -Police Juror ,District 4 ,P.O. Box A,,Crowley,LA,70527-6001,337-788-8800,ACADIA,John H. Quebodeaux,178 Cedar Park Ln.,,Rayne,LA,70578,337-334-1638,W,M,D,245,01/08/2012,01/14/2008,Mr. Quebodeaux -Police Juror ,District 5 ,P.O. Box A,,Crowley,LA,70527-6001,337-788-8800,ACADIA,"Thomas ""T. J."" Sonnier",607 W. Lesley St.,,Rayne,LA,70578,337-334-4749,B,M,D,245,01/08/2012,01/14/2008,Mr. Sonnier -Police Juror ,District 6 ,P.O. Box A,,Crowley,LA,70527-6001,337-788-8800,ACADIA,"A. J. ""Jay"" Credeur",8520 Grand Prairie Hwy.,,Church Point,LA,70525,337-873-6339,W,M,D,245,01/08/2012,01/14/2008,Mr. Credeur -Police Juror ,District 7 ,P.O. Box A,,Crowley,LA,70527-6001,337-788-8800,ACADIA,Cade Benoit,240 St. Rita Ln.,,Church Point,LA,70525,337-684-6239,W,M,D,245,01/08/2012,01/14/2008,Mr. Benoit -Police Juror ,District 8 ,P.O. Box A,,Crowley,LA,70527-6001,337-788-8800,ACADIA,"Felton ""Tony"" Moreau",7870 Eunice-Iota Hwy.,,Eunice,LA,70535,337-580-1953,W,M,D,245,01/08/2012,01/14/2008,Mr. Moreau -City Judge ,"City Court, City of Crowley ",P. O. Box 225,,Crowley,LA,70526,337-788-4118,ACADIA,"Marie Elise ""M'elise"" Trahan",1718 N. Ave. D,,Crowley,LA,70526,337-788-2435,W,F,D,250,12/31/2014,01/01/2009,Judge Trahan -City Judge ,"City Court, City of Rayne ",P. O. Box 31,,Rayne,LA,70578,337-334-9677,ACADIA,"James M. ""Jim"" Cunningham, III",402 N. Parkerson St.,,Rayne,LA,70578,337-334-5156,W,M,D,250,12/31/2014,01/01/2009,Judge Cunningham -City Marshal ,"City Court, City of Crowley ",P. O. Box 225,,Crowley,LA,70526,337-788-4120,ACADIA,Glenn J. Deville,312 Stewartville Rd.,,Crowley,LA,70526,337-783-9122,W,M,D,250,12/31/2014,01/01/2009,Marshal Deville -City Marshal ,"City Court, City of Rayne ",P. O. Box 31,,Rayne,LA,70578,337-334-9677,ACADIA,"Alex ""Joe"" Lacroix",122 W. Thayer,,Rayne,LA,70578,337-334-5566,W,M,D,250,12/31/2014,01/01/2009,Marshal Lacroix -Member of School Board ,District 1 ,P. O. Drawer 309,,Crowley,LA,70527-0309 ,337-783-3664,ACADIA,Israel Syria,820 N. Ave. B,,Crowley,LA,70526,337-783-6483,B,M,D,255,12/31/2010,01/01/2007,Mr. Syria -Member of School Board ,District 2 ,P. O. Drawer 309,,Crowley,LA,70527-0309 ,337-783-3664,ACADIA,"Douglas J. ""Doug"" LaCombe",P.O. Box 184,,Egan,LA,70531,337-788-2432,W,M,O,255,12/31/2010,01/09/2007,Mr. LaCombe -Member of School Board ,District 3 ,P. O. Drawer 309,,Crowley,LA,70527-0309 ,337-783-3664,ACADIA,Abraham Lynn Shamsie,P.O. Box 56,,Estherwood,LA,70534,337-783-2702,W,M,D,255,12/31/2010,01/01/2007,Mr. Shamsie -Member of School Board ,District 4 ,P. O. Drawer 309,,Crowley,LA,70527-0309 ,337-783-3664,ACADIA,John A. Suire,1370 Leger Rd.,,Crowley,LA,70526,337-783-4082,W,M,R,255,12/31/2010,01/01/2007,Mr. Suire -Member of School Board ,District 5 ,P. O. Drawer 309,,Crowley,LA,70527-0309 ,337-783-3664,ACADIA,Roland J. Boudreaux,701 East E St.,,Rayne,LA,70578,337-334-2466,W,M,D,255,12/31/2010,01/01/2007,Mr. Boudreaux -Member of School Board ,District 6 ,P. O. Drawer 309,,Crowley,LA,70527-0309 ,337-783-3664,ACADIA,Gene I. Daigle,511 S. David St.,,Church Point,LA,70525,337-684-5284,W,M,D,255,12/31/2010,01/01/2007,Mr. Daigle -Member of School Board ,District 7 ,P. O. Drawer 309,,Crowley,LA,70527-0309 ,337-783-3664,ACADIA,"James ""Bozo"" Higginbotham",210 St. Edna,,Church Point,LA,70525,337-684-6897,W,M,D,255,12/31/2010,01/01/2007,Mr. Higginbotham -Member of School Board ,District 8 ,P. O. Drawer 309,,Crowley,LA,70527-0309 ,337-783-3664,ACADIA,Milton Simar,P.O. Box 578,,Iota,LA,70543,337-779-2289,W,M,D,255,12/31/2010,01/01/2007,Mr. Simar -Justice of the Peace ,Justice of the Peace Ward 2 ,122 O'Neal Ln.,,Branch,LA,70516,337-334-4584,ACADIA,Wayne Doucet,122 Oneal Ln.,,Branch,LA,70516,337-334-4584,W,M,D,265,12/31/2014,01/01/2009,Mr. Doucet -Justice of the Peace ,Justice of the Peace Ward 3 ,666 N. Beaugh St.,,Church Point,LA,70525,337-684-2331,ACADIA,"Elton ""Bee"" Cormier",666 N. Beaugh St.,,Church Point,LA,70525,337-684-2331,W,M,D,265,12/31/2014,01/01/2009,Mr. Cormier -Justice of the Peace ,Justice of the Peace Ward 4 ,1114 Shultz Rd.,,Iota,LA,70543,337-779-2571,ACADIA,Elridge Pousson,1114 Schultz Rd.,,Iota,LA,70543,337-779-2571,W,M,D,265,12/31/2014,01/01/2009,Mr. Pousson -Justice of the Peace ,Justice of the Peace Ward 5 ,P.O. Box 52,,Morse,LA,70559,337-788-0934,ACADIA,Michael Chiasson,P.O. Box 52,,Morse,LA,70559,337-788-0934,W,M,D,265,12/31/2014,01/01/2009,Mr. Chiasson -Justice of the Peace ,Justice of the Peace Ward 7 ,,,,LA,,,ACADIA,Horace Darbonne,139 Miguel Rd.,,Basile,LA,70515,337-432-6804,W,M,D,265,12/31/2014,01/01/2009,Mr. Darbonne -Constable ,Justice of the Peace Ward 2 ,P.O. Box 432,,Branch,LA,70516,337-334-5004,ACADIA,"James ""June"" Meche",P.O. Box 432,,Branch,LA,70516,337-334-5004,W,M,D,267,12/31/2014,01/01/2009,Mr. Meche -Constable ,Justice of the Peace Ward 3 ,544 Brasseaux St.,,Church Point,LA,70525,337-684-2818,ACADIA,Ferdie Miller,544 Brasseaux,,Church Point,LA,70525,337-684-2818,W,M,D,267,12/31/2014,01/01/2009,Mr. Miller -Constable ,Justice of the Peace Ward 4 ,P.O. Box 146,,Iota,LA,70543,337-779-2441,ACADIA,Paul Doucet,P.O. Box 146,,Iota,LA,70543,337-779-2441,W,M,D,267,12/31/2014,01/01/2009,Mr. Doucet -Constable ,Justice of the Peace Ward 5 ,P.O. Box 118,,Esterwood,LA,70534,337-788-2207,ACADIA,Treg Myers,P.O. Box 118,,Estherwood,LA,70534,337-788-2207,W,M,D,267,12/31/2014,01/01/2009,Mr. Myers -Constable ,Justice of the Peace Ward 7 ,1729 Hundley Rd.,,Eunice,LA,70535,337-457-3243,ACADIA,Suzellen Stroderd Lopez,2524 Alfa Romeo Rd.,,Basile,LA,70515,337-432-5480,W,F,O,267,12/31/2014,01/01/2009,Ms. Lopez -Mayor ,City of Crowley ,P. O. Box 1463,,Crowley,LA,,337-783-0824,ACADIA,"""Greg"" Jones",12 Governor Edwards Dr.,,Crowley,LA,70526,337-783-8972,W,M,R,300,12/31/2010,01/01/2007,Mayor Jones -Mayor ,City of Rayne ,P. O. Box 69,,Rayne,LA,,337-334-3121,ACADIA,"James J. ""Jimbo"" Petitjean",P.O. Box 694,,Rayne,LA,70578,337-334-9554,W,M,D,300,12/31/2010,01/01/2007,Mayor Petitjean -Mayor ,Town of Church Point ,102 Church Blvd.,,Church Point,LA,,337-684-5692,ACADIA,Roger Boudreaux,646 N. Beaugh St.,,Church Point,LA,70526,337-684-6334,W,M,D,300,12/31/2010,01/01/2007,Mr. Boudreaux -Mayor ,Town of Iota ,P. O. Drawer 890,,Iota,LA,,337-779-2597,ACADIA,John D. Sittig,P.O. Box 72,,Iota,LA,70543,337-779-2234,W,M,D,300,12/31/2010,01/01/2007,Mr. Sittig -Mayor ,Village of Estherwood ,P. O. Box 167,,Estherwood,LA,,337-783-0464,ACADIA,"""Bill"" Maples",P.O. Box 310,,Estherwood,LA,70534,337-783-0330,W,M,R,300,12/31/2010,01/01/2007,Mr. Maples -Mayor ,Village of Mermentau ,P. O. Box 280,,Mermentau,LA,,337-824-8466,ACADIA,David W. Fruge,P.O. Box 119,,Mermentau,LA,70556,337-824-0629,W,M,D,300,12/31/2010,01/01/2007,Mr. Fruge -Mayor ,Village of Morse ,P. O. Box 750,,Morse,LA,,337-783-7555,ACADIA,"Robert ""Butch"" Istre",P.O. Box 97,,Morse,LA,70559,337-783-6273,W,M,D,300,12/31/2010,10/30/2007,Mayor Istre -Chief of Police ,City of Crowley ,P. O. Box 1463,,Crowley,LA,70527-1463,337-783-0824,ACADIA,K. P. Gibson,106 Clark Ct.,,Crowley,LA,70526,337-788-1888,W,M,D,305,12/31/2010,01/01/2007,Mr. Gibson -Chief of Police ,City of Rayne ,P. O. Box 69,,Rayne,LA,70578,337-334-3121,ACADIA,Carroll Stelly,308 S. Parkerson,,Rayne,LA,70578,337-334-4286,W,M,D,305,12/31/2010,01/01/2007,Mr. Stelly -Chief of Police ,Town of Church Point ,102 Church Blvd.,,Church Point,LA,70525,337-684-5692,ACADIA,"Albert J. Venable, Sr.",334 N. Franques St.,,Church Point,LA,70525,337-684-6460,W,M,D,305,12/31/2010,01/01/2007,Chief Venable -Chief of Police ,Town of Iota ,P. O. Drawer 890,,Iota,LA,70543,337-779-2597,ACADIA,David Scott Pousson,P.O. Box 213,,Iota,LA,70543,337-779-2393,W,M,D,305,12/31/2010,01/01/2007,Mr. Pousson -Chief of Police ,Village of Estherwood ,P. O. Box 167,,Estherwood,LA,70534-0167 ,337-783-0464,ACADIA,Kevin LeBlanc,P.O. Box 221,,Estherwood,LA,70534,337-785-2316,W,M,,305,12/31/2010,01/01/2007,Chief LeBlanc -Chief of Police ,Village of Mermentau ,P. O. Box 280,,Mermentau,LA,70556,337-824-8466,ACADIA,Donald C. Bertrand,P.O. Box 128,,Mermentau,LA,70556,337-329-3120,W,M,D,305,12/31/2010,01/01/2007,Mr. Bertrand -Chief of Police ,Village of Morse ,P. O. Box 36,,Morse,LA,70559,337-783-7555,ACADIA,Jason Todd Richard,P.O. Box 191,,Morse,LA,70559,337-783-3616,W,M,D,305,12/31/2010,01/01/2007,Mr. Richard -Alderman at Large ,City of Crowley ,P. O. Box 1463,,Crowley,LA,70527-1463,337-783-0824,ACADIA,Steven C. Premeaux,170 West Hoyt,,Crowley,LA,70526,337-783-8597,W,M,D,308,12/31/2010,01/01/2007 -Alderman at Large ,City of Rayne ,,,,LA,,,ACADIA,Paul Molbert,705 S. Cunningham,,Rayne,LA,70578,337-334-7304,W,M,R,308,12/31/2010,01/01/2007,Mr. Molbert -Alderman ,Town of Iota ,P. O. Drawer 890,,Iota,LA,70543,337-779-2597,ACADIA,"R. B. ""Toby"" Fontenot",P.O. Box 56,,Iota,LA,70543,337-779-2665,W,M,D,310,12/31/2010,01/01/2007,Mr. Fontenot -Alderman ,Town of Iota ,P. O. Drawer 890,,Iota,LA,70543,337-779-2597,ACADIA,Troy Lantz,P.O. Box 275,,Iota,LA,70543,337-779-2696,W,M,D,310,12/31/2010,01/01/2007,Mr. Lantz -Alderman ,Town of Iota ,P. O. Drawer 890,,Iota,LA,70543,337-779-2597,ACADIA,Cody Leckelt,560 S. Third St.,,Iota,LA,70543,337-779-3317,W,M,R,310,12/31/2010,01/01/2007,Mr. Leckelt -Alderman ,Town of Iota ,P. O. Drawer 890,,Iota,LA,70543,337-779-2597,ACADIA,Raleigh Miller,P.O. Box 112,,Iota,LA,70543,337-779-2545,W,M,D,310,12/31/2010,01/01/2007,Mr. Miller -Alderman ,Town of Iota ,P. O. Drawer 890,,Iota,LA,70543,337-779-2597,ACADIA,Warren C. Pousson,P.O. Box,,Iota,LA,70543,337-779-2868,W,M,D,310,12/31/2010,01/01/2007,Mr. Pousson -Alderman ,Village of Estherwood ,P. O. Box 167,,Estherwood,LA,70534-0167 ,337-783-0464,ACADIA,Anthony Borill,P.O. Box 365,,Estherwood,LA,70534,337-788-0865,W,M,D,310,12/31/2010,01/01/2007,Mr. Borill -Alderman ,Village of Estherwood ,P. O. Box 167,,Estherwood,LA,70534-0167 ,337-783-0464,ACADIA,John Monceaux,P.O. Box 265,,Estherwood,LA,70534,337-783-8122,W,M,,310,12/31/2010,01/01/2007,Mr. Monceau -Alderman ,Village of Estherwood ,P. O. Box 167,,Estherwood,LA,70534-0167 ,337-783-0464,ACADIA,"""Tim"" Savant",P.O. Box 7,,Estherwood,LA,70534,337-783-5333,W,M,D,310,12/31/2010,01/01/2007,Mr. Savant -Alderman ,Village of Mermentau ,P. O. Box 280,,Mermentau,LA,70556,337-824-8466,ACADIA,Troy Cormier,P.O. Box 294,,Mermentau,LA,70556,337-824-9327,W,M,D,310,12/31/2010,01/01/2007,Mr. Cormier -Alderman ,Village of Mermentau ,P. O. Box 280,,Mermentau,LA,70556,337-824-8466,ACADIA,"Ernest ""Sheeney"" Gautreaux",P.O. Box 297,,Mermentau,LA,70556,337-824-0332,W,M,D,310,12/31/2010,01/01/2007,Mr. Gautreaux -Alderman ,Village of Mermentau ,P. O. Box 280,,Mermentau,LA,70556,337-824-8466,ACADIA,Darla Istre,P.O. Box 1,,Mermentau,LA,70556,337-824-4259,W,F,D,310,12/31/2010,01/01/2007,Mr. Istre -Alderman ,Village of Morse ,P. O. Box 36,,Morse,LA,70559,337-783-7555,ACADIA,Randall Bertrand,P.O. Box 169,,Morse,LA,70559,337-788-3452,W,M,D,310,12/31/2010,10/30/2007,Mr. Bertrand -Alderman ,Village of Morse ,P. O. Box 36,,Morse,LA,70559,337-783-7555,ACADIA,Wade Clement,P.O. Box 367,,Morse,LA,70559,337-783-6957,W,M,R,310,12/31/2010,01/01/2007,Mr. Clements -Alderman ,Village of Morse ,P. O. Box 36,,Morse,LA,70559,337-783-7555,ACADIA,Peggy S. Romero,P.O. Box 313,,Morse,LA,70559,337-783-3175,W,F,D,310,12/31/2010,07/21/2008,Ms. Romero -Alderman ,"Ward 1, City of Rayne ",P. O. Box 69,,Rayne,LA,70578,337-334-3121,ACADIA,Ann Domingue Washington,606 Chappuis Ave.,,Rayne,LA,70578,337-334-5020,B,F,D,310,12/31/2010,01/01/2007,Ms. Washington -Alderman ,"Ward 1, Division A, City of Crowley ",P. O. Box 1463,,Crowley,LA,70527-1463,337-783-0824,ACADIA,"""Jeff"" Dore",705 W. 14th St.,,Crowley,LA,70526,337-783-0173,W,M,D,310,12/31/2010,01/01/2007,Mr. Dore -Alderman ,"Ward 1, Division B, City of Crowley ",P. O. Box 1463,,Crowley,LA,70527-1463,337-783-0824,ACADIA,"Kathleen ""Kitty"" Valdetero",14 Rue Aline,,Crowley,LA,70526,337-783-3619,W,F,R,310,12/31/2010,01/01/2007,Ms. Valdetero -Alderman ,"Ward 1, Town of Church Point ",102 Church Blvd.,,Church Point,LA,70525,337-684-5692,ACADIA,Debra Guidry-Thomas,105 Melissa St.,,Church Point,LA,70525,337-684-3416,B,F,D,310,12/31/2010,01/01/2007,Ms. Guidry-Thomas -Alderman ,"Ward 2, City of Rayne ",,,,LA,,,ACADIA,"Jude ""Butch"" Abshire",921 Comeaux St.,,Rayne,LA,70578,337-334-7861,W,M,D,310,12/31/2010,01/01/2007,Mr. Abshire -Alderman ,"Ward 2, Division A, City of Crowley ",P. O. Box 1463,,Crowley,LA,70527-1463,337-783-0824,ACADIA,Todd W. Whiting,815 E. Third St.,,Crowley,LA,70526,337-783-6183,W,M,D,310,12/31/2010,01/01/2007,Mr. Whiting -Alderman ,"Ward 2, Division B, City of Crowley ",P. O. Box 1463,,Crowley,LA,70527-1463,337-783-0824,ACADIA,"Lyle O. Fogleman, Jr.",503 E. Second St.,,Crowley,LA,70526,337-788-1111,W,M,D,310,12/31/2010,01/01/2007,Mr. Fogleman -Alderman ,"Ward 2, Town of Church Point ",102 Church Blvd.,,Church Point,LA,70525,337-684-5692,ACADIA,"""Joy"" Daigle",360 Saint Jude St.,,Church Point,LA,70525,337-684-6603,W,F,D,310,12/31/2010,02/23/2009,Ms. Daigle -Alderman ,"Ward 3, City of Rayne ",,,,LA,,,ACADIA,"Gerard ""Jerry"" Arceneaux",126 Azalea Dr.,,Rayne,LA,70578,337-334-3824,W,M,R,310,12/31/2010,01/01/2007,Mr. Arceneaux -Alderman ,"Ward 3, Division A, City of Crowley ",P. O. Box 1463,,Crowley,LA,70527-1463,337-783-0824,ACADIA,"Vernon ""Step"" Martin",213 N. Ave A,,Crowley,LA,70526,337-783-6128,B,M,D,310,12/31/2010,01/01/2007,Mr. Martin -Alderman ,"Ward 3, Division B, City of Crowley ",P. O. Box 1463,,Crowley,LA,70527-1463,337-783-0824,ACADIA,Laurita D. Pete,720 W. Third St.,,Crowley,LA,70526,337-783-3422,B,F,D,310,12/31/2010,01/01/2007,Mr. Pete -Alderman ,"Ward 3, Town of Church Point ",102 Church Blvd.,,Church Point,LA,70525,337-684-5692,ACADIA,Gary J. Duplechin,406 W. Harmon St.,,Church Point,LA,70525,337-684-6932,W,M,D,310,12/31/2010,01/01/2007,Mr. Duplechin -Alderman ,"Ward 4, City of Rayne ",,,,LA,,,ACADIA,Gerald L. Foreman,813 East F St.,,Rayne,LA,70578,337-334-3392,W,M,D,310,12/31/2010,01/01/2007,Mr. Foreman -Alderman ,"Ward 4, Division A, City of Crowley ",P. O. Box 1463,,Crowley,LA,70527-1463,337-783-0824,ACADIA,Elliot Dore,8 Bayou Oaks Dr.,,Crowley,LA,70526,337-783-6148,W,M,D,310,12/31/2010,01/01/2007,Mr. Dore -Alderman ,"Ward 4, Division B, City of Crowley ",P. O. Box 1463,,Crowley,LA,70527-1463,337-783-0824,ACADIA,Mary Melancon,528 E. Jeanette St.,,Crowley,LA,70526,337-783-3449,W,F,D,310,12/31/2010,01/01/2007,Ms. Melancon -Alderman ,"Ward 4, Town of Church Point ",102 Church Blvd.,,Church Point,LA,70525,337-684-5692,ACADIA,"Aimia ""MiMi"" Doucet",244 S. Guidry,,Church Point,LA,70525,337-257-4999,W,F,R,310,12/31/2010,01/01/2007,Mr. Doucet -Alderman ,"Ward 5, Town of Church Point ",102 Church Blvd.,,Church Point,LA,70525,337-684-5692,ACADIA,"Errol ""Slu"" Comeaux",457 W. Keller,,Church Point,LA,70525,337-684-6611,W,M,D,310,12/31/2010,01/01/2007,Mr. Comeaux -DPEC Member ,at Large ,,,,LA,,,ALLEN,Schelly Doise,306 Park Rd.,,Kinder,LA,70648,337-738-7888,W,M,D,054,02/20/2012,02/20/2008,Ms. Doise -DPEC Member ,District 1 ,,,,LA,,,ALLEN,,,,,,,,,,,056 -DPEC Member ,District 2 ,,,,LA,,,ALLEN,,,,,,,,,,,056 -DPEC Member ,District 3 ,,,,LA,,,ALLEN,"Joe G. Abrusley, Jr.",P.O. Box 567,,Oakdale,LA,71463,318-335-2305,W,M,D,056,02/20/2012,02/20/2008,Mr. Abrusley -DPEC Member ,District 4 ,,,,LA,,,ALLEN,,,,,,,,,,,056 -DPEC Member ,District 5 ,,,,LA,,,ALLEN,,,,,,,,,,,056 -DPEC Member ,District 6 ,,,,LA,,,ALLEN,,,,,,,,,,,056 -DPEC Member ,District 7 ,,,,LA,,,ALLEN,,,,,,,,,,,056 -RPEC Member ,at Large ,,,,LA,,,ALLEN,,,,,,,,,,,064 -RPEC Member ,District 1 ,,,,LA,,,ALLEN,,,,,,,,,,,066 -RPEC Member ,District 2 ,,,,LA,,,ALLEN,Margaret E. Murry,P.O. Box 665,,Oakdale,LA,71463,318-335-1215,W,F,R,066,02/20/2012,02/20/2008,Ms. Murry -RPEC Member ,District 3 ,,,,LA,,,ALLEN,,,,,,,,,,,066 -RPEC Member ,District 4 ,,,,LA,,,ALLEN,,,,,,,,,,,066 -RPEC Member ,District 5 ,,,,LA,,,ALLEN,,,,,,,,,,,066 -RPEC Member ,District 6 ,,,,LA,,,ALLEN,,,,,,,,,,,066 -RPEC Member ,District 7 ,,,,LA,,,ALLEN,Rodney M. Steed,248 Alex Lormand Rd.,,Kinder,LA,70648,337-738-2220,W,M,R,066,02/20/2012,02/20/2008,Mr. Steed -Sheriff ,,P. O. Box 278,,Oberlin,LA,70655,318-639-4353,ALLEN,Harold Brady,P.O. Box 278,,Oberlin,LA,70655,318-335-2369,W,M,D,225,06/30/2012,07/01/2008,Sheriff Brady -Clerk of Court ,,P. O. Box 248,,Oberlin,LA,70655,337-639-4351,ALLEN,Gerald Harrington,P.O. Box 248,,Oberlin,LA,70655,318-335-3130,W,M,D,230,06/30/2012,07/01/2008,Mr. Harrington -Assessor ,,P. O. Box 218,,Oberlin,LA,70655,318-639-4391,ALLEN,Richard Earl,113 North St.,,Pitkin,LA,70656,318-634-7387,W,M,D,235,12/31/2012,01/01/2009,Mr. Earl -Coroner ,,P.O. Box 1140,,Oakdale,LA,71463,318-335-4881,ALLEN,"""Don"" Nesom",104 Mowad Dr.,,Oakdale,LA,71463,318-335-3870,W,M,D,240,03/25/2012,03/24/2008,Mr. Nesom -Police Juror ,District 1 ,602 Court Street,,Oberlin,LA,,337-639-4328,ALLEN,Betty Hayes,907 Mill St.,,Oakdale,LA,71463,318-335-1325,B,F,D,245,01/08/2012,04/14/2009,Ms. Hayes -Police Juror ,District 2 ,602 Court Street,,Oberlin,LA,70655,337-639-4328,ALLEN,"""Buddy"" Farris",2550 Hwy. 165 S.,,Oakdale,LA,71463,318-335-0118,W,M,D,245,01/08/2012,01/14/2008,Mr. Farris -Police Juror ,District 3 ,602 Court Street,,Oberlin,LA,70655,337-639-4328,ALLEN,"John W. Strother, Jr.",P.O. Box 319,,Oakdale,LA,71463,318-335-1114,W,M,D,245,01/08/2012,01/14/2008,Mr. Strother -Police Juror ,District 4 ,602 Court Street,,Oberlin,LA,70655,337-639-4328,ALLEN,Roland Hollins,P.O. Box 32,,Mittie,LA,70654,337-328-8787,W,M,D,245,01/08/2012,01/14/2008,Mr. Hollins -Police Juror ,District 5 ,602 Court Street,,Oberlin,LA,70655,337-639-4328,ALLEN,"""Doug"" Sonnier",126 Roy Sonnier Rd.,,Oberlin,LA,70655,337-639-2817,W,M,,245,01/08/2012,01/14/2008,Mr. Sonnier -Police Juror ,District 6 ,602 Court Street,,Oberlin,LA,70655,337-639-4328,ALLEN,"R. E. ""Sonny"" Weatherford",P.O. Box 628,,Kinder,LA,70648,337-738-2905,W,M,D,245,01/08/2012,01/14/2008,Mr. Weatherford -Police Juror ,District 7 ,602 Court Street,,Oberlin,LA,70655,337-639-4328,ALLEN,Kent Fontenot,3800 Walker Rd.,,Reeves,LA,70658-5813,337-666-2772,W,M,D,245,01/08/2012,01/14/2008,Mr. Fontenot -City Judge ,"City Court, City of Oakdale ",P. O. Box 565,,Oakdale,LA,71463,318-335-1121,ALLEN,Judi Abrusley,P.O. Drawer 1114,,Oakdale,LA,71463,318-335-3492,W,F,D,250,12/31/2014,01/01/2009,Judge Abrusley -City Marshal ,"City Court, City of Oakdale ",P. O. Box 565,,Oakdale,LA,71463,318-335-0518,ALLEN,Chad Doyle,297 Callahan Rd.,,Oakdale,LA,71463,318-306-1000,W,M,D,250,12/31/2014,01/01/2009,Marshal Doyle -Member of School Board ,District 1 ,P.O. Drawer C,,Oberlin,LA,70655,337-639-4311,ALLEN,Alma W. Johnson,623 Lewis St.,,Oakdale,LA,71463,318-335-2459,B,F,D,255,12/31/2010,01/01/2007,Ms. Johnson -Member of School Board ,District 2 ,P.O. Drawer C,,Oberlin,LA,,337-783-3664,ALLEN,"""Cathy"" Farris",2550 Hwy. 165 S.,,Oakdale,LA,71463,318-335-0118,W,F,D,255,12/31/2010,01/01/2007,Ms. Farris -Member of School Board ,District 3 ,P.O. Drawer C,,Oberlin,LA,,337-783-3664,ALLEN,Bobby Odom,506 N. Eighth St.,,Oakdale,LA,71463,318-335-3853,W,M,D,255,12/31/2010,01/01/2007,Mr. Odom -Member of School Board ,District 4 ,P.O. Drawer C,,Oberlin,LA,,337-783-3664,ALLEN,Faye Hollins,14993 Hwy. 26.,,Sugartown,LA,70662,337-639-2752,W,F,D,255,12/31/2010,01/01/2007,Ms. Hollins -Member of School Board ,District 5 ,P.O. Drawer C,,Oberlin,LA,,337-783-3664,ALLEN,Gregory Monceaux,P.O. Box 661,,Oberlin,LA,70655,337-639-2598,W,M,D,255,12/31/2010,01/01/2007,Mr. Monceaux -Member of School Board ,District 6 ,P.O. Drawer C,,Oberlin,LA,,337-783-3664,ALLEN,Carolyn Manuel,132 Vera St.,,Kinder,LA,70648,337-738-2166,W,F,D,255,12/31/2010,01/01/2007,Ms. Manuel -Member of School Board ,District 7 ,P.O. Drawer C,,Oberlin,LA,,337-783-3664,ALLEN,Brett Fawcett,P.O. Box 1911,,Kinder,LA,70648,337-738-3253,W,M,R,255,12/31/2010,01/01/2007,Mr. Fawcett -Justice of the Peace ,Justice of the Peace Ward 1 ,P.O. Box 304,,Oberlin,LA,70655,337-639-4929,ALLEN,"""Timmy"" Chaumont",P.O. Box 304,,Oberlin,LA,70655,337-639-4929,W,M,O,265,12/31/2014,01/01/2009,Mr. Chaumont -Justice of the Peace ,Justice of the Peace Ward 2 ,122 Mayo Ortego Rd.,,Kinder,LA,70648,337-738-6559,ALLEN,"""Ron"" Craiger",P.O. Box 1637,,Kinder,LA,70648,337-738-5843,W,M,D,265,12/31/2014,01/01/2009,Mr. Craiger -Justice of the Peace ,Justice of the Peace Ward 3 ,P.O. Box 41,,Reeves,LA,70658,337-666-2427,ALLEN,Billie Faye Felice,P.O. Box 41,,Reeves,LA,70658,337-526-2426,W,F,D,265,12/31/2014,01/01/2009,Mr. Felice -Justice of the Peace ,Justice of the Peace Ward 4 ,1299 Palestine Rd.,,Mittie,LA,70654,318-634-5317,ALLEN,Chad Reeves,P.O. Box 5 Briscoe Rd.,,Mittie,LA,70654,337-639-4725,W,M,D,265,12/31/2014,01/01/2009,Mr. Reeves -Constable ,Justice of the Peace Ward 1 ,P.O. Box 431,,Oberlin,LA,70655,337-639-2699,ALLEN,John D. Manuel,P.O. Box 431,,Oberlin,LA,70655,337-639-9776,W,M,O,267,12/31/2014,01/01/2009,Mr. Manuel -Constable ,Justice of the Peace Ward 2 ,P.O. Box 1074,,Kinder,LA,70648,337-738-7665,ALLEN,Donnie Shuff,388 Ray Shuff Rd.,,Elton,LA,70532,337-485-5583,W,M,D,267,12/31/2014,01/01/2009,Mr. Shuff -Constable ,Justice of the Peace Ward 3 ,P.O. Box 59,,Reeves,LA,70658,337-666-2685,ALLEN,Ryland Dunnehoo,P.O. Box 21,,Reeves,LA,70658,337-666-2278,W,M,D,267,12/31/2014,01/01/2009,Mr. Dunnehoo -Constable ,Justice of the Peace Ward 4 ,248 Dowies Rd.,,Pitkin,LA,70656,337-634-7895,ALLEN,"Donald ""Don"" Dowies",248 Dowies Rd.,,Pitkin,LA,70656,318-634-7895,W,M,D,267,12/31/2014,01/01/2009,Mr. Dowies -Mayor ,City of Oakdale ,P. O. Box 728,,Oakdale,LA,,318-335-3629,ALLEN,Andrew Hayes,907 Mill St.,,Oakdale,LA,71463,318-335-1325,B,M,D,300,12/31/2012,01/01/2009,Mayor Hayes -Mayor ,Town of Elizabeth ,P. O. Box 457,,Elizabeth,LA,,318-634-5100,ALLEN,"Robert ""Bob"" Crafton",P.O. Box 153,,Elizabeth,LA,70638,318-634-7349,W,M,D,300,12/31/2010,01/01/2007,Mr. Crafton -Mayor ,Town of Kinder ,P. O. Drawer AH,,Kinder,LA,,337-738-2620,ALLEN,Estes LeDoux,1515 Lurton Ave.,,Kinder,LA,70648,337-738-2452,W,M,D,300,12/31/2010,01/01/2007,Mr. LeDoux -Mayor ,Town of Oberlin ,P. O. Box 370,,Oberlin,LA,,318-639-4333,ALLEN,"""Phil"" Beard",P.O. Box 709 St.,,Oberlin,LA,70655,337-639-2701,W,M,D,300,12/31/2010,01/01/2007,Mayor Beard -Mayor ,Village of Reeves ,P. O. Box 119,,Reeves,LA,,318-666-2613,ALLEN,Scott Walker,P.O. Box 73,,Reeves,LA,70658,337-666-2438,W,M,R,300,12/31/2010,01/01/2007,Mayor Walker -Chief of Police ,City of Oakdale ,P. O. Box 728,,Oakdale,LA,71463,318-335-3629,ALLEN,Scotty LaBorde,618 Fisher St.,,Oakdale,LA,71463,318-491-1941,W,M,,305,12/31/2012,01/01/2009,Chief LaBorde -Chief of Police ,Town of Elizabeth ,P. O. Box 457,,Elizabeth,LA,70638,318-634-5100,ALLEN,Shane Ware,P.O. Box 212,,Elizabeth,LA,70638,318-634-5964,W,M,D,305,12/31/2010,07/21/2008,Chief Ware -Chief of Police ,Town of Kinder ,P. O. Drawer AH,,Kinder,LA,70648,318-738-2620,ALLEN,Gary G. Pelican,P.O. Box 464,,Kinder,LA,70648,337-738-2090,W,M,D,305,12/31/2010,01/01/2007,Mr. Pelican -Chief of Police ,Town of Oberlin ,P. O. Box 370,,Oberlin,LA,70655,318-639-4333,ALLEN,Richard Young,P.O. Box 594,,Oberlin,LA,70655,337-639-2657,W,M,D,305,12/31/2010,01/01/2007,Mr. Young -Chief of Police ,Village of Reeves ,P. O. Box 119,,Reeves,LA,70658,337-666-2613,ALLEN,"""Buddy"" Estay",P.O. Box 84,,Reeves,LA,70658,337-666-2770,W,M,D,305,12/31/2010,01/01/2007,Chief Estay -Alderman at Large ,Town of Oberlin ,,,,LA,,,ALLEN,Troy Meaux,P. O. Box 946,,Oberlin,LA,70655,337-639-4780,W,M,,308,12/31/2010,01/01/2007 -Council Member ,"at Large, Town of Kinder ",P. O. Drawer AH,,Kinder,LA,70648,318-738-2620,ALLEN,Bennie E. Pelican,P. O. Box 82,,Kinder,LA,70648,337-305-5300,W,M,D,308,12/31/2010,01/01/2007 -Alderman ,"District 1, Town of Oberlin ",P. O. Box 370,,Oberlin,LA,70655,318-639-4333,ALLEN,Mark E. Manuel,P.O. Box 773,,Oberlin,LA,70655,337-639-2296,W,M,D,310,12/31/2010,01/01/2007,Mr. Manuel -Alderman ,"District 2, Town of Oberlin ",P. O. Box 370,,Oberlin,LA,70655,318-639-4333,ALLEN,"Robert ""Bob"" Vest",P.O. Box 216,,Oberlin,LA,70655,337-639-2461,W,M,D,310,12/31/2010,01/01/2007,Mr. Vest -Alderman ,"District 3, Town of Oberlin ",P. O. Box 370,,Oberlin,LA,70655,318-639-4333,ALLEN,"James ""Tee"" Ryder",P.O. Box 1132,,Oberlin,LA,70655,337-639-2124,W,M,R,310,12/31/2010,01/01/2007,Mr. Ryder -Alderman ,"District 4, Town of Oberlin ",P. O. Box 370,,Oberlin,LA,70655,318-639-4333,ALLEN,Janice D. Simon,P.O. Box 1092,,Oberlin,LA,70655,337-639-2317,B,F,D,310,12/31/2010,01/01/2007,Ms. Simon -Alderman ,Town of Elizabeth ,P. O. Box 457,,Elizabeth,LA,70638,318-634-5100,ALLEN,Nettie Clark,P.O. Box 28,,Elizabeth,LA,70638,318-634-7357,W,F,R,310,12/31/2010,01/01/2007,Mr. Clark -Alderman ,Town of Elizabeth ,P. O. Box 457,,Elizabeth,LA,70638,318-634-5100,ALLEN,Lydia Kingan,P.O. Box 336,,Elizabeth,LA,70638,318-634-5268,W,F,D,310,12/31/2010,11/27/2007,Ms. Kingan -Alderman ,Town of Elizabeth ,P. O. Box 457,,Elizabeth,LA,70638,318-634-5100,ALLEN,Michael Melder,P.O. Box 103,,Elizabeth,LA,70638,318-634-7272,W,M,R,310,12/31/2010,01/01/2007,Mr. Melder -Alderman ,Town of Elizabeth ,P. O. Box 457,,Elizabeth,LA,70638,318-634-5100,ALLEN,Shirley Smith,P. O. Box 194,,Elizabeth,LA,70638,318-634-5136,B,F,D,310,12/31/2010,01/01/2007,Ms. Smith -Alderman ,Town of Elizabeth ,P. O. Box 457,,Elizabeth,LA,70638,318-634-5100,ALLEN,Michael R. Sutton,P.O. Box 463,,Elizabeth,LA,70638,318-634-7166,W,M,R,310,12/31/2010,01/01/2007,Mr. Sutton -Alderman ,Village of Reeves ,P. O. Box 119,,Reeves,LA,70658,337-666-2613,ALLEN,Waylin P. Bertrand,P.O. Box 188,,Reeves,LA,70658,337-666-2638,W,M,D,310,12/31/2010,01/01/2007,Mr. Bertrand -Alderman ,Village of Reeves ,P. O. Box 119,,Reeves,LA,70658,337-666-2613,ALLEN,Janice Brown,P.O. Box 209,,Reeves,LA,70658,337-666-3312,W,F,R,310,12/31/2010,01/01/2007,Ms. Brown -Alderman ,Village of Reeves ,P. O. Box 119,,Reeves,LA,70658,337-666-2613,ALLEN,"""Jeanne"" Markway",P.O. Box 58,,Reeves,LA,70658,337-666-2500,W,F,D,310,12/31/2010,01/01/2007,Ms. Markway -Council Member ,"at Large, City of Oakdale ",P. O. Box 728,,Oakdale,LA,71463,318-335-3629,ALLEN,"George Ashy, II",P. O. Box 104,,Oakdale,LA,71463,318-335-2659,W,M,D,310,12/31/2012,01/01/2009,Mr. Ashy -Council Member ,"District 1, City of Oakdale ",P. O. Box 728,,Oakdale,LA,71463,318-335-3629,ALLEN,"""Gwen"" Alsburry",912 Holliday St.,,Oakdale,LA,71463,318-335-1721,B,F,D,310,12/31/2012,01/01/2009,Ms. Alsburry -Council Member ,"District 1, Town of Kinder ",P. O. Drawer AH,,Kinder,LA,70648,318-738-2620,ALLEN,Ferda Wykoff,P. O. Box 58,,Kinder,LA,70648,337-738-2835,B,M,D,310,12/31/2010,01/01/2007 -Council Member ,"District 2, City of Oakdale ",P. O. Box 728,,Oakdale,LA,71463,318-335-3629,ALLEN,John Matte,409 Meldoy Dr.,,Oakdale,LA,71463,318-335-2523,W,M,D,310,12/31/2012,01/01/2009,Mr. Matte -Council Member ,"District 2, Town of Kinder ",P. O. Drawer AH,,Kinder,LA,70648,318-738-2620,ALLEN,Wayland LaFargue,P. O. Box 46,,Kinder,LA,70648,337-738-5989,W,M,D,310,12/31/2010,01/01/2007 -Council Member ,"District 3, City of Oakdale ",P. O. Box 728,,Oakdale,LA,71463,318-335-3629,ALLEN,Robert Loman,108 Perry St.,,Oakdale,LA,71463,318-335-2856,W,M,D,310,12/31/2012,01/01/2009,Mr. Loman -Council Member ,"District 3, Town of Kinder ",P. O. Drawer AH,,Kinder,LA,70648,318-738-2620,ALLEN,Susan Doumite,P. O. Box 548,,Kinder,LA,70648,337-738-2068,W,F,R,310,12/31/2010,01/01/2007 -Council Member ,"District 4, City of Oakdale ",P. O. Box 728,,Oakdale,LA,71463,318-335-3629,ALLEN,Ralph Stapleton,1120 Scott Dr.,,Oakdale,LA,71463,318-335-0604,W,M,D,310,12/31/2012,01/01/2009,Mr. Stapleton -Council Member ,"District 4, Town of Kinder ",P. O. Drawer AH,,Kinder,LA,70648,318-738-2620,ALLEN,"""Angie"" Weatherford Van Norman",P. O. Box 1826,,Kinder,LA,70648,337-738-4441,W,F,R,310,12/31/2010,01/01/2007 -DPEC Member ,at Large ,,,,LA,,,ASCENSION,"""L.C."" Irvin",P.O. Box 353,,Darrow,LA,70725,225-473-9261,B,M,D,054,02/20/2012,02/20/2008,Mr. Irvin -DPEC Member ,at Large ,,,,LA,,,ASCENSION,"Edward ""Ed"" Price",2034 S. Robert Ave.,,Gonzales,LA,70737,225-647-4705,B,M,D,054,02/20/2012,02/20/2008,Mr. Price -DPEC Member ,District 1 ,,,,LA,,,ASCENSION,Oliver Joseph,1409 Millien Road,,Donaldsonville,LA,70346,225-473-9637,B,M,D,056,02/20/2012,02/20/2008,Mr. Joseph -DPEC Member ,District 2 ,,,,LA,,,ASCENSION,George Probst,312 Woodland Dr.,,Donaldsonville,LA,70346,225-474-4900,W,M,D,056,02/20/2012,02/20/2008,Mr. Probst -DPEC Member ,District 3 ,,,,LA,,,ASCENSION,Jesse Bartley,39034 Hwy. 22,,Darrow,LA,70725,225-473-4583,B,M,D,056,02/20/2012,02/20/2008,Mr. Bartley -DPEC Member ,District 4 ,,,,LA,,,ASCENSION,Larry H. Christy,15442 Airline Hwy.,,Prairieville,LA,70769,225-673-6627,B,M,D,056,02/20/2012,02/20/2008,Mr. Christy -DPEC Member ,District 5 ,,,,LA,,,ASCENSION,"""A.J."" Nickens",16153 Joe Sevario Rd.,,Prairieville,LA,70769,225-622-2458,W,M,D,056,02/20/2012,02/20/2008,Mr. Nickens -DPEC Member ,District 6 ,,,,LA,,,ASCENSION,,,,,,,,,,,056 -DPEC Member ,District 7 ,,,,LA,,,ASCENSION,,,,,,,,,,,056 -DPEC Member ,District 8 ,,,,LA,,,ASCENSION,,,,,,,,,,,056 -DPEC Member ,District 9 ,,,,LA,,,ASCENSION,Shirley Bourque Waguespack,41291 Cannon Rd.,,Gonzales,LA,70737,225-647-3004,W,F,D,056,02/20/2012,02/20/2008,Ms. Waguespack -DPEC Member ,District 10 ,,,,LA,,,ASCENSION,,,,,,,,,,,056 -DPEC Member ,District 11 ,,,,LA,,,ASCENSION,,,,,,,,,,,056 -RPEC Member ,at Large ,,,,LA,,,ASCENSION,"""Kathy"" Edmonston",43510 North Pine Crest St.,,Gonzales,LA,70737,225-622-2086,W,F,R,064,02/20/2012,02/20/2008 -RPEC Member ,at Large ,,,,LA,,,ASCENSION,"""Jeremy"" Epps",37348 Dutchtown Crossing,,Gonzales,LA,70737,225-673-6962,W,M,R,064,02/20/2012,02/20/2008,Mr. Epps -RPEC Member ,at Large ,,,,LA,,,ASCENSION,Cheryl Fontenot,P.O. Box 298,,Duplessis,LA,70728,225-644-5401,W,F,R,064,02/20/2012,02/20/2008 -RPEC Member ,at Large ,,,,LA,,,ASCENSION,Todd P. Gautreau,13103 Hanson Rd.,,Gonzales,LA,70737,225-644-6882,W,M,R,064,02/20/2012,02/20/2008,Mr. Gautreau -RPEC Member ,at Large ,,,,LA,,,ASCENSION,"Phillip ""P.J."" Valentine",14256 Parkview Dr.,,Prairieville,LA,70769,225-715-9068,W,M,R,064,02/20/2012,02/20/2008,Mr. Valentine -RPEC Member ,District 1 ,,,,LA,,,ASCENSION,Felix Sternfels,P. O. Box 608,,Donaldsonville,LA,70346,225-473-1882,W,M,R,066,02/20/2012,02/20/2008,Mr. Sternfels -RPEC Member ,District 2 ,,,,LA,,,ASCENSION,JoAn Brown,6090 Brewerton Estates Rd.,,Gonzales,LA,70737,225-647-4560,W,F,R,066,02/20/2012,02/20/2008,Ms. Brown -RPEC Member ,District 3 ,,,,LA,,,ASCENSION,"""Pie"" Lanoux",39045 Cornerview Rd.,,Gonzales,LA,70737,225-647-2750,W,F,R,066,02/20/2012,02/20/2008,Mr. Lanoux -RPEC Member ,District 4 ,,,,LA,,,ASCENSION,"""Pat"" Bell",P.O. Box 81,,Duplessis,LA,70728,225-571-3436,W,M,R,066,02/20/2012,02/20/2008,Mr. Bell -RPEC Member ,District 5 ,,,,LA,,,ASCENSION,"""Chip"" McCorkle",16254 Ole Homestead Ln.,,Prairieville,LA,70769,225-622-1687,W,M,R,066,02/20/2012,02/20/2008,Mr. McCorkle -RPEC Member ,District 6 ,,,,LA,,,ASCENSION,Rhett Bourgeois,9227 Hwy. 22,,St. Amant,LA,70774,225-675-6792,W,M,R,066,02/20/2012,02/20/2008 -RPEC Member ,District 7 ,,,,LA,,,ASCENSION,Chris Loar,17378 Lauren Dr.,,,LA,70769,225-677-5179,W,M,R,066,02/20/2012,02/20/2008,Mr. Loar -RPEC Member ,District 8 ,,,,LA,,,ASCENSION,Brad Walker,36086 Ridge Rd.,,Prairieville,LA,70769,225-673-2715,W,M,R,066,02/20/2012,02/20/2008,Mr. Walker -RPEC Member ,District 9 ,,,,LA,,,ASCENSION,,,,,,,,,,,066 -RPEC Member ,District 10 ,,,,LA,,,ASCENSION,Larry Buquoi,11117 Terrell Ave.,,Gonzales,LA,70737,225-677-7070,W,M,R,066,02/20/2012,02/20/2008,Mr. Buquoi -RPEC Member ,District 11 ,,,,LA,,,ASCENSION,Steven McGowan,42240 Conifer Dr.,,Gonzales,LA,70737,225-622-5276,W,M,R,066,02/20/2012,02/20/2008 -Judge ,Parish Court ,"828 S. Irma Blvd., Bldg. 2",,Gonzales,LA,70737,225-621-8504,ASCENSION,Marilyn M. Lambert,18436 Greenbriar Ave.,,Prairieville,LA,70769,225-673-8426,W,F,R,220,12/31/2012,01/01/2007,Judge Lambert -Sheriff ,,P. O. Box 268,,Donaldsonville,LA,70346,225-473-8671,ASCENSION,Jeffrey F. Wiley,P.O. Box 268,,Donaldsonville,LA,70346,225-644-5654,W,M,D,225,06/30/2012,07/01/2008,Sheriff Wiley -Clerk of Court ,,P. O. Box 192,,Donaldsonville,LA,70346,225-473-9866,ASCENSION,"Kermit ""Hart"" Bourque",815 E. Worthey St.,,Gonzales,LA,70737,225-647-2618,W,M,D,230,06/30/2012,07/01/2008,Mr. Bourque -Assessor ,,P. O. Box 544,,Donaldsonville,LA,70346,225-473-9239,ASCENSION,Renee Mire Michel,814 E. Cornerview,,Gonzales,LA,70737,225-644-8562,W,F,D,235,12/31/2012,01/01/2009,Ms. Michel -Coroner ,,"2647 Riverview Blvd., Ste. 100",,Gonzales,LA,70737,225-644-4743,ASCENSION,John F. Fraiche,15151 Highland Rd.,,Baton Rouge,LA,70810,225-754-7976,W,M,D,240,03/25/2012,03/24/2008,Mr. Fraiche -Parish President ,,208 E. Railrod St.,,Gonzales,LA,70737,225-621-8577,ASCENSION,"""Tommy"" Martinez",13367 Hwy. 431,,St. Amant,LA,70774,225-644-4473,W,M,D,243,01/02/2012,01/07/2008,Mr. Martinez -Council Member ,District 1 ,208 E. Railroad St.,,Gonzales,LA,,225-621-8577,ASCENSION,Oliver Joseph,1409 Millien Rd.,,Donaldsonville,LA,70346,225-473-9637,B,M,D,245,01/02/2012,01/07/2008,Mr. Joseph -Council Member ,District 2 ,208 E. Railroad St.,,Gonzales,LA,70737,225-621-8577,ASCENSION,Kent Schexnaydre,7140 Donaldson Dr.,,Gonzales,LA,70737,225-647-0455,W,M,D,245,01/02/2012,01/07/2008,Mr. Schexnaydre -Council Member ,District 3 ,208 E. Railroad St.,,Gonzales,LA,70737,225-621-8577,ASCENSION,Adrian Thompson,38533 Arrowhead Dr.,,Gonzales,LA,70737,225-647-1605,B,M,D,245,01/02/2012,01/07/2008,Mr. Thompson -Council Member ,District 4 ,208 E. Railroad St.,,Gonzales,LA,70737,225-621-8577,ASCENSION,"""Pat"" Bell, Sr.",P.O. Box 81,,Duplessis,LA,70728,225-673-6878,W,M,R,245,01/02/2012,01/07/2008,Mr. Bell -Council Member ,District 5 ,208 E. Railroad St.,,Gonzales,LA,70737,225-621-8577,ASCENSION,Dempsey Lambert,42105 Hwy. 933,,Prairieville,LA,70769,225-622-2703,W,M,D,245,01/02/2012,01/07/2008,Mr. Lambert -Council Member ,District 6 ,208 E. Railroad St.,,Gonzales,LA,70737,225-621-8577,ASCENSION,"Randy T. Clouatre, Sr.",12038 Arthur Clouatre Rd.,,St. Amant,LA,70774,225-647-4925,W,M,D,245,01/02/2012,01/07/2008,Mr. Clouatre -Council Member ,District 7 ,208 E. Railroad St.,,Gonzales,LA,70737,225-621-8577,ASCENSION,"""Chris"" Loar",17378 Lauren Dr.,,Prairieville,LA,70769,225-677-5179,W,M,R,245,01/02/2012,01/07/2008,Mr. Loar -Council Member ,District 8 ,208 E. Railroad St.,,Gonzales,LA,70737,225-621-8577,ASCENSION,"George Valentine, Jr.",13323 Hwy. 73,,Geismar,LA,70734,225-673-6973,W,M,R,245,01/02/2012,01/07/2008,Mr. Valentine -Council Member ,District 9 ,208 E. Railroad St.,,Gonzales,LA,70737,225-621-8577,ASCENSION,Todd Lambert,12202 Roddy Rd.,,Gonzales,LA,70737,225-644-6660,W,M,D,245,01/02/2012,01/07/2008,Mr. Lambert -Council Member ,District 10 ,208 E. Railroad St.,,Gonzales,LA,70737,225-621-8577,ASCENSION,Dennis Cullen,43201 No. John Templet Rd.,,Gonzales,LA,70737,225-644-6300,W,M,R,245,01/02/2012,01/07/2008,Mr. Cullen -Council Member ,District 11 ,208 E. Railroad St.,,Gonzales,LA,70737,225-621-8577,ASCENSION,Benny Johnson,40211 William Ficklin Rd.,,Gonzales,LA,70737,225-644-4107,W,M,,245,01/02/2012,01/07/2008,Mr. Johnson -Member of School Board ,District 1 ,P. O. Box 189,,Donaldsonville,LA,70346,225-473-7981,ASCENSION,Catherine Davis,612 W. Seventh St.,,Donaldsonville,LA,70346,225-473-3133,B,F,D,255,12/31/2010,01/01/2007,Ms. Davis -Member of School Board ,District 2 ,P. O. Box 189,,Donaldsonville,LA,70346,225-473-7981,ASCENSION,Jody Elisar,7297 Hwy. 44,,Gonzales,LA,70737,225-647-7655,W,M,D,255,12/31/2010,01/01/2007,Mr. Elisar -Member of School Board ,District 3 ,P. O. Box 189,,Donaldsonville,LA,70346,225-473-7981,ASCENSION,"Edward ""Ed"" Price",2034 S. Robert,,Gonzales,LA,70737,225-647-4705,B,M,D,255,12/31/2010,01/01/2007,Mr. Price -Member of School Board ,"District 4, Seat A ",P. O. Box 189,,Donaldsonville,LA,70346,225-473-7981,ASCENSION,Kerry Diez,12043 Cotton Patch Ln.,,Gonzales,LA,70737,225-673-6822,W,M,R,255,12/31/2010,01/01/2007,Ms. Diez -Member of School Board ,"District 4, Seat B ",P. O. Box 189,,Donaldsonville,LA,70346,225-473-7981,ASCENSION,John D. Murphy,37147 Perkins Rd.,,Prairieville,LA,70769,225-673-2602,W,M,R,255,12/31/2010,01/01/2007,Mr. Murphy -Member of School Board ,"District 5, Seat A ",P. O. Box 189,,Donaldsonville,LA,70346,225-473-7981,ASCENSION,"""A.J."" Nickens",16153 Joe Sevario Rd.,,Prairieville,LA,70769,225-622-2458,W,M,D,255,12/31/2010,01/01/2007,Mr. Nickens -Member of School Board ,"District 5, Seat B ",P. O. Box 189,,Donaldsonville,LA,70346,225-473-7981,ASCENSION,Taft C. Kleinpeter,38138 Willow Lake E. Ave.,,Prairieville,LA,70769,225-673-4040,W,M,R,255,12/31/2010,01/01/2007,Mr. Kleinpeter -Member of School Board ,"District 6, Seat A ",P. O. Box 189,,Donaldsonville,LA,70346,225-473-7981,ASCENSION,Steve A. Broussard,45340 John Sheets Rd.,,St. Amant,LA,70774,225-647-8276,W,M,D,255,12/31/2010,01/01/2007,Mr. Broussard -Member of School Board ,"District 6, Seat B ",P. O. Box 189,,Donaldsonville,LA,70346,225-473-7981,ASCENSION,Harold Jarreau,44089 S. Paula St.,,St. Amant,LA,70774,225-644-4802,W,M,,255,12/31/2010,01/01/2007,Mr. Jarreau -Member of School Board ,"District 7, Seat A ",P. O. Box 189,,Donaldsonville,LA,70346,225-473-7981,ASCENSION,"Troy J. Gautreau, Sr.",40337 Lelia Rd.,,Gonzales,LA,70737,225-644-1928,W,M,R,255,12/31/2010,01/01/2007,Mr. Gautreau -Member of School Board ,"District 7, Seat B ",P. O. Box 189,,Donaldsonville,LA,70346,225-473-7981,ASCENSION,"Patricia ""Pat"" Russo",42270 Weber City Rd.,,Gonzales,LA,70737,225-647-6625,W,F,D,255,12/31/2010,01/01/2007,Ms. Russo -Justice of the Peace ,1st Justice Court ,1004 Madison St.,,Donaldsonville,LA,70346,225-473-4407,ASCENSION,Andrew Falcon,1004 Madison St.,,Donaldsonville,LA,70346,225-473-4407,W,M,D,265,12/31/2014,01/01/2009,Mr. Falcon -Justice of the Peace ,2nd Justice Court ,39362 Shafter LeBlanc Rd.,,Gonzales,LA,70737,225-647-3753,ASCENSION,"Leroy J. Laiche, Jr.",18507 Andrew Jackson Ave.,,Prairieville,LA,70769,225-744-8800,W,M,R,265,12/31/2014,10/27/2009,Mr. Laiche -Justice of the Peace ,3rd Justice Court ,"11296 Hwy. 431, Ste. C",,St. Amant,LA,70774,225-644-1512,ASCENSION,John C. Hebert,44073 Gold Place Rd.,,St. Amant,LA,70774,225-647-7002,W,M,D,265,12/31/2014,01/01/2009 -Constable ,1st Justice Court ,2411 St. Simon Pl.,,Donaldsonville,LA,70346,225-473-3526,ASCENSION,"Andrew ""Banana"" LeBlanc",2411 St. Simon Pl.,,Donaldsonville,LA,70346,225-473-3526,W,M,D,267,12/31/2014,01/01/2009,Mr. LeBlanc -Constable ,2nd Justice Court ,1121 E. Fabian St.,,Gonzales,LA,70737,225-647-1306,ASCENSION,Danny P. Thibodeaux,P. O. Box 85,,Prairieville,LA,70769,225-673-8015,W,M,R,267,12/31/2014,01/01/2009,Mr. Thibodeaux -Constable ,3rd Justice Court ,12487 Agnes Marie Road,,St. Amant,LA,70774,225-644-3815,ASCENSION,"James E. ""Chief"" LeBlanc",12487 Agnes Marie Rd.,,St. Amant,LA,70774,225-644-3815,W,M,D,267,12/31/2014,01/01/2009,Mr. LeBlanc -Mayor ,City of Donaldsonville ,P. O. Box 470,,Donaldsonville,LA,,225-473-4247,ASCENSION,"Leroy Sullivan, Sr.",2219 East Bayou Rd.,,Donaldsonville,LA,70346,225-955-1368,B,M,D,300,12/31/2012,01/01/2009,Mayor Sullivan -Mayor ,City of Gonzales ,120 S. Irma Blvd.,,Gonzales,LA,,225-647-2841,ASCENSION,Barney Arceneaux,1745 E. Nelson,,Gonzales,LA,70737,225-647-5969,W,M,D,300,12/31/2012,01/01/2009,Mayor Arceneaux -Mayor ,Town of Sorrento ,P. O. Box 65,,Sorrento,LA,,225-675-5337,ASCENSION,Blake A. LeBlanc,43497 Poplar,,Sorrento,LA,70778,225-675-6703,W,M,D,300,06/30/2013,07/01/2009 -Chief of Police ,City of Gonzales ,120 S. Irma Blvd.,,Gonzales,LA,70737,225-647-2841,ASCENSION,Sherman Jackson,1324 S. Shirley Ave.,,Gonzales,LA,70737,225-644-8316,B,M,D,305,12/31/2012,01/01/2009,Chief Jackson -Chief of Police ,Town of Sorrento ,P. O. Box 65,,Sorrento,LA,70778,225-675-5337,ASCENSION,"Earl L. Theriot, Jr.",7502 Eva St.,,Sorrento,LA,70778,225-675-5772,W,M,D,305,06/30/2013,07/01/2009,Chief Theriot -Council Member ,"District 1, City of Donaldsonville ",P. O. Box 470,,Donaldsonville,LA,70346,225-473-4247,ASCENSION,"Anthony ""Tony"" Huey",411 W. Third St.,,Donaldsonville,LA,70346,225-806-1888,B,M,D,310,12/31/2012,01/01/2009,Mr. Huey -Council Member ,"District 2, City of Donaldsonville ",P. O. Box 470,,Donaldsonville,LA,70346,225-473-4247,ASCENSION,Raymond Aucoin,2200 E. Bayou Rd.,,Donaldsonville,LA,70346,225-717-2540,W,M,D,310,12/31/2012,01/01/2009,Mr. Aucoin -Council Member ,"District 3, City of Donaldsonville ",P. O. Box 470,,Donaldsonville,LA,70346,225-473-4247,ASCENSION,"Reginald Francis, Sr.",P. O. BOX 1582,,Donaldsonville,LA,70346,225-473-7220,B,M,D,310,12/31/2012,01/01/2009,Mr. Francis -Council Member ,"District 4, City of Donaldsonville ",P. O. Box 470,,Donaldsonville,LA,70346,225-473-4247,ASCENSION,"Charles R. Brown, Sr.",106 Anna St.,,Donaldsonville,LA,70346,225-473-2198,B,M,D,310,12/31/2012,01/01/2009,Mr. Brown -Council Member ,"District 5, City of Donaldsonville ",P. O. Box 470,,Donaldsonville,LA,70346,225-473-4247,ASCENSION,Emile John Spano,916 Iberville St.,,Donaldsonville,LA,70346,225-473-4959,W,M,D,310,12/31/2012,01/01/2009,Mr. Spano -Council Member ,"Division A, City of Gonzales ",120 S. Irma Blvd.,,Gonzales,LA,70737,225-647-2841,ASCENSION,"Kenneth ""Kenny"" Matassa",P. O. Box 426,,Gonzales,LA,70707,225-647-4601,W,M,D,310,12/31/2012,01/01/2009,Mr. Matassa -Council Member ,"Division B, City of Gonzales ",120 S. Irma Blvd.,,Gonzales,LA,70737,225-647-2841,ASCENSION,Kirk J. Boudreaux,1804 E. Bocage,,Gonzales,LA,70737,225-644-3969,W,M,D,310,12/31/2012,01/01/2009,Mr. Boudreaux -Council Member ,"Division C, City of Gonzales ",120 S. Irma Blvd.,,Gonzales,LA,70737,225-647-2841,ASCENSION,"Ronald J. ""Joe"" Waguespack",1621 E. Nelson St.,,Gonzales,LA,70737,225-647-4623,W,M,R,310,12/31/2012,01/01/2009,Mr. Waguespack -Council Member ,"Division D, City of Gonzales ",120 S. Irma Blvd.,,Gonzales,LA,70737,225-647-2841,ASCENSION,Terance L. Irvin,2414 S. Edwards,,Gonzales,LA,70737,225-647-7441,B,M,D,310,12/31/2012,01/01/2009,Mr. Irvin -Council Member ,"Division E, City of Gonzales ",120 S. Irma Blvd.,,Gonzales,LA,70737,225-647-2841,ASCENSION,John J. Cagnolatti,1127 S. Vista Ave.,,Gonzales,LA,70737,225-644-5273,W,M,R,310,12/31/2012,01/01/2009,Mr. Cagnolatti -Council Member ,Town of Sorrento ,P. O. Box 65,,Sorrento,LA,70778,225-675-5337,ASCENSION,John Braud,P.O. Box 297,,Sorrento,LA,70778,225-675-5972,W,M,,310,06/30/2013,07/01/2009,Mr. Braud -Council Member ,Town of Sorrento ,P. O. Box 65,,Sorrento,LA,70778,225-675-5337,ASCENSION,"Wilson Longanecker, Jr.",P.O. Box 295,,Sorrento,LA,70778,225-715-7665,W,M,D,310,06/30/2013,07/01/2009,Mr. Longanecker -Council Member ,Town of Sorrento ,P. O. Box 65,,Sorrento,LA,70778,225-675-5337,ASCENSION,"Marvin L. Martin, ",P. O. Box 71,,Sorrento,LA,70778,225-675-2699,B,M,D,310,06/30/2013,11/24/2009,Mr. Martin -Council Member ,Town of Sorrento ,P. O. Box 65,,Sorrento,LA,70778,225-675-5337,ASCENSION,"Lionel Melancon, Jr.",44345 Braud St.,,Sorrento,LA,70778,225-328-1393,W,M,D,310,06/30/2013,07/01/2009,Mr. Melancon -Council Member ,Town of Sorrento ,P. O. Box 65,,Sorrento,LA,70778,225-675-5337,ASCENSION,"Milton ""Needlenose"" Vicknair",8235 Villeneuve St.,,Sorrento,LA,70778,225-675-8538,W,M,D,310,06/30/2013,07/01/2009,Mr. Vicknair -DPEC Member ,at Large ,,,,LA,,,ASSUMPTION,,,,,,,,,,,054 -DPEC Member ,District 1 ,,,,LA,,,ASSUMPTION,,,,,,,,,,,056 -DPEC Member ,District 2 ,,,,LA,,,ASSUMPTION,,,,,,,,,,,056 -DPEC Member ,District 3 ,,,,LA,,,ASSUMPTION,,,,,,,,,,,056 -DPEC Member ,District 4 ,,,,LA,,,ASSUMPTION,,,,,,,,,,,056 -DPEC Member ,District 5 ,,,,LA,,,ASSUMPTION,"Spergeon Holly, Jr.",4113 Hwy. 1,,Napoleonville,LA,70390,985-369-7412,B,M,D,056,02/20/2012,02/20/2008,Mr. Holly -DPEC Member ,District 6 ,,,,LA,,,ASSUMPTION,,,,,,,,,,,056 -DPEC Member ,District 7 ,,,,LA,,,ASSUMPTION,,,,,,,,,,,056 -DPEC Member ,District 8 ,,,,LA,,,ASSUMPTION,,,,,,,,,,,056 -DPEC Member ,District 9 ,,,,LA,,,ASSUMPTION,,,,,,,,,,,056 -RPEC Member ,at Large ,,,,LA,,,ASSUMPTION,Collette Vizier,103 Lucky St.,,Plattenville,LA,70393,985-369-3724,W,F,R,064,02/20/2012,02/20/2008,Ms. Vizier -RPEC Member ,District 1 ,,,,LA,,,ASSUMPTION,,,,,,,,,,,066 -RPEC Member ,District 2 ,,,,LA,,,ASSUMPTION,,,,,,,,,,,066 -RPEC Member ,District 3 ,,,,LA,,,ASSUMPTION,,,,,,,,,,,066 -RPEC Member ,District 4 ,,,,LA,,,ASSUMPTION,,,,,,,,,,,066 -RPEC Member ,District 5 ,,,,LA,,,ASSUMPTION,,,,,,,,,,,066 -RPEC Member ,District 6 ,,,,LA,,,ASSUMPTION,,,,,,,,,,,066 -RPEC Member ,District 7 ,,,,LA,,,ASSUMPTION,,,,,,,,,,,066 -RPEC Member ,District 8 ,,,,LA,,,ASSUMPTION,,,,,,,,,,,066 -RPEC Member ,District 9 ,,,,LA,,,ASSUMPTION,,,,,,,,,,,066 -Sheriff ,,P. O. Box 69,,Napoleonville,LA,70390,225-369-7281,ASSUMPTION,"Michael ""Mike"" Waguespack",P.O. Box 69,,Napoleonville,LA,70390,985-369-6559,W,M,D,225,06/30/2012,07/01/2008,Sheriff Waguespack -Clerk of Court ,,P. O. Drawer 249,,Napoleonville,LA,70390,985-369-6653,ASSUMPTION,Darlene Landry,P.O. Drawer 249,,Napoleonville,LA,70390,985-369-2603,W,F,D,230,06/30/2012,07/01/2008,Ms. Landry -Assessor ,,P. O. Box 576,,Napoleonville,LA,70390,985-369-6385,ASSUMPTION,"Wayne ""Cat"" Blanchard",3623 Hwy. 308,,Napoleonville,LA,70390,985-369-6672,W,M,D,235,12/31/2012,01/01/2009,Mr. Blanchard -Coroner ,,P.O. Box 188,,Napoleonville,LA,70390,985-369-6485,ASSUMPTION,Celeste Chaudoir,P. O. Box 188,,Napoleonville,LA,70390,985-369-7159,W,F,D,240,03/25/2012,03/24/2008,Ms. Chaudoir -Police Juror ,Ward 1 ,P. O. Box 520,,Napoleonville,LA,,985-369-7435,ASSUMPTION,Patrick O. Lawless,139 Ideal St.,,Belle Rose,LA,70341,985-369-2074,B,M,D,245,01/08/2012,01/14/2008,Mr. Lawless -Police Juror ,Ward 2 ,P. O. Box 520,,Napoleonville,LA,70390,985-369-7435,ASSUMPTION,"Jeff ""Big Daddy"" Naquin",319 Brule Rd.,,Labadieville,LA,70372,985-526-8139,W,M,D,245,01/08/2012,01/14/2008,Mr. Naquin -Police Juror ,Ward 3 ,P. O. Box 520,,Napoleonville,LA,70390,985-369-7435,ASSUMPTION,Irving Comeaux,159 Pond Dr.,,Morgan City,LA,70380,985-631-2443,W,M,D,245,01/08/2012,01/14/2008,Mr. Comeaux -Police Juror ,Ward 4 ,P. O. Box 520,,Napoleonville,LA,70390,985-369-7435,ASSUMPTION,Patrick Johnson,3555 Hwy. 1,,Napoleonville,LA,70390,985-369-7550,B,M,D,245,01/08/2012,01/14/2008,Mr. Johnson -Police Juror ,Ward 5 ,P. O. Box 520,,Napoleonville,LA,70390,985-369-7435,ASSUMPTION,"""Marty"" Triche",P.O. Box 339,,Napoleonville,LA,70390,985-369-7320,W,M,D,245,01/08/2012,01/14/2008,Mr. Triche -Police Juror ,Ward 6 ,P. O. Box 520,,Napoleonville,LA,70390,985-369-7435,ASSUMPTION,"Calvin ""JC"" James",128 Jacobs St.,,Napoleonville,LA,70390,985-369-2843,B,M,D,245,01/08/2012,01/14/2008,Mr. James -Police Juror ,Ward 7 ,P. O. Box 520,,Napoleonville,LA,70390,985-369-7435,ASSUMPTION,Henry J. Dupre,P.O. Box 362,,Belle Rose,LA,70341,225-474-0254,W,M,D,245,01/08/2012,01/14/2008,Mr. Dupre -Police Juror ,Ward 8 ,P. O. Box 520,,Napoleonville,LA,70390,985-369-7435,ASSUMPTION,Booster Breaux,2631 Lee Dr.,,Pierre Part,LA,70339,985-252-6769,W,M,D,245,01/08/2012,01/14/2008,Mr. Breaux -Police Juror ,Ward 9 ,P. O. Box 520,,Napoleonville,LA,70390,985-369-7435,ASSUMPTION,Myron Matherne,129 Timothy St.,,Pierre Part,LA,70339,985-252-9504,W,M,D,245,01/08/2012,01/14/2008,Mr. Matherne -Member of School Board ,Ward 1 ,4901 Hwy. 308,,Napoleonville,LA,70390,985-369-7251,ASSUMPTION,Leonard Alcorn,P.O. Box 15,,Belle Rose,LA,70341,985-369-7727,B,M,D,255,12/31/2010,01/01/2007,Mr. Alcorn -Member of School Board ,Ward 2 ,4901 Hwy. 308,,Napoleonville,LA,70390,985-369-7251,ASSUMPTION,"Lee Meyer, Sr.",P.O. Box 268,,Napoleonville,LA,70390,985-369-2672,W,M,D,255,12/31/2010,01/01/2007,Mr. Meyer -Member of School Board ,Ward 3 ,4901 Hwy. 308,,Napoleonville,LA,70390,985-369-7251,ASSUMPTION,Andrea Barras,240 Flamingo Rd.,,Morgan City,LA,70380,985-631-2042,W,F,O,255,12/31/2010,01/01/2007,Ms. Barras -Member of School Board ,Ward 4 ,4901 Hwy. 308,,Napoleonville,LA,70390,985-369-7251,ASSUMPTION,Electa Fletcher Mickens,3242 Hwy. 1,,Napoleonville,LA,70390,985-526-8335,B,F,D,255,12/31/2010,01/01/2007,Ms. Mickens -Member of School Board ,Ward 5 ,4901 Hwy. 308,,Napoleonville,LA,70390,985-369-7251,ASSUMPTION,"Lawrence ""Larry"" Howell",4547 Hwy. 1,,Napoleonville,LA,70390,985-369-6758,W,M,D,255,12/31/2010,01/01/2007,Mr. Howell -Member of School Board ,Ward 6 ,4901 Hwy. 308,,Napoleonville,LA,70390,985-369-7251,ASSUMPTION,Ray Nicholas,223 Virginia St.,,Belle Rose,LA,70341,985-369-2151,B,M,D,255,12/31/2010,01/01/2007,Mr. Nicholas -Member of School Board ,Ward 7 ,4901 Hwy. 308,,Napoleonville,LA,70390,985-369-7251,ASSUMPTION,"John P. Beck, Sr.",P.O. Box 14,,Donaldsonville,LA,70346,225-473-7328,W,M,D,255,12/31/2010,01/01/2007,Mr. Beck -Member of School Board ,Ward 8 ,4901 Hwy. 308,,Napoleonville,LA,70390,985-369-7251,ASSUMPTION,"Jessica ""Kooney"" Ourso",102-A N. Curtis St.,,Pierre Part,LA,70339,985-252-6775,W,F,D,255,12/31/2010,01/01/2007,Ms. Ourso -Member of School Board ,Ward 9 ,4901 Hwy. 308,,Napoleonville,LA,70390,985-369-7251,ASSUMPTION,Doris Dugas,239 Mike St.,,Pierre Part,LA,70339,985-252-9371,W,F,D,255,12/31/2010,01/01/2007,Ms. Dugas -Justice of the Peace ,1st Justice of the Peace Ward ,5026 Hwy.308,,Napoleonville,LA,70390,985-369-2591,ASSUMPTION,Bryan P. Baldwin,5026 Hwy. 308,,Napoleonville,LA,70390,985-369-2591,W,M,D,265,12/31/2014,01/01/2009,Mr. Baldwin -Justice of the Peace ,2nd Justice of the Peace Ward ,117 Orchid St.,,Thibodaux,LA,70301,985-526-8694,ASSUMPTION,Roselyn Peltier,2425 Hwy. 308,,Tibodaux,LA,70301,985-526-6588,W,F,D,265,12/31/2014,01/02/2009,Ms. Peltier -Justice of the Peace ,3rd Justice of the Peace Ward ,P. O. Box 293,,Pierre Part,LA,70339,985-252-6010,ASSUMPTION,Bridget Marie Landry,2646 Hwy. 70 South,,Pierre Part,LA,70339,985-252-0064,W,F,D,265,12/31/2014,01/01/2009,Ms. Landry -Constable ,1st Justice of the Peace Ward ,P.O. Box 18,,Plattenville,LA,70393,985-369-7426,ASSUMPTION,Wayne Poche,P.O. Box 18,,Plattenville,LA,70393,985-369-7426,W,M,D,267,12/31/2014,01/01/2009,Mr. Poche -Constable ,2nd Justice of the Peace Ward ,3615 Hwy. 1,,Napoleonville,LA,70390,985-369-6645,ASSUMPTION,"Richard ""Roach"" Arcement",3615 Hwy. 1,,Napoleonville,LA,70390,985-369-6645,W,M,D,267,12/31/2014,01/01/2009,Mr. Arcement -Constable ,3rd Justice of the Peace Ward ,111 James St.,,Pierre Part,LA,70339,985-252-6767,ASSUMPTION,Jamie P. Ponville,2919 Hwy. 70 South,,Pierre Part,LA,70339,985-252-6528,W,M,D,267,12/31/2014,01/01/2009,Mr. Ponville -Mayor ,Village of Napoleonville ,P. O. Box 6,,Napoleonville,LA,,985-369-6365,ASSUMPTION,Ron Animashaun,P.O. Box 921,,Napoleonville,LA,70390,985-369-7706,B,M,D,300,12/31/2010,01/01/2007,Mr. Animashaun -Chief of Police ,Village of Napoleonville ,P. O. Box 6,,Napoleonville,LA,70390,985-369-6365,ASSUMPTION,"Lionel Bell, Sr.",P.O. Box 673,,Napoleonville,LA,70390,985-369-6276,B,M,D,305,12/31/2010,01/01/2007,Mr. Bell -Alderman ,Village of Napoleonville ,P. O. Box 6,,Napoleonville,LA,70390,985-369-6365,ASSUMPTION,Joyce Bell,P.O. Box 962,,Napoleonville,LA,70390,985-369-3178,B,F,D,310,12/31/2010,10/30/2007,Ms. Bell -Alderman ,Village of Napoleonville ,P. O. Box 6,,Napoleonville,LA,70390,985-369-6365,ASSUMPTION,Eugene Buggage,P.O. Box 847,,Napoleonville,LA,70390,985-369-6956,B,M,D,310,12/31/2010,01/01/2007,Mr. Buggage -Alderman ,Village of Napoleonville ,P. O. Box 6,,Napoleonville,LA,70390,985-369-6365,ASSUMPTION,"Floyd Truehill, Sr.",P.O. Box 631,,Napoleonville,LA,70390,985-369-2526,B,M,D,310,12/31/2010,01/01/2007,Mr. Truehill -DPEC Member ,at Large ,,,,LA,,,AVOYELLES,,,,,,,,,,,054 -DPEC Member ,District 1 ,,,,LA,,,AVOYELLES,,,,,,,,,,,056 -DPEC Member ,District 2 ,,,,LA,,,AVOYELLES,,,,,,,,,,,056 -DPEC Member ,District 3 ,,,,LA,,,AVOYELLES,,,,,,,,,,,056 -DPEC Member ,District 4 ,,,,LA,,,AVOYELLES,,,,,,,,,,,056 -DPEC Member ,District 5 ,,,,LA,,,AVOYELLES,,,,,,,,,,,056 -DPEC Member ,District 6 ,,,,LA,,,AVOYELLES,,,,,,,,,,,056 -DPEC Member ,District 7 ,,,,LA,,,AVOYELLES,,,,,,,,,,,056 -DPEC Member ,District 8 ,,,,LA,,,AVOYELLES,,,,,,,,,,,056 -DPEC Member ,District 9 ,,,,LA,,,AVOYELLES,,,,,,,,,,,056 -RPEC Member ,at Large ,,,,LA,,,AVOYELLES,"Jason Aymond, II",1281 Hwy. 1188,,Hessmer,LA,71341,,,,,064,,03/11/2009,Mr. Aymond -RPEC Member ,at Large ,,,,LA,,,AVOYELLES,Woodruff Brouillette,262 Chauffield Elmer Rd.,,Marksville,LA,71351,,,,,064,,03/11/2009,Ms. Brouillette -RPEC Member ,at Large ,,,,LA,,,AVOYELLES,Terry Cooley,3471 hwy 454,,Pineville,LA,71360,,,,,064,,03/11/2009,Ms. Cooley -RPEC Member ,at Large ,,,,LA,,,AVOYELLES,Elizabeth Dupuy,4606 Hwy. 107,,Marksville,LA,71351,,,,,064,,03/11/2009,Ms. Dupuy -RPEC Member ,at Large ,,,,LA,,,AVOYELLES,I. B. Lemoine,1909 Previt St.,,Mansura,LA,71350,,,,,064,,03/11/2009,Mr. Lemoine -RPEC Member ,District 1 ,,,,LA,,,AVOYELLES,Lance R. Dupuy,4606 Hwy. 107,,Marksville,LA,71351,,,,,066,,03/11/2009,Mr. Dupuy -RPEC Member ,District 2 ,,,,LA,,,AVOYELLES,"Kirby Roy, III",581 Little Corner,,Hessmer,LA,71341,,,,,066,,03/11/2009 -RPEC Member ,District 3 ,,,,LA,,,AVOYELLES,,,,,,,,,,,066 -RPEC Member ,District 4 ,,,,LA,,,AVOYELLES,Rayford Laborde,1039 Hwy. 1188,,Hessmer,LA,71341,,,,,066,,03/11/2009 -RPEC Member ,District 5 ,,,,LA,,,AVOYELLES,Dennis Bivens,292 Dr. T. Doos Rd.,,Mansura,LA,71350,,,,,066,,03/11/2009,Mr. Bivens -RPEC Member ,District 6 ,,,,LA,,,AVOYELLES,Van Kogis,4606 Hwy. 107,,Marksville,LA,71351,,,,,066,,03/11/2009 -RPEC Member ,District 7 ,,,,LA,,,AVOYELLES,Marguerite Constantine,851 Couvillion St.,,Moreauville,LA,71355,,,,,066,,03/11/2009,Ms. Constantine -RPEC Member ,District 8 ,,,,LA,,,AVOYELLES,,,,,,,,,,,066 -RPEC Member ,District 9 ,,,,LA,,,AVOYELLES,,,,,,,,,,,066 -Sheriff ,,675 Government St.,,Marksville,LA,71351,318-253-4000,AVOYELLES,Douglas Anderson,675 Government St.,,Marksville,LA,71351,318-941-2857,W,M,D,225,06/30/2012,07/01/2008 -Clerk of Court ,,P. O. Box 219,,Marksville,LA,71351,318-253-7523,AVOYELLES,"""Sammy"" Couvillon",P. O. Box 219,,Marksville,LA,71351,318-253-5631,W,M,D,230,06/30/2012,07/01/2008,Mr. Couvillion -Assessor ,,"312 N. Main St., Courthouse",,Marksville,LA,71351,318-253-4507,AVOYELLES,"""Emeric"" Dupuy",P.O. Box 484,,Cottonport,LA,71327,318-876-3437,W,M,D,235,12/31/2012,01/01/2009,Mr. Dupuy -Coroner ,,P.O. Box 1529,,Marksville,LA,71351,318-253-7077,AVOYELLES,L.J. Mayeux,P.O. Box 1529,,Marksville,LA,71351,318-253-5392,W,M,D,240,03/25/2012,03/24/2008,Mr. Mayeux -Police Juror,District 1,"312 N. Main St., Suite D",,Marksville,LA,71351,318-253-9208,AVOYELLES,Larry K. Sayes,157 Larry Sayes Rd.,,Vick,LA,71331,318-253-5608,W,M,D,245,01/08/2012,01/14/2008,Mr. Sayes -Police Juror ,District 2 ,"312 N. Main St., Suite D",,Marksville,LA,71351,318-253-9208,AVOYELLES,"""Mickey"" Romano",1238 Hwy. 1194,,Marksville,LA,71351,318-253-7700,W,M,D,245,01/08/2012,01/14/2008,Mr. Romano -Police Juror ,District 3 ,"312 N. Main St., Suite D",,Marksville,LA,71351,318-253-9208,AVOYELLES,Mark Borrel,532 North Washington St.,,Marksville,LA,71351,318-253-7128,W,M,D,245,01/08/2012,01/14/2008,Mr. Borrel -Police Juror ,District 4 ,"312 N. Main St., Suite D",,Marksville,LA,71351,318-253-9208,AVOYELLES,Louie Laborde,626 Willow Dr.,,Cottonport,LA,71327,318-876-2087,W,M,D,245,01/08/2012,01/14/2008,Mr. Laborde -Police Juror ,District 5 ,"312 N. Main St., Suite D",,Marksville,LA,71351,318-253-9208,AVOYELLES,"Anthony ""Twine"" Desselle",444 Lewis St.,,Marksville,LA,71351,318-253-8730,B,M,D,245,01/08/2012,01/14/2008,Mr. Desselle -Police Juror ,District 6 ,"312 N. Main St., Suite D",,Marksville,LA,71351,318-253-9208,AVOYELLES,Francis Keller,P.O. Box 374,,Bunkie,LA,71322,318-201-8499,B,M,D,245,01/08/2012,01/14/2008,Mr. Keller -Police Juror ,District 7 ,"312 N. Main St., Suite D",,Marksville,LA,71351,318-253-9208,AVOYELLES,Gary Plauche,P.O. Box 97,,Plaucheville,LA,71362,318-922-3178,W,M,D,245,01/08/2012,01/14/2008,Mr. Plauche -Police Juror ,District 8 ,"312 N. Main St., Suite D",,Marksville,LA,71351,318-253-9208,AVOYELLES,Wade Ducote,P.O. Box 351,,Bunkie,LA,71322,318-346-2128,W,M,D,245,01/08/2012,01/14/2008,Mr. Ducote -Police Juror ,District 9 ,"312 N. Main St., Suite D",,Marksville,LA,71351,318-253-9208,AVOYELLES,George L. Mayeaux,143 Pecan Grove Rd.,,Simmesport,LA,71369,318-941-5356,W,M,D,245,01/08/2012,01/14/2008,Mr. Mayeaux -City Judge ,"City Court, City of Bunkie ",P. O. Box 74,,Bunkie,LA,71322,318-346-2948,AVOYELLES,James H. Mixon,P.O. Box 83,,Bunkie,LA,71322,318-346-6616,W,M,D,250,12/31/2014,01/01/2009,Judge Mixon -City Judge ,"City Court, City of Marksville ","440 N. Main St., Suite 4",,Marksville,LA,71351,318-253-6423,AVOYELLES,"Angelo Piazza, III",P.O. Box 429,,Marksville,LA,71351,318-253-6423,W,M,D,250,12/31/2014,01/01/2009,Judge Piazza -City Marshal ,"City Court, City of Bunkie ",P. O. Box 74,,Bunkie,LA,71322,318-346-7250,AVOYELLES,Fred Carmouche,P. O. Box 1045,,Bunkie,LA,71322,318-447-1254,W,M,R,250,12/31/2014,01/01/2009,Marshal Carmouche -City Marshal ,"City Court, City of Marksville ","440 N. Main St., Suite 4",,Marksville,LA,71351,318-253-4481,AVOYELLES,Floyd Voinche,2951 Hwy. 1192,,Marksville,LA,71351,318-253-6188,W,M,D,250,12/31/2014,01/01/2009,Marshal Voinche -Member of School Board ,District 1 ,221 Tunica Dr. W.,,Marksville,LA,71351,318-240-0201,AVOYELLES,Freeman Ford,P.O. Box 128,,Marksville,LA,71351,318-253-8931,B,M,D,255,12/31/2010,01/01/2007,Mr. Ford -Member of School Board ,District 2 ,221 Tunica Dr. W.,,Marksville,LA,71351,318-240-0201,AVOYELLES,Lynn Deloach,P.O. Box 99,,Effie,LA,71331,318-253-8474,W,M,D,255,12/31/2010,01/01/2007,Mr. Deloach -Member of School Board ,District 3 ,221 Tunica Dr. W.,,Marksville,LA,71351,318-240-0201,AVOYELLES,"Carlos A. Mayeux, Jr.",P.O. Box 800,,Hamburg,LA,71339,318-985-2958,W,M,D,255,12/31/2010,01/01/2007,Mr. Mayeux -Member of School Board ,District 4 ,221 Tunica Dr. W.,,Marksville,LA,71351,318-240-0201,AVOYELLES,Ricky A. Juneau,3559 Hwy. 115,,Hessmer,LA,71341,318-563-8478,W,M,R,255,12/31/2010,01/01/2007,Mr. Juneau -Member of School Board ,District 5 ,221 Tunica Dr. W.,,Marksville,LA,71351,318-240-0201,AVOYELLES,Shelia Blackman Dupas,P.O. Box 205,,Mansura,LA,71350,318-964-2748,B,F,D,255,12/31/2010,01/01/2007,Mr. Dupas -Member of School Board ,District 6 ,221 Tunica Dr. W.,,Marksville,LA,71351,318-240-0201,AVOYELLES,Lizzie A. Ned,P.O. Box 352,,Bunkie,LA,71322,318-346-4372,B,F,D,255,12/31/2010,01/01/2007,Ms. Ned -Member of School Board ,District 7 ,221 Tunica Dr. W.,,Marksville,LA,71351,318-240-0201,AVOYELLES,"Jim ""Doc"" Guillory",P.O. Box 114,,Plaucheville,LA,71362,318-922-3722,W,M,R,255,12/31/2010,01/01/2007,Mr. Guillory -Member of School Board ,District 8 ,221 Tunica Dr. W.,,Marksville,LA,71351,318-240-0201,AVOYELLES,Van Kojis,P.O. Box 203,,Bunkie,LA,71322,318-346-7004,W,M,R,255,12/31/2010,01/01/2007,Mr. Kojis -Member of School Board ,District 9 ,221 Tunica Dr. W.,,Marksville,LA,71351,,AVOYELLES,John Lemoine,930 Tunica Dr.,,Marksville,LA,71351,318-253-7253,W,M,D,255,12/31/2010,01/01/2007,Mr. Lemoine -Justice of the Peace ,Justice of the Peace Ward 1 ,239 Hwy. 107,,,LA,71323,318-253-4707,AVOYELLES,"""Sam"" Piazza",2898 Effie Hwy.,,Deville,LA,71328,318-240-8660,W,M,D,265,12/31/2014,01/01/2009,Mr. Piazza -Justice of the Peace ,Justice of the Peace Ward 3 ,P. O. Box 663,,Mansura,LA,71350,318-964-2097,AVOYELLES,Sterling Hayes,2326 LeGlise St.,,Mansura,LA,71350,318-964-2097,B,M,D,265,12/31/2014,01/01/2009,Mr. Hayes -Justice of the Peace ,Justice of the Peace Ward 4 ,P. O. Box 185,,Hessmer,LA,71341,318-563-8346,AVOYELLES,Gerald Roy,P.O. Box 185,,Hessmer,LA,71341,318-563-8346,W,M,D,265,12/31/2014,01/01/2009,Mr. Roy -Justice of the Peace ,Justice of the Peace Ward 5 ,779 Hwy. 1194,,Marksville,LA,71351,318-253-6182,AVOYELLES,"Jimmy ""J.T."" Guillot",779 Hwy. 1194,,Marksville,LA,71351,318-253-6182,W,M,D,265,12/31/2014,01/01/2009,Mr. Guillot -Justice of the Peace ,Justice of the Peace Ward 6 ,791 Big Bend Rd.,,Moreauville,LA,71355,318-997-2129,AVOYELLES,"Eugenia ""Geane"" Desselle",791 Big Bend Rd.,,Moreauville,LA,71355,318-997-2129,W,F,D,265,12/31/2014,01/01/2009,Ms. Desselle -Justice of the Peace ,Justice of the Peace Ward 7 ,2254 Hwy. 105,,Simmesport,LA,71369,318-941-2843,AVOYELLES,"Roger Adams, Sr.",2254 Hwy. 105,,Simmesport,LA,71369,318-941-2469,B,M,D,265,12/31/2014,01/01/2009,Mr. Adams -Justice of the Peace ,Justice of the Peace Ward 8 ,P. O. Box 302,,Dupont,LA,71329,318-922-3785,AVOYELLES,Ronald A. McDonald,206 English Road,,Plaucheville,LA,71362,318-922-3746,W,M,R,265,12/31/2014,01/01/2009,Mr. McDonald -Justice of the Peace ,Justice of the Peace Ward 9 ,P. O. Box 210,,Cottonport,LA,71327,318-876-3498,AVOYELLES,Chris J. Lemoine,778 Choupique Ln.,,Cottonport,LA,71327,318-876-3480,W,M,D,265,12/31/2014,01/01/2009,Mr. Lemoine -Justice of the Peace ,Justice of the Peace Ward 11 ,897 S. Bayou Des Glaise Rd.,,Cottonport,LA,71327,,AVOYELLES,Robert J. Lemoine,897 S. Bayou DeGlaise,,Cottonport,LA,71327,318-985-2405,W,M,D,265,12/31/2014,01/01/2009,Mr. Lemoine -Constable ,Justice of the Peace Ward 1 ,1771 Hwy. 107,,Effie,LA,71331,318-253-5591,AVOYELLES,John M. Hathorn,1771 Hwy. 107,,Effie,LA,71331,318-253-5591,W,M,D,267,12/31/2014,01/01/2009,Mr. Hathorn -Constable ,Justice of the Peace Ward 3 ,2118 Regard St.,,Mansura,LA,71350,318-964-2433,AVOYELLES,Bert Lemoine,2118 Regard St.,,Mansura,LA,71350,318-964-2433,W,M,D,267,12/31/2014,01/01/2009,Mr. Lemoine -Constable ,Justice of the Peace Ward 4 ,369 Jacks Rd.,,Hessmer,LA,71341,318-563-4430,AVOYELLES,Marvin Roy,369 Jacks Rd.,,Hessmer,LA,71341,318-563-4430,W,M,D,267,12/31/2014,01/01/2009,Mr. Roy -Constable ,Justice of the Peace Ward 5 ,438 German Bayou Rd.,,Marksville,LA,71351,318-253-4781,AVOYELLES,Michele Guillot,795 Hwy. 1194,,Marksville,LA,71351,318-253-4242,W,F,D,267,12/31/2014,01/01/2009,Mr. Guilliot -Constable ,Justice of the Peace Ward 6 ,4751 N. Bayou Des Glaise,,Moreauville,LA,71355,318-447-1475,AVOYELLES,Ernest Desselle,761 Big Bend Rd.,,Moreauville,LA,71355,318-997-2689,W,M,D,267,12/31/2014,01/01/2009,Mr. Desselle -Constable ,Justice of the Peace Ward 7 ,P.O. Box 526,,Simmesport,LA,71369,318-941-2520,AVOYELLES,Sylvester Callihan,P.O. Box 373,,Simmesport,LA,71369,318-941-2560,B,M,D,267,12/31/2014,01/01/2009,Mr. Callihan -Constable ,Justice of the Peace Ward 8 ,1121 Hwy. 1181,,Plaucheville,LA,71362,318-922-3176,AVOYELLES,"Leon ""Ray"" Rabalais",1121 Hwy. 1181,,Plaucheville,LA,71362,318-922-3176,W,M,D,267,12/31/2014,01/01/2009,Mr. Rabalais -Constable ,Justice of the Peace Ward 9 ,3688 Hwy. 29,,Cottonport,LA,71327,318-876-2470,AVOYELLES,Jason Bergeron,146 Bergeron Ln.,,Cottonport,LA,71327,318-305-1394,W,M,D,267,12/31/2014,01/01/2009,Mr. Bergeron -Constable ,Justice of the Peace Ward 11 ,P.O. Box 244,,Moreauville,LA,71355,318-985-2183,AVOYELLES,Bert Bordelon,220 Dufour St.,,Moreauville,LA,71355,318-985-2183,W,M,D,267,12/31/2014,01/01/2009,Mr. Bordelon -Mayor ,City of Bunkie ,P. O. Box 630,,Bunkie,LA,,318-346-7663,AVOYELLES,"Gerard C. Moreau, Jr.",218 St. John St.,,Bunkie,LA,71322,318-346-7829,W,M,D,300,06/30/2010,07/01/2006,Mayor Moreau -Mayor ,City of Marksville ,427 N. Washington St.,,Marksville,LA,,318-253-9500,AVOYELLES,Richard Michel,P.O. Box 159,,Marksville,LA,71351,318-253-7547,W,M,D,300,06/30/2010,07/01/2006,Mayor Michel -Mayor ,Town of Cottonport ,P. O. Box 118,,Cottonport,LA,,318-876-3485,AVOYELLES,Cleveland Carmouche,P. O. Box 49,,Cottonport,LA,71327,318-876-2227,W,M,D,300,12/31/2012,01/01/2009,Mayor Carmouche -Mayor ,Town of Evergreen ,P. O. Box 85,,Evergreen,LA,,318-346-9844,AVOYELLES,John M. Armand,P.O. Box 291,,Evergreen,LA,71333,318-346-9181,W,M,R,300,12/31/2010,01/01/2007,Mr. Armand -Mayor ,Town of Mansura ,P. O. Box 157,,Mansura,LA,,318-964-2152,AVOYELLES,"Kenneth Pickett, Sr.",P.O. Box 214,,Mansura,LA,71350,318-964-2208,B,M,D,300,12/31/2010,01/01/2007,Mr. Pickett -Mayor ,Town of Simmesport ,P. O. Box 145,,Simmesport,LA,,318-941-2493,AVOYELLES,Eric John Rusk,P. O. Box 21,,Simmesport,LA,71369,318-941-5413,W,M,D,300,12/31/2012,01/01/2009,Mayor Rusk -Mayor ,Village of Hessmer ,P. O. Box 125,,Hessmer,LA,,318-563-4511,AVOYELLES,Lynn Bordelon,P.O. Box 52,,Hessmer,LA,71341,318-563-8376,W,M,R,300,12/31/2012,01/01/2009,Mayor -Mayor ,Village of Moreauville ,P. O. Box 57,,Moreauville,LA,,318-985-2338,AVOYELLES,Lionel Bordelon,234 Tassin St.,,Moreauville,LA,71355,318-985-2708,W,M,D,300,12/31/2010,01/01/2007,Mr. Bordelon -Mayor ,Village of Plaucheville ,P. O. Box 10,,Plaucheville,LA,,318-922-3111,AVOYELLES,Mona Rabalais,P. O. Box 85,,Plaucheville,LA,71362,318-922-3828,W,F,D,300,12/31/2012,01/01/2009,Mayor Rabalais -Chief of Police ,City of Bunkie ,P. O. Box 630,,Bunkie,LA,71322,318-346-7663,AVOYELLES,Mary L. Fanara,207 N. Briarwood Dr.,,Bunkie,LA,71322,318-346-6992,W,F,D,305,06/30/2010,07/01/2006,Chief Fanara -Chief of Police ,Town of Cottonport ,P. O. Box 118,,Cottonport,LA,71327,318-876-3485,AVOYELLES,Gerald Mayeux,P. O. Box 575,,Cottonport,LA,71327,318-876-2476,W,M,D,305,12/31/2012,01/01/2009,Chief Mayeux -Chief of Police ,Town of Mansura ,P. O. Box 157,,Mansura,LA,71350,318-964-2152,AVOYELLES,John Johnson,P.O. Box 732,,Mansura,LA,71350,318-964-5420,B,M,D,305,12/31/2010,01/01/2007,Mr. Johnson -Chief of Police ,Town of Simmesport ,P. O. Box 145,,Simmesport,LA,71369,318-941-2493,AVOYELLES,John L. Moreau,P. O. Box 954,,Simmesport,LA,71369,337-654-7222,W,M,D,305,12/31/2012,01/01/2009,Chief Moreau -Chief of Police ,Village of Hessmer ,P. O. Box 125,,Hessmer,LA,71341-0125 ,318-563-4511,AVOYELLES,Kenneth Smith,P. O. Box 396,,Hessmer,LA,71341,318-305-1979,W,M,D,305,12/31/2012,01/01/2009,Chief Smith -Marshal ,Town of Evergreen ,P. O. Box 85,,Evergreen,LA,71333,318-346-9014,AVOYELLES,David Blanchard,P.O. Box 283,,Evergreen,LA,71333,318-346-2537,W,M,R,305,12/31/2010,01/01/2007,Mr. Blanchard -Alderman at Large ,City of Bunkie ,P. O. Box 630,,Bunkie,LA,71322,318-346-7663,AVOYELLES,"Charles ""Chuck"" Descant",205 N. Gayle St.,,Bunkie,LA,71322,318-346-4386,W,M,D,308,06/30/2010,07/01/2006,Mr. Descant -Alderman at Large ,Town of Simmesport ,P. O. Box 145,,Simmesport,LA,71369,,AVOYELLES,Charles Austin,P.O. Box 934,,Simmesport,LA,71369,318-941-5858,W,M,D,308,12/31/2012,01/01/2009,Mr. Austin -Council Member at Large ,Town of Cottonport ,,,,LA,,,AVOYELLES,Curtis Francisco,P.O. Box 951,,Cottonport,LA,71327,318-876-2633,B,M,D,308,12/31/2012,01/01/2009,Mr. Francisco -Alderman ,"District 1, City of Bunkie ",P. O. Box 630,,Bunkie,LA,71322,318-346-7663,AVOYELLES,"Lemuel ""Lem"" Bassett",P.O. Box 75,,Bunkie,LA,71322,318-346-2656,B,M,D,310,06/30/2010,07/01/2006,Mr. Bassett -Alderman ,"District 1, City of Marksville ",427 N. Washington St.,,Marksville,LA,71351-2490,318-253-9500,AVOYELLES,Earl R. Adams,641 N. Preston St.,,Marksville,LA,71351,318-623-5145,W,M,D,310,06/30/2010,07/01/2006,Mr. Adams -Alderman ,"District 1, Town of Simmesport ",P. O. Box 145,,Simmesport,LA,71369,318-941-2493,AVOYELLES,Ted Turner,P. O. Box 353,,Simmesport,LA,71369,318-941-2269,W,M,D,310,12/31/2012,01/01/2009,Mr. Turner -Alderman ,"District 2, City of Bunkie ",P. O. Box 630,,Bunkie,LA,71322,318-346-7663,AVOYELLES,Craig W. Foster,P.O. Box 1314,,Bunkie,LA,71322,318-346-9346,B,M,D,310,06/30/2010,04/10/2007,Mr. Foster -Alderman ,"District 2, City of Bunkie ",P. O. Box 630,,Bunkie,LA,71322,318-346-7663,AVOYELLES,"Craig W. Foster, ",108 N. Elm St.,,Bunkie,LA,71322-1267,318-346-9346,B,M,D,310 -Alderman ,"District 2, City of Marksville ",427 N. Washington St.,,Marksville,LA,71351-2490,318-253-9500,AVOYELLES,Dale J. Bernard,353 Oak St.,,Marksville,LA,71351,318-253-7379,W,M,D,310,06/30/2010,07/01/2006,Mr. Bernard -Alderman ,"District 2, Town of Simmesport ",P. O. Box 145,,Simmesport,LA,71369,318-941-2493,AVOYELLES,Kenneth L. Marsh,P.O. Box 438,,Simmesport,LA,71369,318-941-2525,W,M,D,310,12/31/2012,01/01/2009,Mr. Marsh -Alderman ,"District 3, City of Bunkie ",P. O. Box 630,,Bunkie,LA,71322,318-346-7663,AVOYELLES,Travis J. Armand,515 Pershing Hwy.,,Bunkie,LA,71322,318-346-2993,W,M,D,310,06/30/2010,07/01/2006,Mr. Armand -Alderman ,"District 3, City of Marksville ",427 N. Washington St.,,Marksville,LA,71351-2490,318-253-9500,AVOYELLES,"Elliot ""Pete Komola"" Jordan",P.O. Box 1151,,Marksville,LA,71351,318-201-8299,B,M,D,310,06/30/2010,07/01/2006,Mr. Jordan -Alderman ,"District 3, Town of Simmesport ",P. O. Box 145,,Simmesport,LA,71369,318-941-2493,AVOYELLES,Myron Brown,P.O. Box 761,,Simmesport,LA,71369,318-941-2635,B,M,D,310,12/31/2012,01/01/2009,Mr. Brown -Alderman ,"District 4, City of Bunkie ",P. O. Box 630,,Bunkie,LA,71322,318-346-7663,AVOYELLES,Bruce L. Coulon,P.O. Box 57,,Bunkie,LA,71322,318-346-6975,W,M,D,310,06/30/2010,07/01/2006,Mr. Coulon -Alderman ,"District 4, City of Bunkie ",P. O. Box 630,,Bunkie,LA,71322,318-346-7663,AVOYELLES,"Clayton ""Rick"" Henderson, ",109 S. Sweetbriar Dr.,,Bunkie,LA,71322-1930,318-346-4747,W,M,R,310 -Alderman ,"District 4, City of Marksville ",427 N. Washington St.,,Marksville,LA,71351-2490,318-253-9500,AVOYELLES,Joyce P. Prier,613 Richelieu Parkway,,Marksville,LA,71351,318-253-7076,B,F,D,310,06/30/2010,07/01/2006,Ms. Prier -Alderman ,"District 4, Town of Simmesport ",P. O. Box 145,,Simmesport,LA,71369,318-941-2493,AVOYELLES,Manuel Kirk,P.O. Box 335,,Simmesport,LA,71369,318-941-5172,B,M,D,310,12/31/2012,01/01/2009,Mr. Kirk -Alderman ,"District 5, City of Marksville ",427 N. Washington St.,,Marksville,LA,71351-2490,318-253-9500,AVOYELLES,Richard Tassin,760 South Main St.,,Marksville,LA,71351,318-253-6803,W,M,D,310,06/30/2010,07/01/2006,Mr. Tassin -Alderman ,Town of Evergreen ,P. O. Box 85,,Evergreen,LA,71333,318-346-9014,AVOYELLES,Wanda Clark,P. O. Box 246,,Evergreen,LA,71333,318-346-4488,W,F,R,310,12/31/2010,01/01/2007,Ms. Clark -Alderman ,Town of Evergreen ,P. O. Box 85,,Evergreen,LA,71333,318-346-9014,AVOYELLES,Michelle Mayeux Dupuy,P.O. Box 363,,Evergreen,LA,71333,318-346-7378,W,F,D,310,12/31/2010,01/01/2007,Ms. Dupuy -Alderman ,Town of Evergreen ,P. O. Box 85,,Evergreen,LA,71333,318-346-9014,AVOYELLES,Kathy Joffrion,P.O. Box 246,,Evergreen,LA,71333,318-346-4488,W,F,R,310,12/31/2010,07/21/2008,Ms. Joffrion -Alderman ,Town of Evergreen ,P. O. Box 85,,Evergreen,LA,71333,318-346-9014,AVOYELLES,Heather Oliver Juneau,P.O. Box 175,,Evergreen,LA,71333,318-346-1555,W,F,D,310,12/31/2010,01/01/2007,Ms. Juneau -Alderman ,Town of Evergreen ,P. O. Box 85,,Evergreen,LA,71333,318-346-9014,AVOYELLES,"Kenneth Thompson, ",P.O. Box 85,,Evergreen,LA,71333,,,,,310,,02/08/2010,Mr. Thompson -Alderman ,Town of Mansura ,P. O. Box 157,,Mansura,LA,71350,318-964-2152,AVOYELLES,Judy Augustine Bazert,P.O. Box 281,,Mansura,LA,71350,318-964-2919,B,F,D,310,12/31/2010,01/01/2007,Ms. Bazert -Alderman ,Town of Mansura ,P. O. Box 157,,Mansura,LA,71350,318-964-2152,AVOYELLES,Julia R. Boston,P.O. Box 305,,Mansura,LA,71350,318-964-2630,B,F,D,310,12/31/2010,01/01/2007,Ms. Boston -Alderman ,Town of Mansura ,P. O. Box 157,,Mansura,LA,71350,318-964-2152,AVOYELLES,Connie D. Ducote,P.O. Box 25,,Mansura,LA,71350,318-964-2375,W,F,D,310,12/31/2010,01/01/2007,Ms. Ducote -Alderman ,Town of Mansura ,P. O. Box 157,,Mansura,LA,71350,318-964-2152,AVOYELLES,Gaon E. Escude,P.O. Box 204,,Mansura,LA,71350,318-964-2339,W,M,,310,12/31/2010,01/01/2007,Mr. Escude -Alderman ,Town of Mansura ,P. O. Box 157,,Mansura,LA,71350,318-964-2152,AVOYELLES,Floyd A. Murray,P.O. Box 2306,,Mansura,LA,71350,318-964-2590,B,M,D,310,12/31/2010,01/01/2007,Mr. Murray -Alderman ,Village of Hessmer ,P. O. Box 125,,Hessmer,LA,71341-0125 ,318-563-4511,AVOYELLES,Susan Ducote Jeansonne,P.O. Box 387,,Hessmer,LA,71341,318-563-4980,W,F,D,310,12/31/2012,01/01/2009,Ms. Jeansonne -Alderman ,Village of Hessmer ,P. O. Box 125,,Hessmer,LA,71341-0125 ,318-563-4511,AVOYELLES,Scott R. Kelly,P.O. BVox 27,,Hessmer,LA,71341,318-563-8962,W,M,D,310,12/31/2012,01/01/2009,Mr. Kelly -Alderman ,Village of Hessmer ,P. O. Box 125,,Hessmer,LA,71341-0125 ,318-563-4511,AVOYELLES,"Robert ""Bobby"" Roy",P.O. Box 326,,Hessmer,LA,71341,318-563-4238,W,M,D,310,12/31/2012,01/01/2009,Mr. Roy -Alderman ,Village of Moreauville ,P. O. Box 57,,Moreauville,LA,71355,318-985-2338,AVOYELLES,"""Reggie"" Ducote",P.O. Box 158,,Moreauville,LA,71355,318-985-2410,W,M,,310,12/31/2010,01/01/2007,Mr. Ducote -Alderman ,Village of Moreauville ,P. O. Box 57,,Moreauville,LA,71355,318-985-2338,AVOYELLES,"Kenneth Farbe, Jr.",314 Dufour St.,,Moreauville,LA,71355,318-985-3251,W,M,,310,12/31/2010,01/01/2007,Mr. Farbe -Alderman ,Village of Moreauville ,P. O. Box 57,,Moreauville,LA,71355,318-985-2338,AVOYELLES,"Oscar O.P. Goody, Jr.",P.O. Box 271,,Moreauville,LA,71355,318-985-2179,B,M,D,310,12/31/2010,01/01/2007,Mr. Goody -Alderman ,Village of Plaucheville ,P. O. Box 10,,Plaucheville,LA,71362,318-922-3111,AVOYELLES,Garry Carter,P. O. Box 117,,Plaucheville,LA,71362,318-922-3812,W,M,D,310,12/31/2012,01/01/2009,Mr. Carter -Alderman ,Village of Plaucheville ,P. O. Box 10,,Plaucheville,LA,71362,318-922-3111,AVOYELLES,Linda Landrneau Gagnard,P. O. Box 168,,Plaucheville,LA,71362,318-922-3588,W,F,D,310,12/31/2012,01/01/2009,Ms. Gagnard -Alderman ,Village of Plaucheville ,P. O. Box 10,,Plaucheville,LA,71362,318-922-3111,AVOYELLES,Aaron Lemoine,P.O. Box 31,,Plaucheville,LA,71362,318-922-3255,W,M,D,310,12/31/2012,01/01/2009,Mr. Lemoine -Council Member ,"District 1, Town of Cottonport ",P. O. Box 118,,Cottonport,LA,71327,318-876-3485,AVOYELLES,Margaret Jenkins,P. O. Box 40,,Cottonport,LA,71327,318-876-3355,B,F,D,310,12/31/2012,01/01/2009,Ms. Jenkins -Council Member ,"District 2, Town of Cottonport ",P. O. Box 118,,Cottonport,LA,71327,318-876-3485,AVOYELLES,Kenneth Friels,P.O. Box 1216,,Cottonport,LA,71327,318-305-3473,B,M,D,310,12/31/2012,01/01/2009,Mr. Friels -Council Member ,"District 3, Town of Cottonport ",P. O. Box 118,,Cottonport,LA,71327,318-876-3485,AVOYELLES,Luke Welch,127 Pierre Dr.,,Cottonport,LA,71327,318-876-2753,W,M,R,310,12/31/2012,01/01/2009,Mr. Welch -Council Member ,"District 4, Town of Cottonport ",P. O. Box 118,,Cottonport,LA,71327,318-876-3485,AVOYELLES,Brenda Moore Bazile,P. O. Box 1166,,Cottonport,LA,71327,318-876-2147,B,F,D,310,12/31/2012,01/01/2009,Ms. Bazile -DPEC Member ,at Large ,,,,LA,,,BEAUREGARD,"Walter Thomas ""Tommy"" Brown",415 Ward Line Rd.,,DeRidder,LA,70634,337-462-2240,W,M,D,054,02/20/2012,02/20/2008,Mr. Brown -DPEC Member ,at Large ,,,,LA,,,BEAUREGARD,William M. Coleman,545 Lost Bridge Rd.,,Longville,LA,70652,337-526-6154,W,M,D,054,02/20/2012,02/20/2008,Mr. Coleman -DPEC Member ,at Large ,,,,LA,,,BEAUREGARD,"Robert ""Bo"" Rice",326 Branch St.,,DeRidder,LA,70634,337-462-0316,B,M,D,054,02/20/2012,02/20/2008,Mr. Rice -DPEC Member ,at Large ,,,,LA,,,BEAUREGARD,Wilma L. Sowells Scott,609 E. North St.,,DeRidder,LA,70634,337-463-7287,B,F,D,054,02/20/2012,02/20/2008,Ms. Scott -DPEC Member ,at Large ,,,,LA,,,BEAUREGARD,Ann Jackson Steward,P.O. Box 385,,DeRidder,LA,70634,337-463-5519,B,F,D,054,02/20/2012,02/20/2008,Ms. Steward -DPEC Member ,District 1 ,,,,LA,,,BEAUREGARD,"""Tim"" Myers",2018 Hwy 110 E.,,Singer,LA,70660,337-463-3822,W,M,D,056,02/20/2012,02/20/2008,Mr. Myers -DPEC Member ,District 2 ,,,,LA,,,BEAUREGARD,"N. R. ""Rusty"" Williamson",P.O. Box 501,,Merryville,LA,70653,337-825-6390,W,M,D,056,02/20/2012,02/20/2008,Mr. Williamson -DPEC Member ,District 3A ,,,,LA,,,BEAUREGARD,Hayward Steele,202 S. Helen St.,,DeRidder,LA,70634,337-463-4655,B,M,D,056,02/20/2012,02/20/2008,Mr. Steele -DPEC Member ,District 3B ,,,,LA,,,BEAUREGARD,,,,,,,,,,,056 -DPEC Member ,District 3C ,,,,LA,,,BEAUREGARD,"Dwayne ""Tink"" Reeves",P.O Box 185,,Longville,LA,70652,337-725-6270,W,M,D,056,02/20/2012,02/20/2008,Mr. Reeves -DPEC Member ,District 3D ,,,,LA,,,BEAUREGARD,,,,,,,,,,,056 -DPEC Member ,District 3E ,,,,LA,,,BEAUREGARD,,,,,,,,,,,056 -DPEC Member ,District 4A ,,,,LA,,,BEAUREGARD,,,,,,,,,,,056 -DPEC Member ,District 4B ,,,,LA,,,BEAUREGARD,,,,,,,,,,,056 -DPEC Member ,District 5 ,,,,LA,,,BEAUREGARD,,,,,,,,,,,056 -RPEC Member ,at Large ,,,,LA,,,BEAUREGARD,David R. Lestage,206 Nolen St.,,DeRidder,LA,70634,337-462-2656,W,M,R,064,02/20/2012,02/20/2008,Mr. Lestage -RPEC Member ,at Large ,,,,LA,,,BEAUREGARD,James R. Lestage,2603 Robert E. Lee Dr.,,DeRidder,LA,70634,337-462-1135,W,M,R,064,02/20/2012,02/20/2008,Mr. Lestage -RPEC Member ,District 1 ,,,,LA,,,BEAUREGARD,,,,,,,,,,,066 -RPEC Member ,District 2 ,,,,LA,,,BEAUREGARD,,,,,,,,,,,066 -RPEC Member ,District 3A ,,,,LA,,,BEAUREGARD,,,,,,,,,,,066 -RPEC Member ,District 3B ,,,,LA,,,BEAUREGARD,,,,,,,,,,,066 -RPEC Member ,District 3C ,,,,LA,,,BEAUREGARD,,,,,,,,,,,066 -RPEC Member ,District 3D ,,,,LA,,,BEAUREGARD,,,,,,,,,,,066 -RPEC Member ,District 3E ,,,,LA,,,BEAUREGARD,,,,,,,,,,,066 -RPEC Member ,District 4A ,,,,LA,,,BEAUREGARD,,,,,,,,,,,066 -RPEC Member ,District 4B ,,,,LA,,,BEAUREGARD,,,,,,,,,,,066 -RPEC Member ,District 5 ,,,,LA,,,BEAUREGARD,,,,,,,,,,,066 -Sheriff ,,P. O. Box 370,,DeRidder,LA,70634,337-463-3281,BEAUREGARD,Ricky L. Moses,P. O. Box 370,,DeRidder,LA,70634,337-462-0141,W,M,D,225,06/30/2012,07/01/2008,Sheriff Moses -Clerk of Court ,,P. O. Box 100,,DeRidder,LA,70634,337-463-8595,BEAUREGARD,Brian S. Lestage,P.O. Box 100,,DeRidder,LA,70634,337-463-4630,W,M,R,230,06/30/2012,07/01/2008,Mr. Lestage -Assessor ,,P. O. Box 477,,DeRidder,LA,70634,337-463-8945,BEAUREGARD,Bobby Cudd,150 Brookside Rd.,,DeRidder,LA,70634,337-463-8351,W,M,D,235,12/31/2012,01/01/2009,Mr. Cudd -Coroner ,,412 S. Pine Street,,DeRidder,LA,70634,337-463-9890,BEAUREGARD,Flynn A. Taylor,1332 Blankenship Dr.,,DeRidder,LA,70634,337-462-2659,W,M,R,240,03/25/2012,03/24/2008,Mr. Taylor -Police Juror,District 1,P. O. Box 310,,DeRidder,LA,70634,337-463-7019,BEAUREGARD,"Gerald M. ""Mike"" McLeod",P.O. Box 141,,Singer,LA,70660,337-786-2099,W,M,D,245,01/08/2012,01/14/2008,Mr. McLeod -Police Juror ,District 2 ,P. O. Box 310,,DeRidder,LA,70634,337-463-7019,BEAUREGARD,"N.R. ""Rusty"" Williamson",P.O. Box 501,,Merryville,LA,70653-5216,337-825-6390,W,M,D,245,01/08/2012,01/14/2008,Mr. Williamson -Police Juror ,District 3A ,P. O. Box 310,,DeRidder,LA,70634,337-463-7019,BEAUREGARD,Carlos Archield,1139 Lucius Dr.,,DeRidder,LA,70634,337-463-6426,B,M,,245,01/08/2012,01/14/2008,Mr. Archield -Police Juror ,District 3B ,P. O. Box 310,,DeRidder,LA,70634,337-463-7019,BEAUREGARD,"""Teddy"" Welch",210 Teddy Welch Rd.,,DeRidder,LA,70634,337-328-7270,W,M,D,245,01/08/2012,01/14/2008,Mr. Welch -Police Juror ,District 3C ,P. O. Box 310,,DeRidder,LA,70634,337-463-7019,BEAUREGARD,Rex Brumley,132 Michael Rd.,,DeRidder,LA,70634,337-463-6669,W,M,D,245,01/08/2012,01/14/2008,Mr. Brumley -Police Juror ,District 3D ,P. O. Box 310,,DeRidder,LA,70634,337-463-7019,BEAUREGARD,Gary D. Crowe,P.O. Box 386,,DeRidder,LA,70634,337-463-7142,W,M,D,245,01/08/2012,01/14/2008,Mr. Crowe -Police Juror ,District 3E ,P. O. Box 310,,DeRidder,LA,70634,337-463-7019,BEAUREGARD,Jerry L. Shirley,225 S. Texas St.,,DeRidder,LA,70634,337-463-4616,W,M,R,245,01/08/2012,01/14/2008,Mr. Shirley -Police Juror ,District 4A ,P. O. Box 310,,DeRidder,LA,70634,337-463-7019,BEAUREGARD,Bradley Wayne Harris,1205 S.A. Cooley Rd.,,Longville,LA,70652,337-725-6707,W,M,O,245,01/08/2012,01/14/2008,Mr. Harris -Police Juror ,District 4B ,P. O. Box 310,,DeRidder,LA,70634,337-463-7019,BEAUREGARD,Llewellyn Smith,416 Thunder Valley Rd.,,DeRidder,LA,70634,337-463-7238,W,M,R,245,01/08/2012,01/14/2008,Mr. Smith -Police Juror ,District 5 ,P. O. Box 310,,DeRidder,LA,70634,337-463-7019,BEAUREGARD,Merlin Schales,138 Merlin Schales Rd.,,DeRidder,LA,70634,337-463-3775,W,M,D,245,01/08/2012,01/14/2008,Mr. Schales -Member of School Board ,District 1 ,P. O. Drawer 938,,DeRidder,LA,70634,337-463-5551,BEAUREGARD,"Russell W. Havens, Jr.",190 Lane Rd.,,Fields,LA,70653,337-786-3450,O,M,,255,12/31/2010,01/01/2007,Mr. Havens -Member of School Board ,District 2 ,P. O. Drawer 938,,DeRidder,LA,70634,337-463-5551,BEAUREGARD,Anthony B. Carlson,2340 Hwy. 389,,Merryville,LA,70653,337-825-8169,W,M,D,255,12/31/2010,01/01/2007,Mr. Carlson -Member of School Board ,District 3A ,P. O. Drawer 938,,DeRidder,LA,70634,337-463-5551,BEAUREGARD,Marvin Simmons,1005 Lake Court Dr.,,DeRidder,LA,70634,337-462-0747,B,M,D,255,12/31/2010,01/01/2007,Mr. Simmons -Member of School Board ,District 3B ,P. O. Drawer 938,,DeRidder,LA,70634,,BEAUREGARD,"""Jimmy"" Barrett",192 Jimmy Barrett Rd.,,Dry Creek,LA,70637,337-328-7131,W,M,D,255,12/31/2010,01/01/2007,Mr. Barrett -Member of School Board ,District 3C ,P. O. Drawer 938,,DeRidder,LA,70634,337-463-5551,BEAUREGARD,David Q. Vidrine,160 Kerry St.,,DeRidder,LA,70634,337-462-0991,W,M,R,255,12/31/2010,01/01/2007,Mr. Vidrine -Member of School Board ,District 3D ,P. O. Drawer 938,,DeRidder,LA,70634,337-463-5551,BEAUREGARD,"""Gene"" Maddox",1611 Chriscott Dr.,,DeRidder,LA,70634,337-463-6533,W,M,D,255,12/31/2010,01/01/2007,Mr. Maddox -Member of School Board ,District 3E ,P. O. Drawer 938,,DeRidder,LA,70634,337-463-5551,BEAUREGARD,Stuart Hayes,1006 Michael Dr.,,DeRidder,LA,70634,337-463-5795,W,M,R,255,12/31/2010,01/01/2007,Mr. Hayes -Member of School Board ,District 4A ,P. O. Drawer 938,,DeRidder,LA,70634,337-463-5551,BEAUREGARD,Darrin Manuel,P.O. Box 205,,Longville,LA,70652,337-725-6676,W,M,D,255,12/31/2010,01/01/2007,Mr. Manuel -Member of School Board ,District 4B ,P. O. Drawer 938,,DeRidder,LA,70634,337-463-5551,BEAUREGARD,Jerry E. Cooley,139 Chester Davis Rd.,,DeRidder,LA,70634,337-463-8525,W,M,D,255,12/31/2010,01/01/2007,Mr. Cooley -Member of School Board ,District 5 ,,,,LA,,337-463-5551,BEAUREGARD,Don Gray,310 Don Gray Rd.,,DeRidder,LA,70634,337-463-3559,W,M,D,255,12/31/2010,01/01/2007,Mr. Gray -Justice of the Peace ,Justice of the Peace District 1 ,290 Ray Brown Rd.,,Fields,LA,70653,337-743-6375,BEAUREGARD,Allen Ray Brown,290 Ray Brown Rd.,,Fields,LA,70653,337-743-6375,W,M,R,265,12/31/2014,01/01/2009,Mr. Brown -Justice of the Peace ,Justice of the Peace District 2 ,P. O. Box 501,,Merryville,LA,70653,337-825-6390,BEAUREGARD,"Connie E. ""Sissy"" Williamson",P.O. Box 501,,Merryville,LA,70653,337-825-6390,W,F,D,265,12/31/2014,01/01/2009,Ms. Williamson -Justice of the Peace ,Justice of the Peace District 4 ,961 Newt Hodges Rd.,,Ragley,LA,70657,337-725-3175,BEAUREGARD,Clyde H. Dennis,961 Newt Hodges Rd.,,Ragley,LA,70657,337-725-3175,W,M,R,265,12/31/2014,01/01/2009,Mr. Dennis -Justice of the Peace ,Justice of the Peace District 5 ,1477 Hwy. 1147,,DeRidder,LA,70634,337-463-2758,BEAUREGARD,"""Ruthie"" Huckaby",1477 Hwy. 1147,,DeRidder,LA,70634,337-463-2758,W,F,D,265,12/31/2014,01/01/2009,Mr. Huckaby -Constable ,Justice of the Peace District 1 ,P.O. Box 104,,Singer,LA,70660,337-463-2599,BEAUREGARD,"Alfred ""Al"" Doyle",P.O. Box 104,,Singer,LA,70660,337-463-2599,W,M,D,267,12/31/2014,01/01/2009,Mr. Doyle -Constable ,Justice of the Peace District 2 ,P.O. Box 148,,Merryville,LA,70653,337-825-6418,BEAUREGARD,Micheal Whitehead,P. O. Box 88,,Merryville,LA,70653,337-764-4697,W,M,,267,12/31/2014,01/01/2009,Mr. Whitehead -Constable ,Justice of the Peace District 4 ,306 Burnett Loop,,Longville,LA,70652,337-725-3667,BEAUREGARD,"""Tony"" Deville",306 Burnett Lp.,,Longville,LA,70652,337-725-3667,W,M,D,267,12/31/2014,01/01/2009,Mr. Deville -Constable ,Justice of the Peace District 5 ,4239 Hwy. 113,,Sugartown,LA,70662,337-328-7186,BEAUREGARD,Ray Dickens,4239 Hwy. 113,,Sugartown,LA,70662,337-328-7186,W,M,D,267,12/31/2014,01/01/2009,Mr. Dickens -Mayor ,Town of Merryville ,P. O. Box 607,,Merryville,LA,,337-825-8740,BEAUREGARD,Charles E. Hudson,P.O. Box 460,,Merryville,LA,70653,337-825-6512,W,M,D,300,06/30/2010,07/01/2006,Mr. Hudson -Mayor ,Town of Merryville ,P. O. Box 607,,Merryville,LA,,337-825-8740,BEAUREGARD,"Charles E. Hudson, ",7138 Hwy 110 W.,,Merryville,LA,70653,337-825-6512,W,M,D,300 -Chief of Police ,Town of Merryville ,P. O. Box 607,,Merryville,LA,70653,337-825-8740,BEAUREGARD,"James Longoria, ",3992 Watson St.,,Merryville,LA,70653-3341,337-375-4691,W,M,D,305 -Chief of Police ,Town of Merryville ,P. O. Box 607,,Merryville,LA,70653,337-825-8740,BEAUREGARD,James E. Longoria,3992 S. Watson St.,,Merryville,LA,70653,337-825-9599,W,M,D,305,06/30/2010,07/01/2006,Mr. Longoria -Alderman ,Town of Merryville ,P. O. Box 607,,Merryville,LA,70653,337-825-8740,BEAUREGARD,Cheryl Arnold,6026 Brown St.,,Merryville,LA,70653,337-825-8021,W,F,,310,06/30/2010,07/01/2006,Ms. Arnold -Alderman ,Town of Merryville ,P. O. Box 607,,Merryville,LA,70653,337-825-8740,BEAUREGARD,David Eaves,625 Spikes St.,,Merryville,LA,70653,337-396-7084,W,M,D,310,06/30/2010,07/01/2006,Mr. Eaves -Alderman ,Town of Merryville ,P. O. Box 607,,Merryville,LA,70653,337-825-8740,BEAUREGARD,Beaver Knighton,P.O. Box 397,,Merryville,LA,70653,337-825-8616,B,M,D,310,06/30/2010,07/01/2006,Mr. Knighton -Alderman ,Town of Merryville ,P. O. Box 607,,Merryville,LA,70653,337-825-8740,BEAUREGARD,Carolyn Rhodes,3027 Tyler St.,,Merryville,LA,70653,337-825-6309,W,F,D,310,06/30/2010,07/01/2006,Ms. Rhodes -Alderman ,Town of Merryville ,P. O. Box 607,,Merryville,LA,70653,337-825-8740,BEAUREGARD,Webb Stark,421 Walker St.,,Merryville,LA,70653,337-825-1241,W,M,D,310,06/30/2010,07/01/2006,Mr. Stark -DPEC Member ,at Large ,,,,LA,,,BIENVILLE,Roy Lilly,P.O. Box 730,,Gibsland,LA,71028,318-843-6650,W,M,D,054,02/20/2012,02/20/2008,Mr. Lilly -DPEC Member ,District 1 ,,,,LA,,,BIENVILLE,,,,,,,,,,,056 -DPEC Member ,District 2 ,,,,LA,,,BIENVILLE,,,,,,,,,,,056 -DPEC Member ,District 3 ,,,,LA,,,BIENVILLE,,,,,,,,,,,056 -DPEC Member ,District 4 ,,,,LA,,,BIENVILLE,,,,,,,,,,,056 -DPEC Member ,District 5 ,,,,LA,,,BIENVILLE,,,,,,,,,,,056 -DPEC Member ,District 6 ,,,,LA,,,BIENVILLE,,,,,,,,,,,056 -DPEC Member ,District 7 ,,,,LA,,,BIENVILLE,,,,,,,,,,,056 -RPEC Member ,at Large ,,,,LA,,,BIENVILLE,Kathy Conville Sims,210 Pinecrest Rd.,,Arcadia,LA,71001,318-263-9316,W,F,R,064,02/20/2012,02/20/2008,Ms. Sims -RPEC Member ,at Large ,,,,LA,,,BIENVILLE,Scott G. Yarnell,175 Page Rd.,,Castor,LA,71016-4262,318-544-9313,W,M,R,064,02/20/2012,02/20/2008,Mr. Yarnell -RPEC Member ,District 1 ,,,,LA,,,BIENVILLE,Kathy Sims,210 Pinecrest Rd.,,Arcadia,LA,71001,,,,,066,,04/07/2005,Ms. Sims -RPEC Member ,District 2 ,,,,LA,,,BIENVILLE,,,,,,,,,,,066 -RPEC Member ,District 3 ,,,,LA,,,BIENVILLE,,,,,,,,,,,066 -RPEC Member ,District 4 ,,,,LA,,,BIENVILLE,,,,,,,,,,,066 -RPEC Member ,District 5 ,,,,LA,,,BIENVILLE,,,,,,,,,,,066 -RPEC Member ,District 6 ,,,,LA,,,BIENVILLE,,,,,,,,,,,066 -RPEC Member ,District 7 ,,,,LA,,,BIENVILLE,,,,,,,,,,,066 -Sheriff ,,P. O. Box 328,,Arcadia,LA,71001,318-263-2215,BIENVILLE,John E. Ballance,P.O. Box 328,,Arcadia,LA,71001,318-263-2215,W,M,D,225,06/30/2012,07/01/2008,Sheriff Ballance -Clerk of Court ,,"100 Courthouse Dr., Rm. 100",,Arcadia,LA,71001,318-263-2123,BIENVILLE,"James W. ""Jim"" Martin","100 Courthouse Dr., Rm. 100",,Arcadia,LA,71001,318-263-2123,W,M,D,230,06/30/2012,07/01/2008,Mr. Martin -Assessor ,,2705 Beech St.,,Arcadia,LA,71001,318-263-2214,BIENVILLE,Jimmie D. Smith,1501 Myrtle St.,,Arcadia,LA,71001,318-263-9748,W,M,D,235,12/31/2012,01/01/2009,Mr. Smith -Coroner ,,"970 First St.,",,Arcadia,LA,71001,318-263-7434,BIENVILLE,"""Don"" Smith",1969 Hazel St.,,Arcadia,LA,71001,318-263-8389,W,M,D,240,03/25/2012,03/24/2008,Mr. Smith -Police Juror,District 1,P. O. Box 479,,Arcadia,LA,71001,318-263-2019,BIENVILLE,"""Bill"" Sims",2342 Beech St.,,Arcadia,LA,71001,318-263-2317,W,M,O,245,01/08/2012,01/14/2008,Mr. Sims -Police Juror ,District 2 ,P. O. Box 479,,Arcadia,LA,71001,318-263-2019,BIENVILLE,Patrick O. Jefferson,3056 Johnson St.,,Arcadia,LA,71001,318-263-8723,B,M,D,245,01/08/2012,01/14/2008,Mr. Jefferson -Police Juror ,District 3 ,P. O. Box 479,,Arcadia,LA,71001,318-263-2019,BIENVILLE,Lee Thomas,P.O. Box 579,,Gibsland,LA,71028,318-843-6368,B,M,D,245,01/08/2012,01/14/2008,Mr. Thomas -Police Juror ,District 4 ,P. O. Box 479,,Arcadia,LA,71001,318-263-2019,BIENVILLE,Gregory R. Wilson,1419 Pietsch Rd.,,Ringgold,LA,71068,318-894-3125,W,M,D,245,01/08/2012,01/14/2008,Mr. Wilson -Police Juror ,District 5 ,P. O. Box 479,,Arcadia,LA,71001,318-263-2019,BIENVILLE,"""Tony"" Lawson",3046 Hwy. 154,,Ringgold,LA,71068,318-894-3222,W,M,,245,01/08/2012,01/14/2008,Mr. Lawson -Police Juror ,District 6 ,P. O. Box 479,,Arcadia,LA,71001,318-263-2019,BIENVILLE,Mike McCarthy,133 Gerald McCarthy Rd.,,Castor,LA,71016,318-544-2345,W,M,D,245,01/08/2012,01/14/2008,Mr. McCarthy -Police Juror ,District 7 ,P. O. Box 479,,Arcadia,LA,71001,318-263-2019,BIENVILLE,Raymond Earl Malone,1702 Shady Grove Rd.,,Saline,LA,71070,318-259-2830,B,M,D,245,01/08/2012,01/14/2008,Mr. Malone -Member of School Board ,District 1 ,P. O. Box 418,,Arcadia,LA,71001,318-263-9416,BIENVILLE,Dan K. Loe,1715 First St.,,Arcadia,LA,71001,318-263-8922,W,M,D,255,12/31/2010,01/01/2007,Mr. Loe -Member of School Board ,District 2 ,P. O. Box 418,,Arcadia,LA,71001,318-263-9416,BIENVILLE,Esther Ballard Sullivan,P.O. Box 153,,Arcadia,LA,71001,318-263-2193,B,F,,255,12/31/2010,01/01/2007,Ms. Sullivan -Member of School Board ,District 3 ,P. O. Box 418,,Arcadia,LA,71001,318-263-9416,BIENVILLE,Anthony V. Jenkins,P.O. Box 618,,Gibsland,LA,71028,318-843-9911,,,,255,12/31/2010,01/01/2007,Mr. Jenkins -Member of School Board ,District 4 ,P. O. Box 418,,Arcadia,LA,71001,318-263-9416,BIENVILLE,Bonita Reliford,1408 Wyatt St.,,Ringgold,LA,71068,318-894-9594,B,F,D,255,12/31/2010,01/01/2007,Mr. Reliford -Member of School Board ,District 5 ,P. O. Box 418,,Arcadia,LA,71001,318-263-9416,BIENVILLE,Martha Grigg,582 Dallas Rd.,,Ringgold,LA,71068,318-894-9479,W,F,D,255,12/31/2010,01/01/2007,Mr. Grigg -Member of School Board ,District 6 ,P. O. Box 418,,Arcadia,LA,71001,318-263-9416,BIENVILLE,Kenneth Larry Knotts,P.O. Box 6,,Saline,LA,71070,318-576-3675,W,M,D,255,12/31/2010,01/01/2007,Mr. Knotts -Member of School Board ,District 7 ,P. O. Box 418,,Arcadia,LA,71001,318-263-9416,BIENVILLE,Richard Walker,129 Brice Rd.,,Bienville,LA,71008,318-263-2410,,,,255,12/31/2010,01/01/2007,Mr. Walker -Justice of the Peace ,Justice of the Peace District 1 ,P. O. Box 158,,Arcadia,LA,71001,318-263-8807,BIENVILLE,David E. Cook,1844 Maple St.,,Arcadia,LA,71001,318-263-3735,B,M,,265,12/31/2014,01/01/2009,Mr. Cook -Justice of the Peace ,Justice of the Peace District 2 ,P. O. Box 268,,Gibsland,LA,71028,318-843-9747,BIENVILLE,Reginald Shaw,P.O. Box 268,,Gibsland,LA,71028,318-268-0794,B,M,,265,12/31/2014,01/01/2009,Mr. Shaw -Justice of the Peace ,Justice of the Peace District 3 ,819 Thompson Rd.,,Castor,LA,71016,318-544-2427,BIENVILLE,Jackie B. Sullivan,2769 Foster Arbor Rd.,,Castor,LA,71016,318-544-2427,W,F,,265,12/31/2014,01/01/2009,Mr. Sullivan -Justice of the Peace ,Justice of the Peace District 4 ,P. O. Box 5068,,Jamestown,LA,71045,318-894-3309,BIENVILLE,Ryanie O. Evans,P.O. Box 5068,,Jamestown,LA,71045,318-894-3309,W,M,,265,12/31/2014,01/01/2009,Mr. Evans -Justice of the Peace ,Justice of the Peace District 5 ,12056 Hwy. 501,,Saline,LA,71070,318-259-8451,BIENVILLE,David W. McConathy,1355 Sand Hill Rd.,,Quitman,LA,71268,318-259-8254,W,M,D,265,12/31/2014,01/01/2009,Mr. McConathy -Constable ,Justice of the Peace Ward 1 ,P.O. Box 186,,Arcadia,LA,71001,318-263-8699,BIENVILLE,Craig A. Jenkins,3120 Johnson St.,,Arcadia,LA,71001,318-263-8648,B,M,D,267,12/31/2014,01/01/2009,Mr. Jenkins -Constable ,Justice of the Peace Ward 2 ,1694 Hwy. 794,,Gibsland,LA,71028,318-843-6367,BIENVILLE,Darryl Ryder,1694 Hwy. 794,,Gibsland,LA,71028,318-843-6367,B,M,D,267,12/31/2014,01/01/2009,Mr. Ryder -Constable ,Justice of the Peace Ward 3 ,819 Thompson Rd.,,Castor,LA,71016,318-544-2427,BIENVILLE,Jack D. Sullivan,2769 Foster Arbor Rd.,,Castor,LA,71016,318-544-2427,W,M,,267,12/31/2014,01/01/2009,Mr. Sullivan -Constable ,Justice of the Peace Ward 4 ,P.O. Box 445,,Ringgold,LA,71068,318-894-3020,BIENVILLE,"Eugene L. ""Rudy"" Basinger",P.O. Box 445,,Ringgold,LA,71068,318-894-3020,W,M,,267,12/31/2014,01/01/2009,Mr. Basinger -Constable ,Justice of the Peace Ward 5 ,27624 Hwy. 9,,Bienville,LA,71008,318-385-9926,BIENVILLE,R. Yale Poland,27624 Hwy. 9,,Bienville,LA,71008,318-385-9926,W,M,,267,12/31/2014,01/01/2009,Mr. Poland -Mayor ,Town of Arcadia ,P. O. Box 767,,Arcadia,LA,,318-263-8456,BIENVILLE,Eugene Smith,P.O. Box,,Arcadia,LA,71001,318-263-8616,W,M,D,300,12/31/2010,01/01/2007,Mr. Smith -Mayor ,Town of Gibsland ,P. O. Box 309,,Gibsland,LA,,318-843-6141,BIENVILLE,Patrick White,P.O. Box 732,,Gibsland,LA,71028,318-617-1902,W,M,R,300,12/31/2010,01/01/2007,Mr. White -Mayor ,Town of Mount Lebanon ,P.O. Box 588,,Mount Lebanon,LA,,318-843-6458,BIENVILLE,Herbert Thurmond Newman,P.O. Box 588,,Gibsland,LA,71028,318-843-6658,W,M,D,300,12/31/2010,01/01/2007,Mr. Newman -Mayor ,Town of Ringgold ,P. O. Box 565,,Ringgold,LA,,318-894-4699,BIENVILLE,Stephone Taylor,890 Military Rd.,,Ringgold,LA,71068,318-894-9838,B,M,D,300,12/31/2010,10/30/2007,Mayor Taylor -Mayor ,Village of Bienville ,P. O. Box 207,,Bienville,LA,,,BIENVILLE,Wesley Boddie,P.O. Box 109,,Bienville,LA,71008,318-385-7562,W,M,R,300,12/31/2010,01/01/2007,Mr. Boddie -Mayor ,Village of Bryceland ,100 Fire Station Rd. #7,,Bryceland,LA,,318-263-8981,BIENVILLE,"Donald ""Donnie"" Byrd, ",181 Blue Ridge Rd.,,Bryceland,LA,71008-2661,318-263-2439,W,M,N,300 -Mayor ,Village of Bryceland ,100 Fire Station Rd. #7,,Bryceland,LA,,318-263-8981,BIENVILLE,"""Donnie"" Byrd",P.O. Box 302,,Arcadia,LA,71001,318-263-2439,W,M,,300,06/30/2010,07/01/2006,Mayor Byrd -Mayor ,Village of Castor ,P. O. Box 216,,Castor,LA,,318-544-8718,BIENVILLE,Vicki S. Pickett,P.O. Box 206,,Castor,LA,71016,318-544-8723,W,F,R,300,12/31/2010,02/23/2009,Mayor Pickett -Mayor ,Village of Jamestown ,P. O. Box 5128,,Jamestown,LA,,318-894-3612,BIENVILLE,Ralph Todd,P. O. Box 5022,,Jamestown,LA,71045,318-894-9213,W,M,O,300,12/31/2012,01/01/2009,Mayor Todd -Mayor ,Village of Lucky ,13041 Hwy. 4,,Castor,LA,,318-576-3348,BIENVILLE,"James Haskin, Jr.",13041 Hwy. 4,,Castor,LA,71016,318-576-8848,B,M,,300,06/30/2012,07/01/2008,Mayor Haskin -Mayor ,Village of Saline ,P. O. Box 118,,Saline,LA,,318-576-3545,BIENVILLE,John Allison Thomas,P.O. Box 207,,Saline,LA,71070,318-576-8712,W,M,D,300,06/30/2012,07/01/2008,Mayor Thomas -Chief of Police ,Town of Arcadia ,P. O. Box 767,,Arcadia,LA,71001,318-263-8456,BIENVILLE,Victor W. Rogers,1395 Talbert St.,,Arcadia,LA,71001,318-263-8476,B,M,D,305,12/31/2010,01/01/2007,Mr. Rogers -Chief of Police ,Town of Gibsland ,P. O. Box 309,,Gibsland,LA,71028,318-843-6141,BIENVILLE,Michael D. Wright,P.O. Box 54,,Gibsland,LA,71028,318-843-3690,B,M,D,305,12/31/2010,01/01/2007,Mr. Wright -Chief of Police ,Town of Ringgold ,P. O. Box 565,,Ringgold,LA,71068,318-894-4699,BIENVILLE,Lawson Bradley,2918 Glover St.,,Ringgold,LA,71068,318-894-9504,B,M,D,305,12/31/2010,01/01/2007,Chief Bradley -Chief of Police ,Village of Lucky ,13132 Hwy. 4,,Castor,LA,71016,318-576-3348,BIENVILLE,"""O. D."" Patterson",414 Six Mile Rd.,,Bienville,LA,71008,318-576-3209,B,M,D,305,06/30/2012,07/01/2008,Chief Patterson -Chief of Police ,Village of Saline ,P. O. Box 118,,Saline,LA,71070,318-576-3545,BIENVILLE,Scott Thrasher,P.O. Box 202,,Saline,LA,71070,318-576-8799,W,M,,305,06/30/2012,07/01/2008,Chief Thrasher -Alderman ,Town of Gibsland ,P. O. Box 309,,Gibsland,LA,71028,318-843-6141,BIENVILLE,Dawson L. Anglin,P.O. Box 757,,Gibsland,LA,71028,318-843-9672,W,M,,310,12/31/2010,01/01/2007,Mr. Anglin -Alderman ,Town of Gibsland ,P. O. Box 309,,Gibsland,LA,71028,318-843-6141,BIENVILLE,Timmy L. Cato,P.O. Box 626,,Gibsland,LA,71028,318-843-6270,B,M,O,310,12/31/2010,04/10/2007,Mr. Cato -Alderman ,Town of Gibsland ,P. O. Box 309,,Gibsland,LA,71028,318-843-6141,BIENVILLE,"Ray Ivory, Sr.",P.O. Box 152,,Gibsland,LA,71028,318-843-1508,B,M,D,310,12/31/2010,01/01/2007,Mr. Ivory -Alderman ,Town of Gibsland ,P. O. Box 309,,Gibsland,LA,71028,318-843-6141,BIENVILLE,Marketris Q. Jones,P.O. Box 475,,Gibsland,LA,71028,318-843-3688,B,M,D,310,12/31/2010,01/01/2007,Mr. Jones -Alderman ,Town of Mount Lebanon ,P.O. Box 588,,Mount Lebanon,LA,71028-0588 ,318-843-6658,BIENVILLE,Ruby Grubbs,12760 Hwy. 154,,Gibsland,LA,71028,318-843-6844,W,F,O,310,12/31/2010,01/01/2007,Ms. Grubbs -Alderman ,Town of Mount Lebanon ,P.O. Box 588,,Mount Lebanon,LA,71028-0588 ,318-843-6658,BIENVILLE,Dee D. Jowers,119 Coffee Rd.,,Gibsland,LA,71028,318-843-6493,W,M,,310,12/31/2010,01/01/2007,Mr. Jowers -Alderman ,Town of Mount Lebanon ,P.O. Box 588,,Mount Lebanon,LA,71028-0588 ,318-843-6658,BIENVILLE,Jonathan A. Kidd,133 Stagecoach Trail,,Gibsland,LA,71028,318-843-6904,W,M,,310,12/31/2010,01/01/2007,Mr. Kidd -Alderman ,Town of Mount Lebanon ,P.O. Box 588,,Mount Lebanon,LA,71028-0588 ,318-843-6658,BIENVILLE,Ora Elizabeth H. Towns,175 Huckleberry Ln.,,Gibsland,LA,71028-4507,318-843-6255,W,F,R,310,12/31/2010,01/01/2007,Ms. Towns -Alderman ,Town of Mount Lebanon ,P.O. Box 588,,Mount Lebanon,LA,71028-0588 ,318-843-6658,BIENVILLE,Philip L. Towns,2398 Hwy. 517,,Gibsland,LA,71028,318-843-9275,W,M,R,310,12/31/2010,01/01/2007,Mr. Towns -Alderman ,Village of Bienville ,P. O. Box 207,,Bienville,LA,71008,318-385-7533,BIENVILLE,Effie Lee Brice,P.O. Box 12,,Bienville,LA,71008,318-385-7524,B,F,O,310,12/31/2010,01/01/2007,Mr. Brice -Alderman ,Village of Bienville ,P. O. Box 207,,Bienville,LA,71008,318-385-7533,BIENVILLE,James N. Kirkham,25341 Hwy. 9,,Bienville,LA,71008,318-385-7552,W,M,D,310,12/31/2010,01/01/2007,Mr. Kirkham -Alderman ,Village of Bienville ,P. O. Box 207,,Bienville,LA,71008,318-385-7533,BIENVILLE,"James B. Smith, Jr.",377 King St.,,Bienville,LA,71008,318-385-7953,W,M,,310,12/31/2010,01/01/2007,Mr. Smith -Alderman ,Village of Bryceland ,100 Fire Station Rd. #7,,Bryceland,LA,71008,318-263-2405,BIENVILLE,Scott Calhoun,440 Hwy. 517,,Gibsland,LA,71028,318-263-8441,W,M,,310,06/30/2010,07/01/2006,Mr. Calhoun -Alderman ,Village of Bryceland ,100 Fire Station Rd. #7,,Bryceland,LA,71008,318-263-2405,BIENVILLE,"John Crawford, ",376 Hwy. 517,,Gibsland,LA,71028-4652,318-263-9672,W,M,N,310 -Alderman ,Village of Bryceland ,100 Fire Station Rd. #7,,Bryceland,LA,71008,318-263-2405,BIENVILLE,John M. Crawford,376 Hwy. 517,,Gibsland,LA,71028,318-263-9672,W,M,,310,06/30/2010,07/01/2006,Mr. Crawford -Alderman ,Village of Bryceland ,100 Fire Station Rd. #7,,Bryceland,LA,71008,318-263-2405,BIENVILLE,James E. Moss,498 Shiloh Cemetery Rd.,,Gibsland,LA,71028,318-263-8262,W,M,,310,06/30/2010,07/01/2006,Mr. Moss -Alderman ,Village of Bryceland ,100 Fire Station Rd. #7,,Bryceland,LA,71008,318-263-2405,BIENVILLE,"James E. Moss, ",498 Shiloh Cemetery Rd.,,Gibsland,LA,71028-4656,318-263-8262,W,M,R,310 -Alderman ,Village of Bryceland ,100 Fire Station Rd. #7,,Bryceland,LA,71008,318-263-2405,BIENVILLE,"Don M. Travis, ",201 Taylor Road,,Gibsland,LA,71028-4705,318-263-2256,W,M,R,310 -Alderman ,Village of Castor ,P. O. Box 216,,Castor,LA,71016,318-544-8718,BIENVILLE,Ray A. Bess,P.O. Box,,Castor,LA,71016,318-544-8802,,,O,310,12/31/2010,01/01/2007,Mr. Bess -Alderman ,Village of Castor ,P. O. Box 216,,Castor,LA,71016,318-544-8718,BIENVILLE,Charles Harper,P.O. Box 123,,Castor,LA,71016,318-544-8646,W,M,O,310,12/31/2010,01/01/2007,Mr. Harper -Alderman ,Village of Castor ,P. O. Box 216,,Castor,LA,71016,318-544-8718,BIENVILLE,Beth Warren,P.O. Box 223,,Castor,LA,71016,318-544-9036,W,F,,310,12/31/2010,02/23/2009,Ms. Warren -Alderman ,Village of Jamestown ,P. O. Box 5128,,Jamestown,LA,71045,318-894-3612,BIENVILLE,Conley Ray Bare,146 Barehill Rd.,,Jamestown,LA,71045,318-894-8713,W,M,O,310,12/31/2012,01/01/2009,Mr. Bare -Alderman ,Village of Jamestown ,P. O. Box 5128,,Jamestown,LA,71045,318-894-3612,BIENVILLE,Michael J. Taylor,4127 E. Front St.,,Jamestown,LA,71045,318-894-2440,W,M,O,310,12/31/2012,01/01/2009,Mr. Taylor -Alderman ,Village of Jamestown ,P. O. Box 5128,,Jamestown,LA,71045,318-894-3612,BIENVILLE,James G. Wiggins,P.O. Box 5001,,Jamestown,LA,71045,318-894-2582,W,M,,310,12/31/2012,01/01/2009,Mr. Wiggins -Alderman ,Village of Lucky ,13132 Hwy. 4,,Castor,LA,71016,318-576-3348,BIENVILLE,Columbus J. Boston,P.O. Box 171,,Saline,LA,71070,318-576-3348,B,M,D,310,06/30/2012,07/01/2008,Mr. Boston -Alderman ,Village of Lucky ,13132 Hwy. 4,,Castor,LA,71016,318-576-3348,BIENVILLE,Raymond L. Calep,220 Brooks Loop,,Castor,LA,71016,318-576-3979,B,M,D,310,06/30/2012,07/01/2008,Mr. Calep -Alderman ,Village of Lucky ,13132 Hwy. 4,,Castor,LA,71016,318-576-3348,BIENVILLE,Donald Sanders,446 Six Mile Rd.,,Bienville,LA,71008,318-576-9042,B,M,,310,06/30/2012,07/21/2008,Mr. Sanders -Alderman ,Village of Saline ,P. O. Box 118,,Saline,LA,71070,318-576-3545,BIENVILLE,Brenda Matthews,P.O. Box 310,,Saline,LA,71070,318-576-8743,W,F,,310,06/30/2012,07/01/2008,Ms. Matthews -Alderman ,Village of Saline ,P. O. Box 118,,Saline,LA,71070,318-576-3545,BIENVILLE,Jimmie R. Rogers,P.O. Box 190,,Saline,LA,71070,318-576-3202,W,M,D,310,06/30/2012,07/01/2008,Mr. Rogers -Alderman ,Village of Saline ,P. O. Box 118,,Saline,LA,71070,318-576-3545,BIENVILLE,Dorothy J. Satcher,P.O. Box 105,,Saline,LA,71070,318-576-3272,B,F,D,310,06/30/2012,07/01/2008,Ms. Satcher -Alderman ,Village of Saline ,P. O. Box 118,,Saline,LA,71070,318-576-3545,BIENVILLE,"Robert ""R D"" Slayton",867 Bruce Dr.,,Saline,LA,71070,318-576-3880,W,M,,310,06/30/2012,07/01/2008,Mr. Slayton -Alderman ,Village of Saline ,P. O. Box 118,,Saline,LA,71070,318-576-3545,BIENVILLE,Amy Warren,1020 Natchitoches St.,,Saline,LA,71070,318-576-3543,W,F,O,310,06/30/2012,07/01/2008,Ms. Warren -Council Member ,"District 1, Town of Arcadia ",P. O. Box 767,,Arcadia,LA,71001,318-263-8456,BIENVILLE,Doreatha Nelson,697 Smith St.,,Arcadia,LA,71001,318-957-2574,B,F,D,310,12/31/2010,11/24/2009,Mr. Nelson -Council Member ,"District 2, Town of Arcadia ",P. O. Box 767,,Arcadia,LA,71001,318-263-8456,BIENVILLE,Maggie Roberson,2676 Carver St.,,Arcadia,LA,71001,318-263-2283,,,D,310,12/31/2010,01/01/2007,Ms. Robinson -Council Member ,"District 3, Town of Arcadia ",P. O. Box 767,,Arcadia,LA,71001,318-263-8456,BIENVILLE,Billy R. Cook,3240 Hazel,,Arcadia,LA,71001,318-263-8221,W,M,O,310,12/31/2010,01/01/2007,Mr. Cook -Council Member ,"District 4, Town of Arcadia ",P. O. Box 767,,Arcadia,LA,71001,318-263-8456,BIENVILLE,Mattie Lou Harris,692 Evangeline Dr.,,Arcadia,LA,71001,318-263-2140,B,F,,310,12/31/2010,01/01/2007,Ms. Harris -Council Member ,"District 5, Town of Arcadia ",P. O. Box 767,,Arcadia,LA,71001,318-263-8456,BIENVILLE,"""E.J."" Ratcliff",2198 Pine St.,,Arcadia,LA,71001,318-263-8180,W,M,R,310,12/31/2010,01/01/2007,Mr. Ratcliff -Councilman ,"District 1, Town of Ringgold ",P. O. Box 565,,Ringgold,LA,71068,318-894-4699,BIENVILLE,Johnny Lee Shepherd,P.O. Box 654,,Ringgold,LA,71068,318-894-9644,B,M,,310,12/31/2010,01/01/2007,Mr. Shepherd -Councilman ,"District 2, Town of Ringgold ",P. O. Box 565,,Ringgold,LA,71068,318-894-4699,BIENVILLE,Bobby Guin,4035 Susan St.,,Ringgold,LA,71068,318-894-7919,W,M,D,310,12/31/2010,01/01/2007,Mr. Guin -Councilman ,"District 3, Town of Ringgold ",P. O. Box 565,,Ringgold,LA,71068,318-894-4699,BIENVILLE,Larry J. Hays,P.O. Box 733,,Ringgold,LA,71068,318-894-4522,W,M,D,310,12/31/2010,01/01/2007,Mr. Hays -Councilman ,"District 4, Town of Ringgold ",P. O. Box 565,,Ringgold,LA,71068,318-894-4699,BIENVILLE,Keith C. Johnson,P.O. Box 867,,Ringgold,LA,71068,318-894-9414,B,M,D,310,12/31/2010,01/01/2007,Mr. Johnson -Councilman ,"District 5, Town of Ringgold ",P. O. Box 565,,Ringgold,LA,71068,318-894-4699,BIENVILLE,Alan D. Clayborn,1156 Mill St.,,Ringgold,LA,71068,318-894-9855,W,M,D,310,12/31/2010,01/01/2007,Mr. Clayborn -DPEC Member ,at Large ,,,,LA,,,BOSSIER,,,,,,,,,,,054 -DPEC Member ,District 1 ,,,,LA,,,BOSSIER,Mark S. Hill,P.O. Box 57,,Haughton,LA,71037-0057 ,318-949-3588,B,M,D,056,02/20/2012,02/20/2008,Mr. Hill -DPEC Member ,District 2 ,,,,LA,,,BOSSIER,,,,,,,,,,,056 -DPEC Member ,District 3 ,,,,LA,,,BOSSIER,,,,,,,,,,,056 -DPEC Member ,District 4 ,,,,LA,,,BOSSIER,,,,,,,,,,,056 -DPEC Member ,District 5 ,,,,LA,,,BOSSIER,"Rosemarie ""Rosie"" Salinas",139 Lakewood Point Dr.,,Bossier City,LA,71111-2073,318-747-9744,W,F,D,056,02/20/2012,02/20/2008,Ms. Salinas -DPEC Member ,District 6 ,,,,LA,,,BOSSIER,,,,,,,,,,,056 -DPEC Member ,District 7 ,,,,LA,,,BOSSIER,,,,,,,,,,,056 -DPEC Member ,District 8 ,,,,LA,,,BOSSIER,,,,,,,,,,,056 -DPEC Member ,District 9 ,,,,LA,,,BOSSIER,,,,,,,,,,,056 -DPEC Member ,District 10 ,,,,LA,,,BOSSIER,,,,,,,,,,,056 -DPEC Member ,District 11 ,,,,LA,,,BOSSIER,,,,,,,,,,,056 -DPEC Member ,District 12 ,,,,LA,,,BOSSIER,,,,,,,,,,,056 -RPEC Member ,at Large ,,,,LA,,,BOSSIER,Laura Adley,3411 Pine Haven Circle,,Haughton,LA,71037,318-949-4517,W,F,R,064,02/20/2012,02/20/2008,Ms. Adley -RPEC Member ,at Large ,,,,LA,,,BOSSIER,"""Jamie"" Burns",129 Lone Oak Dr.,,Benton,LA,71006,318-965-5671,W,M,R,064,02/20/2012,02/20/2008,Mr. Burns -RPEC Member ,at Large ,,,,LA,,,BOSSIER,Joan L. Carraway,P. O. Box 327,,Benton,LA,71006,318-326-5829,W,F,R,064,02/20/2012,02/20/2008,Ms. Carraway -RPEC Member ,at Large ,,,,LA,,,BOSSIER,Peyton Cole,2513 N Waverly Dr.,,Bossier City,LA,71111,318-742-8071,W,M,R,064,02/20/2012,02/20/2008,Mr. Cole -RPEC Member ,at Large ,,,,LA,,,BOSSIER,Bobby W. Edmiston,1001 Bay Ridge Dr.,,Benton,LA,71006-3464,318-965-4925,W,M,R,064,02/20/2012,02/20/2008,Mr. Edmiston -RPEC Member ,District 1 ,,,,LA,,,BOSSIER,James L. Frost,305 Spring Branch Rd.,,Elm Grove,LA,71051,318-987-4297,,,,066,,06/05/2008,Mr. Frost -RPEC Member ,District 2 ,,,,LA,,,BOSSIER,,,,,,,,,,,066 -RPEC Member ,District 3 ,,,,LA,,,BOSSIER,"""Mike"" Collier",521 Merritt Rd.,,Benton,LA,71006-4324,318-965-4321,W,M,R,066,02/20/2012,02/20/2008,Mr. Collier -RPEC Member ,District 4 ,,,,LA,,,BOSSIER,"""Cindy"" Johnston",205 Young Rd.,,Benton,LA,71006,318-326-5324,W,F,R,066,02/20/2012,02/20/2008,Ms. Johnston -RPEC Member ,District 5 ,,,,LA,,,BOSSIER,"Michael ""Mike"" Mosura",6014 Jason St.,,Bossier City,LA,71111-5744,318-742-3700,W,M,R,066,02/20/2012,02/20/2008,Mr. Monsura -RPEC Member ,District 6 ,,,,LA,,,BOSSIER,Anne Price,104 Cambridge Cir.,,Bossier City,LA,71111-2278,318-741-1572,W,F,R,066,02/20/2012,02/20/2008,Ms. Price -RPEC Member ,District 7 ,,,,LA,,,BOSSIER,,,,,,,,,,,066 -RPEC Member ,District 8 ,,,,LA,,,BOSSIER,J. Brad Cummings,2709 Old Minden rd.,,Bossier City,LA,71112,,,,,066,,06/25/2008 -RPEC Member ,District 9 ,,,,LA,,,BOSSIER,"Joseph ""Joe"" Gregorio",1100 Benton Rd.,,Bossier City,LA,71111-3608,318-747-0384,W,M,R,066,02/20/2012,02/20/2008,Mr. Gregorio -RPEC Member ,District 10 ,,,,LA,,,BOSSIER,,,,,,,,,,,066 -RPEC Member ,District 11 ,,,,LA,,,BOSSIER,,,,,,,,,,,066 -RPEC Member ,District 12 ,,,,LA,,,BOSSIER,Janie M. Kelley,1613 Caplis Sligo Rd.,,Bossier City,LA,71112-9859,318-747-2073,W,F,R,066,02/20/2012,02/20/2008,Ms. Kelley -Sheriff ,,P. O. Box 850,,Benton,LA,71006,318-965-3410,BOSSIER,Larry Deen,P.O. Box 850,,Benton,LA,71006,318-965-3409,W,M,R,225,06/30/2012,07/01/2008,Sheriff Dean -Clerk of Court ,,P. O. Box 430,,Benton,LA,71006-0746 ,318-965-2336,BOSSIER,"""Cindy"" Johnston",P. O. Box 430,,Benton,LA,71006-0746 ,318-326-5324,W,F,R,230,06/30/2012,07/01/2008,Ms. Johnston -Assessor ,,P. O. Box 325,,Benton,LA,71006-0325 ,318-965-2273,BOSSIER,Bobby W. Edmiston,1001 Bay Ridge Dr.,,Benton,LA,71006-3463,,W,M,R,235,12/31/2012,01/01/2009,Mr. Edmiston -Coroner ,,"3022 Old Minden Rd., Ste. 209",,Bossier City,LA,71112,318-549-3415,BOSSIER,John M. Chandler,P.O. Box 1386,,Benton,LA,71006,318-465-3505,W,M,R,240,03/25/2012,03/24/2008,Mr. Chandler -Police Juror,District 1,P. O. Box 70,,Benton,LA,71006,318-965-2329,BOSSIER,"Henry D. ""Hank"" Meachum",430 Shadywood Ln.,,Haughton,LA,71037-8949,,W,M,D,245,01/08/2012,01/14/2008,Mr. Meachum -Police Juror ,District 2 ,P. O. Box 70,,Benton,LA,71006,318-965-2329,BOSSIER,Glenn Benton,2325 Hidden Cove,,Haughton,LA,71037-9435,318-949-0851,W,M,D,245,01/08/2012,01/14/2008,Mr. Benton -Police Juror ,District 3 ,P. O. Box 70,,Benton,LA,71006,318-965-2329,BOSSIER,Wanda Bennett,309 Jacobs Pt.,,Benton,LA,71006-8445,318-965-2940,W,F,O,245,01/08/2012,01/14/2008,Ms. Bennett -Police Juror ,District 4 ,P. O. Box 70,,Benton,LA,71006,318-965-2329,BOSSIER,Winfred R. Johnston,258 Hwy. 537,,Plain Dealing,LA,71064-4502,318-326-4547,W,M,D,245,01/08/2012,01/14/2008,Mr. Johnston -Police Juror ,District 5 ,P. O. Box 70,,Benton,LA,71006,318-965-2329,BOSSIER,Barry Butler,1988 Swan Lake Rd.,,Bossier City,LA,71111-7104,318-747-2196,W,M,R,245,01/08/2012,01/14/2008,Mr. Butler -Police Juror ,District 6 ,P. O. Box 70,,Benton,LA,71006,318-965-2329,BOSSIER,"""Rick"" Avery",524 Wedgewood Dr.,,Bossier City,LA,71111-2290,318-747-4185,W,M,R,245,01/08/2012,01/14/2008,Mr. Avery -Police Juror ,District 7 ,P. O. Box 70,,Benton,LA,71006,318-965-2329,BOSSIER,"James ""Jimmy"" Cochran",2420 Douglas Dr.,,Bossier City,LA,71111-3448,318-742-8174,W,M,D,245,01/08/2012,01/14/2008,Mr. Cochran -Police Juror ,District 8 ,P. O. Box 70,,Benton,LA,71006,318-965-2329,BOSSIER,J. Brad Cummings,2709 Old Minden Rd.,,Bossier City,LA,71112-2313,318-746-7316,W,M,R,245,01/08/2012,01/14/2008,Mr. Cummings -Police Juror ,District 9 ,P. O. Box 70,,Benton,LA,71006,318-965-2329,BOSSIER,"William ""Bill"" Altimus",3002 June Ln.,,Bossier City,LA,71112-2810,318-742-7216,W,M,R,245,01/08/2012,01/14/2008,Mr. Altimus -Police Juror ,District 10 ,P. O. Box 70,,Benton,LA,71006,318-965-2329,BOSSIER,Jerome L. Darby,1212 Gibson Cir.,,Bossier City,LA,71112-3348,318-747-3489,B,M,O,245,01/08/2012,01/14/2008,Mr. Darby -Police Juror ,District 11 ,P. O. Box 70,,Benton,LA,71006,318-965-2329,BOSSIER,W. Wayne Hammack,4008 Wayne Ave.,,Bossier City,LA,71112-4031,318-746-6297,W,M,D,245,01/08/2012,01/14/2008,Mr. Hammack -Police Juror ,District 12 ,P. O. Box 70,,Benton,LA,71006,318-965-2329,BOSSIER,"Paul ""Mac"" Plummer",123 Oaklawn Dr.,,Bossier City,LA,71112,318-742-7489,W,M,R,245,01/08/2012,07/21/2008,Mr. Plummer -City Judge ,"City Court, City of Bossier City ",620 Benton Rd.,,Bossier City,LA,71111,318-741-8587,BOSSIER,"Thomas A. ""Tommy"" Wilson, Jr.",2215 Landau Ln.,,Bossier City,LA,71111,318-742-9404,W,M,R,250,12/31/2014,01/22/2009,Judge Wilson -City Marshal ,"City Court, City of Bossier City ",620 Benton Rd.,,Bossier City,LA,71111,318-741-8855,BOSSIER,Johnny Wyatt,2259 Landau Ln.,,Bossier City,LA,71111,318-747-6904,W,M,R,250,12/31/2014,01/01/2009,Judge Wyatt -Member of School Board ,District 1 ,P. O. Box 2000,,Benton,LA,71006,318-549-5000,BOSSIER,Jack E. Raley,P.O. Box 85,,Haughton,LA,71037,318-949-3675,W,M,R,255,12/31/2010,01/01/2007,Mr. Raley -Member of School Board ,District 2 ,P. O. Box 2000,,Benton,LA,71006,318-549-5000,BOSSIER,Brad Bockhaus,111 Harvest Ln.,,Haughton,LA,71037,318-949-6680,W,M,R,255,12/31/2010,10/14/2008,Mr. Bockhaus -Member of School Board ,District 3 ,P. O. Box 2000,,Benton,LA,71006,318-549-5000,BOSSIER,Allison Brigham,4960 Old Oak Dr.,,Benton,LA,71006,318-965-0590,W,F,R,255,12/31/2010,01/01/2007,Ms. Brigham -Member of School Board ,District 4 ,P. O. Box 2000,,Benton,LA,71006,318-549-5000,BOSSIER,Tammy Armer Smith,183 Willow Bend Rd.,,Benton,LA,71006,318-965-0477,W,F,D,255,12/31/2010,01/01/2007,Ms. Smith -Member of School Board ,District 5 ,P. O. Box 2000,,Benton,LA,71006,318-549-5000,BOSSIER,"Michael ""Mike"" Mosura",6014 Jason St.,,Bossier City,LA,71111,318-742-3700,W,M,R,255,12/31/2010,01/01/2007,Mr. Mosura -Member of School Board ,District 6 ,P. O. Box 2000,,Benton,LA,71006,318-549-5000,BOSSIER,"William ""Bill"" Kostelka",309 Audubon Ct.,,Bossier City,LA,71111-6329,318-747-2212,W,M,R,255,12/31/2010,01/01/2007,Mr. Kostelka -Member of School Board ,District 7 ,P. O. Box 2000,,Benton,LA,71006,318-549-5000,BOSSIER,J. W. Slack,2424 Douglas Dr.,,Bossier City,LA,71111-3448,318-746-5752,W,M,R,255,12/31/2010,01/01/2007,Mr. Slack -Member of School Board ,District 8 ,P. O. Box 2000,,Benton,LA,71006,318-549-5000,BOSSIER,Kenneth M. Wiggins,3201 Cloverdale Pl.,,Bossier City,LA,71111,318-742-0251,B,M,D,255,12/31/2010,01/01/2007,Mr. Wiggins -Member of School Board ,District 9 ,P. O. Box 2000,,Benton,LA,71006,318-549-5000,BOSSIER,Eddy Ray Presley,1816 Lee St.,,Bossier City,LA,71112-2024,318-746-7530,W,M,R,255,12/31/2010,01/01/2007,Mr. Presley -Member of School Board ,District 10 ,P. O. Box 2000,,Benton,LA,71006,318-549-5000,BOSSIER,"Julian ""Julius"" Darby",1130 Beverly St.,,Bossier City,LA,71112-3365,318-747-0818,O,M,O,255,12/31/2010,01/01/2007,Mr. Darby -Member of School Board ,District 11 ,P. O. Box 2000,,Benton,LA,71006,318-549-5000,BOSSIER,Lindell Webb,1830 Venus Dr.,,Bossier City,LA,71112-4359,318-746-0672,W,M,R,255,12/31/2010,01/01/2007,Mr. Webb -Member of School Board ,District 12 ,P. O. Box 2000,,Benton,LA,71006,318-549-5000,BOSSIER,Mack Knotts,5007 Kenilworth Dr.,,Bossier City,LA,71112,318-747-4166,W,M,R,255,12/31/2010,01/01/2007,Mr. Knotts -Justice of the Peace ,Justice of the Peace District 1 ,1416 Magnolia Ridge,,Bossier City,LA,71112-5042,318-746-4526,BOSSIER,"""Tom"" Carleton",1416 Magnolia Ridge,,Bossier City,LA,71112,318-746-4526,W,M,R,265,12/31/2014,01/01/2009,Mr. Carleton -Justice of the Peace ,Justice of the Peace District 3 ,270 Hwy. 537,,Plain Dealing,LA,71064,318-326-4384,BOSSIER,Clifford Cannon,171 Buckshot Rd.,,Plain Dealing,LA,71064,318-423-2368,W,M,,265,12/31/2014,01/01/2009,Mr. Cannon -Justice of the Peace ,Justice of the Peace District 3 ,270 Hwy. 537,,Plain Dealing,LA,71064,318-326-4384,BOSSIER,Jack Cook,P. O. Box 372,,Plain Dealing,LA,71064,318-326-4263,W,M,D,265,12/31/2014,01/01/2009,Mr. Cook -Justice of the Peace ,Justice of the Peace District 4 ,153 Salem Cemetery Road,,Plain Dealing,LA,71064,318-326-5120,BOSSIER,Julia A. Budwah,153 Salem Cemetery Rd.,,Plain Dealing,LA,71064,318-326-5120,W,F,D,265,12/31/2014,01/01/2009,Ms. Budwah -Justice of the Peace ,Justice of the Peace District 5 ,911 Old Plain Dealing Rd.,,Benton,LA,71006,318-965-0093,BOSSIER,Lorraine S. Ragsdale,101 Mildred St.,,Benton,LA,71006,318-965-0011,W,F,D,265,12/31/2014,01/01/2009,Ms. Ragsdale -Justice of the Peace ,Justice of the Peace District 6 ,P. O. Box 308,,Princeton,LA,71067,318-949-2581,BOSSIER,Charles Gray,P. O. Box 308,,Haughton,LA,71037,318-949-2581,W,M,D,265,12/31/2014,01/01/2009,Mr. Gray -Justice of the Peace ,Justice of the Peace District 6 ,P. O. Box 308,,Princeton,LA,71067,318-949-2581,BOSSIER,Cullen B. Keith,P. O. Box 11,,Princeton,LA,71067,318-949-3692,W,M,D,265,12/31/2014,01/01/2009,Mr. Keith -Constable ,Justice of the Peace District 1 ,5404 Hollyhock Ln.,,Bossier City,LA,71112-4922,318-742-2942,BOSSIER,Charles R. Logan,1507 Nottoway Pl.,,Bossier City,LA,71112,318-286-5542,,,D,267,12/31/2014,01/01/2009,Mr. Logan -Constable ,Justice of the Peace District 3 ,P.O. Box 323,,Plain Dealing,LA,71064,318-326-7477,BOSSIER,Eddie Chandler,P. O. Box 465,,Plain Dealing,LA,71064,318-326-5659,W,M,D,267,12/31/2014,01/01/2009,Mr. Chandler -Constable ,Justice of the Peace District 3 ,P.O. Box 323,,Plain Dealing,LA,71064,318-326-7477,BOSSIER,"Roy ""Tony"" Jenkins",P. O. Box 106,,Plain Dealing,LA,71064,318-326-5463,W,M,D,267,12/31/2014,01/01/2009,Mr. Jenkins -Constable ,Justice of the Peace District 4 ,155 Matlock Rd.,,Plain Dealing,LA,71064,318-326-4049,BOSSIER,"Ronald ""Ronnie"" Matlock",300 Dixon Cutoff Rd.,,Plain Dealing,LA,71064,318-326-4049,W,M,D,267,12/31/2014,01/01/2009,Mr. Matlock -Constable ,Justice of the Peace District 5 ,911 Old Plain Dealing Rd.,,Benton,LA,71006,318-965-0093,BOSSIER,"James E. ""Jim"" Frazier, Jr.",4618 Palmetto Rd.,,Benton,LA,71006,318-965-2532,W,M,D,267,12/31/2014,01/01/2009,Mr. Frazier -Constable ,Justice of the Peace District 6 ,P.O. Box 191,,Haughton,LA,71037,318-949-0322,BOSSIER,Kenneth Stephens,P. O. Box 191,,Haughton,LA,71037,319-949-0322,W,M,D,267,12/31/2014,01/01/2009,Mr. Stephens -Constable ,Justice of the Peace District 6 ,P.O. Box 191,,Haughton,LA,71037,318-949-0322,BOSSIER,"""Jeff"" Weems",6730 Hwy. 80,,Princeton,LA,71067,318-949-0862,,,R,267,12/31/2014,01/01/2009,Mr. Weems -Mayor ,City of Bossier City ,P. O. Box 5337,,Bossier City,LA,,318-741-8520,BOSSIER,"Lorenz ""Lo"" Walker",613 Enchanted Ln.,,Bossier City,LA,71111,318-742-7123,W,M,R,300,06/30/2013,07/01/2009,Mayor Walker -Mayor ,Town of Benton ,P. O. Box 1390,,Benton,LA,,318-965-2932,BOSSIER,Albert Doughty,P. O. Box 397,,Benton,LA,71006,318-965-0247,W,M,D,300,12/31/2012,01/02/2009,Mayor Doughty -Mayor ,Town of Haughton ,P. O. Box 729,,Haughton,LA,,318-949-9401,BOSSIER,"Carlton ""Pee-Wee"" Anderson",415 W. McKinley Ave.,,Haughton,LA,71037,318-949-9194,W,M,D,300,12/31/2012,01/01/2009,Mayor Anderson -Mayor ,Town of Plain Dealing ,P. O. Box 426,,Plain Dealing,LA,,318-326-4234,BOSSIER,Dale Barnette,P. O. Box 215,,Plain Dealing,LA,71064,318-326-5502,W,M,D,300,12/31/2010,01/01/2009,Mayor Barnette -Chief of Police ,Town of Benton ,P. O. Box 1390,,Benton,LA,71006,318-965-2932,BOSSIER,Charles Pilkinton,111 Pine St.,,Benton,LA,71006,318-965-2678,W,M,R,305,12/31/2012,01/01/2009,Chief Pilkinton -Chief of Police ,Town of Haughton ,P. O. Box 729,,Haughton,LA,71037,318-949-9401,BOSSIER,Rodney Farrington,P. O. Box 432,,Haughton,LA,71037,318-949-4854,W,M,R,305,12/31/2012,01/01/2009,Chief Farrington -Marshal ,Town of Plain Dealing ,P. O. Box 426,,Plain Dealing,LA,71064,318-326-4234,BOSSIER,Richard Stanford,P. O. Box 212,,Plain Dealing,LA,71064,318-326-5821,W,M,D,305,12/31/2010,01/01/2009,Marshal Stanford -Councilman at Large ,City of Bossier City ,P. O. Box 5337,,Bossier City,LA,71171-5337,318-741-8520,BOSSIER,Timothy Larkin,221 Evangeline Walk,,Bossier City,LA,71111,318-425-2300,W,M,R,308,06/30/2013,07/01/2009,Mr. Larkin -Councilman at Large ,City of Bossier City ,P. O. Box 5337,,Bossier City,LA,71171-5337,318-741-8520,BOSSIER,"David A. Montgomery, Jr.",130 Stonebridge Blvd.,,Bossier City,LA,71111,318-747-9886,W,M,R,308,06/30/2013,07/01/2009,Mr. Montgomery -Alderman ,"District 1, Town of Plain Dealing ",P. O. Box 426,,Plain Dealing,LA,71064,318-326-4234,BOSSIER,Charlotte Giles Hamiter,P. O. Box 90,,Plain Dealing,LA,71064,318-326-5705,W,F,D,310,12/31/2010,01/01/2009,Ms. Hamiter -Alderman ,"District 1, Town of Plain Dealing ",P. O. Box 426,,Plain Dealing,LA,71064,318-326-4234,BOSSIER,Linda Hamiter,617 Hickory Dr.,,Plain Dealing,LA,71064,318-326-4117,W,F,D,310,12/31/2010,01/01/2009,Ms. Hamiter -Alderman ,"District 2, Town of Plain Dealing ",P. O. Box 426,,Plain Dealing,LA,71064,318-326-4234,BOSSIER,Marilyn Gray Bordelon,P. O. Box 426,,Plain Dealing,LA,71064,318-326-5039,W,F,D,310,12/31/2010,01/01/2009,Ms. Bordelon -Alderman ,"District 3, Town of Plain Dealing ",P. O. Box 426,,Plain Dealing,LA,71064,318-326-4234,BOSSIER,Kenneth W. Stiles,4093 Old Plain Dealing Rd.,,Plain Dealing,LA,71064,318-465-0014,W,M,R,310,12/31/2010,01/01/2009,Mr. Stiles -Alderman ,"District 4, Town of Plain Dealing ",P. O. Box 426,,Plain Dealing,LA,71064,318-326-4234,BOSSIER,Terry J. Richardson,610 W. Palmetto Ave.,,Plain Dealing,LA,71064,318-326-4113,W,M,R,310,12/31/2010,01/01/2009,Mr. Richardson -Alderman ,"District 1, Town of Benton ",P. O. Box 1390,,Benton,LA,71006,318-965-2932,BOSSIER,Richard A. Jackson,805 Louis Ave.,,Benton,LA,71006,318-965-0741,B,M,D,310,12/31/2012,01/01/2009,Mr. Jackson -Alderman ,"District 2, Town of Benton ",P. O. Box 1390,,Benton,LA,71006,318-965-2932,BOSSIER,Linda Gates,529 Oak Ridge Dr.,,Benton,LA,71006,318-965-1333,,,D,310,12/31/2012,01/01/2009,Ms. Gates -Alderman ,"District 3, Town of Benton ",P. O. Box 1390,,Benton,LA,71006,318-965-2932,BOSSIER,"Ronald ""Ronnie"" Jones",P. O. 623,,Benton,LA,71006,318-965-0026,W,M,D,310,12/31/2012,01/01/2009,Mr. Jones -Alderman ,"District 4, Town of Benton ",P. O. Box 1390,,Benton,LA,71006,318-965-2932,BOSSIER,James Friday,105 Oak Ridge Dr.,,Benton,LA,71006,318-965-4912,W,M,R,310,12/31/2012,01/01/2009,Mr. Friday -Alderman ,"District 5, Town of Benton ",P. O. Box 1390,,Benton,LA,71006,318-965-2932,BOSSIER,"""Tommy"" Hill",P. O. Box 83,,Benton,LA,71006,318-965-2759,W,M,D,310,12/31/2012,10/27/2009,Mr. Hill -Alderman ,Town of Haughton ,P. O. Box 729,,Haughton,LA,71037,318-949-9401,BOSSIER,Doris J. Grappe,P. O. Box 302,,Haughton,LA,71037,318-949-0018,W,F,D,310,12/31/2012,01/01/2009,Mr. Grappe -Alderman ,Town of Haughton ,P. O. Box 729,,Haughton,LA,71037,318-949-9401,BOSSIER,Mike Hollis,718 W. McKinley Ave.,,Haughton,LA,71037,318-949-8683,W,M,D,310,12/31/2012,01/01/2009,Mr. Hollis -Alderman ,Town of Haughton ,P. O. Box 729,,Haughton,LA,71037,318-949-9401,BOSSIER,Martha McGee,420 Camp Zion Rd.,,Haughton,LA,71037,318-949-0224,W,F,R,310,12/31/2012,01/01/2009,Ms. McGee -Alderman ,Town of Haughton ,P. O. Box 729,,Haughton,LA,71037,318-949-9401,BOSSIER,Larry D. Small,7438 Hwy. 157,,Haughton,LA,71037,,,,,310,,09/17/2009,Mr. Small -Alderman ,Town of Haughton ,P. O. Box 729,,Haughton,LA,71037,318-949-9401,BOSSIER,Elbert Winfield,307 Galilee St.,,Haughton,LA,71037,318-949-8676,B,M,D,310,12/31/2012,01/01/2009,Mr. Winfield -Councilman ,"District 1, City of Bossier City ",P. O. Box 5337,,Bossier City,LA,71171-5337,318-741-8520,BOSSIER,Scott P. Irwin,113 Savannah Place Cr.,,Bossier City,LA,71112,318-742-2190,W,M,R,310,06/30/2013,07/01/2009,Mr. Irwin -Councilman ,"District 2, City of Bossier City ",P. O. Box 5337,,Bossier City,LA,71171-5337,318-741-8520,BOSSIER,"Jeffery D. ""Jeff"" Darby",3322 Kingsford Pl.,,Bossier City,LA,71112,318-742-6908,B,M,O,310,06/30/2013,07/01/2009,Mr. Darby -Councilman ,"District 3, City of Bossier City ",P. O. Box 5337,,Bossier City,LA,71171-5337,318-741-8520,BOSSIER,"Don ""Bubba"" Williams",1026 Princeton Ave.,,Bossier City,LA,71112,318-747-5320,W,M,D,310,06/30/2013,07/01/2009,Mr. Williams -Councilman ,"District 4, City of Bossier City ",P. O. Box 5337,,Bossier City,LA,71171-5337,318-823-2128,BOSSIER,David Jones,2506 Abbey Ct.,,Bossier City,LA,71111,318-752-1944,W,M,R,310,06/30/2013,07/01/2009,Mr. Jones -Councilman ,"District 5, City of Bossier City ",P. O. Box 5337,,Bossier City,LA,71171-5337,318-823-2128,BOSSIER,"James ""Chubby"" Knight",2322 Douglas Dr.,,Bossier City,LA,71111,318-572-8624,W,M,R,310,06/30/2013,07/01/2009,Mr. Knight -DPEC Member ,at Large ,,,,LA,,,CADDO,Artis Ray Cash,119 Waters Edge Dr.,,Shreveport,LA,71106-7775,318-798-3124,B,,D,054,02/20/2012,02/20/2008,Mr. Cash -DPEC Member ,at Large ,,,,LA,,,CADDO,Larry Ferdinand,3436 Galaxy Ln.,,Shreveport,LA,71119-5002,318-636-1555,B,,D,054,02/20/2012,02/20/2008,Mr. Ferdinand -DPEC Member ,at Large ,,,,LA,,,CADDO,"David W. Hylan, Jr.",843 Gladstone Blvd.,,Shreveport,LA,71104-4201,318-865-4007,W,M,D,054,02/20/2012,02/20/2008,Mr. Hylan -DPEC Member ,at Large ,,,,LA,,,CADDO,"""Don"" Miller",239 Ockley Dr.,,Shreveport,LA,71105-3024,318-222-9417,W,M,D,054,02/20/2012,02/20/2008,Mr. Miller -DPEC Member ,District 1 ,,,,LA,,,CADDO,,,,,,,,,,,056 -DPEC Member ,District 2 ,,,,LA,,,CADDO,,,,,,,,,,,056 -DPEC Member ,District 3 ,,,,LA,,,CADDO,June Phillips,3761 Bobbitt Pl.,,Shreveport,LA,71107-3801,318-221-5957,B,F,D,056,02/20/2012,02/20/2008,Ms. Phillips -DPEC Member ,District 4 ,,,,LA,,,CADDO,Kirk Green,546 Dalzell St.,,Shreveport,LA,71104,214-733-6889,W,M,D,056,02/20/2012,02/20/2008,Mr. Green -DPEC Member ,District 5 ,,,,LA,,,CADDO,Lillian Priest,2613 Parham Dr.,,Shreveport,LA,71109-3015,318-635-8335,B,F,D,056,02/20/2012,02/20/2008,Ms. Priest -DPEC Member ,District 6 ,,,,LA,,,CADDO,Steve G. Kirkikis,310 Orleans Dr.,,Shreveport,LA,71106-6224,318-861-1582,,,D,056,02/20/2012,02/20/2008,Mr. Kirkikis -DPEC Member ,District 7 ,,,,LA,,,CADDO,,,,,,,,,,,056 -DPEC Member ,District 8 ,,,,LA,,,CADDO,"""Mike"" Sullivan",132 Carroll St.,,Shreveport,LA,71105-4235,318-861-7333,W,M,D,056,02/20/2012,02/20/2008,Mr. Sullivan -DPEC Member ,District 9 ,,,,LA,,,CADDO,Nita Steele,P.O. Box 52691,,Shreveport,LA,71135-2691,318-797-5604,B,F,D,056,02/20/2012,02/20/2008,Ms. Steele -DPEC Member ,District 10 ,,,,LA,,,CADDO,,,,,,,,,,,056 -DPEC Member ,District 11 ,,,,LA,,,CADDO,"Robert ""Bob"" Brown",10127 Freedoms Way,,Keithville,LA,71047-8950,318-458-6566,W,M,D,056,02/20/2012,02/20/2008,Mr. Brown -DPEC Member ,District 12 ,,,,LA,,,CADDO,,,,,,,,,,,056 -RPEC Member ,at Large ,,,,LA,,,CADDO,"Edward M. Brossette, ",529 Stephenson St.,,Shreveport,LA,71104,,,,,064,,01/13/2010,Mr. Brossette -RPEC Member ,at Large ,,,,LA,,,CADDO,Harold O. Coates,6117 Lovers Ln.,,Shreveport,LA,71105,318-868-1212,,,,064,,06/11/2008,Mr. Coates -RPEC Member ,at Large ,,,,LA,,,CADDO,"""Betsy"" Malone",3801 Greenway Pl.,,Shreveport,LA,71105-2015,318-868-3464,W,F,R,064,02/20/2012,02/20/2008 -RPEC Member ,at Large ,,,,LA,,,CADDO,"""Jay"" Murrell",4640 Fern Ave.,,Shreveport,LA,71105-3118,318-868-8379,,,R,064,02/20/2012,02/20/2008,Mr. Murrell -RPEC Member ,at Large ,,,,LA,,,CADDO,Barry Rachal,P. O. Box 5545,,Shreveport,LA,71135,318-797-6184,O,M,R,064,02/20/2012,02/20/2008 -RPEC Member ,District 1 ,,,,LA,,,CADDO,"""Kim"" Brun",6835 Dixie Shreveport Rd.,,Shreveport,LA,71107-8425,318-673-8367,W,F,R,066,02/20/2012,02/20/2008,Ms. Brun -RPEC Member ,District 2 ,,,,LA,,,CADDO,Mike Romanos,3845 N. Market St.,,Shreveport,LA,71107-3146,318-425-1597,,,R,066,02/20/2012,02/20/2008,Mr. Romanos -RPEC Member ,District 3 ,,,,LA,,,CADDO,Creighton Light,612 Wesley Ave.,,Shreveport,LA,71107-3923,,W,M,R,066,02/20/2012,02/20/2008,Mr. Light -RPEC Member ,District 3 ,,,,LA,,,CADDO,Creighton Light,612 Wesley St.,,Shreveport,LA,71107,,,,,066 -RPEC Member ,District 4 ,,,,LA,,,CADDO,"""Jay"" Gallagher",1103 Blvd. St.,,Shreveport,LA,71104-2030,318-221-0456,W,M,R,066,02/20/2012,02/20/2008,Mr. Gallagher -RPEC Member ,District 5 ,,,,LA,,,CADDO,Claude L. White,2825 Regent St.,,Shreveport,LA,71109,318-635-7563,,,,066,,06/11/2008,Mr. White -RPEC Member ,District 6 ,,,,LA,,,CADDO,"Austin G. Robertson, Jr.",5 Beaux Rivages Dr.,,Shreveport,LA,71106-6806,318-222-8367,W,M,R,066,02/20/2012,02/20/2008,Mr. Robertson -RPEC Member ,District 7 ,,,,LA,,,CADDO,"""Don"" Hollis",4002 Curtis Ln.,,Shreveport,LA,71109-5016,318-773-4349,,,R,066,02/20/2012,02/20/2008,Mr. Hollis -RPEC Member ,District 8 ,,,,LA,,,CADDO,Louis R. Avallone,P. O. Box 5072,,Shreveport,LA,71135,318-470-2122,W,M,R,066,02/20/2012,02/20/2008,Mr. Acallone -RPEC Member ,District 9 ,,,,LA,,,CADDO,Jimmy C. Allen,7333 Camelback Dr.,,Shreveport,LA,71105-5007,318-797-4761,W,M,R,066,02/20/2012,02/20/2008,Mr. Allen -RPEC Member ,District 10 ,,,,LA,,,CADDO,"Stepphen C. Gibson, ",9402 Barid Rd,,Shreveport,LA,71118,318-688-0742,,,,066,,01/13/2010 -RPEC Member ,District 11 ,,,,LA,,,CADDO,Alan W. Koloc,2056 Sand Crest Dr.,,Shreveport,LA,71118,,,,,066,,06/11/2008,Mr. Koloc -RPEC Member ,District 12 ,,,,LA,,,CADDO,,,,,,,,,,,066 -Judge ,"Juvenile Court, Elec. Sect. 1C ",1835 Spring St.,,Shreveport,LA,71101,318-226-6757,CADDO,Shonda Stone,P. O. Box 5294,,Shreveport,LA,71135,318-213-8300,B,F,D,220,12/31/2014,01/01/2009,Judge Stone -Judge ,"Juvenile Court, Elec. Sect. 2B ",1835 Spring St.,,Shreveport,LA,71101,318-226-6755,CADDO,Paul Young,9907 Oak Haven Dr.,,Shreveport,LA,71106-8223,318-797-5919,,,D,220,12/31/2014,01/01/2009,Judge Young -Judge ,"Juvenile Court, Elec. Sect. 3A ",1835 Spring St.,,Shreveport,LA,71101,318-226-6755,CADDO,David Matlock,420 Pennsylvania Ave.,,Shreveport,LA,71105-3136,318-861-4277,,,R,220,12/31/2014,01/01/2009,Judge Matlock -Sheriff ,,"501 Texas St., Rm. 101",,Shreveport,LA,71101-5410,318-681-0687,CADDO,Stephen W. Prator,"501 Texas St., Rm. 101",,Shreveport,LA,71101-5410,318-797-1977,W,M,R,225,06/30/2012,07/01/2008,Sheriff Prator -Clerk of Court ,,"501 Texas St., Rm. 103",,Shreveport,LA,71101,318-226-6780,CADDO,Gary Loftin,"501 Texas St., Rm. 103",,Shreveport,LA,71101,318-226-6793,W,M,D,230,06/30/2012,07/01/2008,Mr. Loftin -Assessor ,,"501 Texas St., Rm. 102, Cthse.",,Shreveport,LA,71101,318-226-6711,CADDO,"Charles R. Henington, Jr.",1723 Bayou Dr.,,Shreveport,LA,71105-3401,318-865-8188,W,M,D,235,12/31/2012,01/02/2009,Mr. Henington -Coroner ,,1704 Market St.,,Shreveport,LA,71101,318-226-6881,CADDO,Todd G. Thoma,124 Baltic Dr.,,Shreveport,LA,71115-2903,318-524-3011,W,M,R,240,03/25/2012,03/24/2008,Mr. Thoma -Parish Commission Member ,District 1 ,"505 Travis St., Ste. 110",,Shreveport,LA,,318-226-6596,CADDO,"""Doug"" Dominick",712 S. Cypress St.,,Vivian,LA,71082-3206,318-375-2356,W,M,R,245,01/09/2012,01/14/2008,Mr. Dominick -Parish Commission Member ,District 2 ,"505 Travis St., Ste. 110",,Shreveport,LA,71101-5409,318-226-6596,CADDO,Rose Wilson McCulloch,2509 Kemp Ln.,,Shreveport,LA,71107-6020,318-227-0803,,,D,245,01/09/2012,01/14/2008,McCulloch -Parish Commission Member ,District 3 ,"505 Travis St., Ste. 110",,Shreveport,LA,71101-5409,318-226-6596,CADDO,"Carl A. Pierson, Sr.",2106 Wyoming Cir.,,Shreveport,LA,71101-2140,318-222-0132,,,D,245,01/09/2012,01/14/2008,Mr. Pierson -Parish Commission Member ,District 4 ,"505 Travis St., Ste. 110",,Shreveport,LA,71101-5409,318-226-6596,CADDO,Matthew Linn,P.O. Box 44373,,Shreveport,LA,71134-4373,318-402-1132,,,R,245,01/09/2012,01/14/2008,Mr. Linn -Parish Commission Member ,District 5 ,"505 Travis St., Ste. 110",,Shreveport,LA,71101-5409,318-226-6596,CADDO,"""Sam"" Jenkins",2419 Kings Hwy.,,Shreveport,LA,71103,318-636-4266,B,M,D,245,01/09/2012,01/14/2008,Mr. Jenkins -Parish Commission Member ,District 6 ,"505 Travis St., Ste. 110",,Shreveport,LA,71101-5409,318-226-6596,CADDO,Lindora Baker,451 E 78th St.,,Shreveport,LA,71106-5009,318-868-8340,B,F,D,245,01/09/2012,02/23/2009,Ms. Baker -Parish Commission Member ,District 7 ,"505 Travis St., Ste. 110",,Shreveport,LA,71101-5409,318-226-6596,CADDO,Stephanie Lynch,P.O. Box 38891,,Shreveport,LA,71133,318-218-5612,B,F,D,245,01/09/2012,01/14/2008,Ms. Lynch -Parish Commission Member ,District 8 ,"505 Travis St., Ste. 110",,Shreveport,LA,71101-5409,318-226-6596,CADDO,John Escude',303 Glen Erica St.,,Shreveport,LA,71106-6001,318-861-1131,W,M,R,245,01/09/2012,01/14/2008,Mr. Escude' -Parish Commission Member ,District 9 ,"505 Travis St., Ste. 110",,Shreveport,LA,71101-5409,318-226-6596,CADDO,"Michael ""Mike"" Thibodeaux",7712 Millicent Way,,Shreveport,LA,71105-5602,318-797-6511,W,M,R,245,01/09/2012,01/14/2008,Mr. Thibodeaux -Parish Commission Member ,District 10 ,"505 Travis St., Ste. 110",,Shreveport,LA,71101-5409,318-226-6596,CADDO,David F. Cox,2633 Lyles Ln.,,Shreveport,LA,71118-2623,318-687-3127,W,M,R,245,01/09/2012,01/14/2008,Mr. Cox -Parish Commission Member ,District 11 ,"505 Travis St., Ste. 110",,Shreveport,LA,71101-5409,318-226-6596,CADDO,"""Jim"" Smith",2039 Evergreen Dr.,,Shreveport,LA,71118,318-469-1945,,M,,245,01/09/2012,01/14/2008,Mr. Smith -Parish Commission Member ,District 12 ,"505 Travis st., Ste. 110",,Shreveport,LA,71101-5409,318-226-6596,CADDO,"""Ken"" Epperson",3822 Treat Dr.,,Shreveport,LA,71119-6908,318-773-2654,B,,D,245,01/09/2012,01/14/2008,Mr. Epperson -Member of School Board ,District 1 ,1961 Midway St.,,Shreveport,LA,71108,318-603-6509,CADDO,"""Steve"" Riall",8033 Old Mooringsport Rd.,,Shreveport,LA,71107,318-929-2065,W,,R,255,12/31/2010,04/14/2009,Mr. Riall -Member of School Board ,District 2 ,1961 Midway St.,,Shreveport,LA,71108,318-603-6509,CADDO,Eursla Dickerson Hardy,106 Holcomb Dr.,,Shreveport,LA,71103-2026,318-424-0673,B,F,D,255,12/31/2010,01/01/2007,Ms. Hardy -Member of School Board ,District 3 ,1961 Midway St.,,Shreveport,LA,71108,318-603-6509,CADDO,Willie D. Burton,417 Indian Tr.,,Shreveport,LA,71107-5417,318-422-5035,B,M,D,255,12/31/2010,01/01/2007,Mr. Burton -Member of School Board ,District 4 ,1961 Midway St.,,Shreveport,LA,71108,318-603-6509,CADDO,Charlotte Crawley,4741 Thornhill Ave.,,Shreveport,LA,71106-1523,318-865-0704,W,F,D,255,12/31/2010,01/01/2007,Ms. Crawley -Member of School Board ,District 5 ,1961 Midway St.,,Shreveport,LA,71108,318-603-6509,CADDO,Lola B. May,2828 Judson St.,,Shreveport,LA,71109-3614,318-222-6519,,,D,255,12/31/2010,01/01/2007,Ms. May -Member of School Board ,District 6 ,1961 Midway St.,,Shreveport,LA,71108,318-603-6509,CADDO,Tammy Phelps,622 Hoover Dr.,,Shreveport,LA,71106-5133,318-869-7656,,,D,255,12/31/2010,01/01/2007,Ms. Phelps -Member of School Board ,District 7 ,1961 Midway St.,,Shreveport,LA,71108,318-603-6509,CADDO,Lillian Priest,P.O. Box 1583,,Shreveport,LA,71165,318-635-8335,B,F,D,255,12/31/2010,01/01/2007,Ms. Priest -Member of School Board ,District 8 ,1961 Midway St.,,Shreveport,LA,71108,318-603-6509,CADDO,Bonita H. Crawford,295 Patton Ave.,,Shreveport,LA,71105-3040,318-868-3684,W,F,R,255,12/31/2010,01/01/2007,Mr. Crawford -Member of School Board ,District 9 ,1961 Midway St.,,Shreveport,LA,71108,318-603-6509,CADDO,Barry Rachal,523 Rock Hollow Dr.,,Shreveport,LA,71115-2501,318-797-6184,O,M,R,255,12/31/2010,01/01/2007,Mr. Rachal -Member of School Board ,District 10 ,1961 Midway St.,,Shreveport,LA,71108,318-603-6509,CADDO,Larry Ramsey,9006 Marlow Dr.,,Shreveport,LA,71118-2723,318-686-7611,W,M,R,255,12/31/2010,01/01/2007,Mr. Ramsey -Member of School Board ,District 11 ,1961 Midway St.,,Shreveport,LA,71108,318-603-6509,CADDO,"""Ginger"" Armstrong",9800 Chase Way,,Shreveport,LA,71118-4624,318-688-0676,W,F,R,255,12/31/2010,01/01/2007,Ms. Armstrong -Member of School Board ,District 12 ,1961 Midway St.,,Shreveport,LA,71108,318-603-6509,CADDO,Dottie Bell,7881 Jefferson Paige Rd.,,Shreveport,LA,71119-8866,318-635-4667,B,,D,255,12/31/2010,01/01/2007,Ms. Bell -Justice of the Peace ,Justice of the Peace Ward 1 ,P. O. Box 104,,Belcher,LA,71004,318-378-4504,CADDO,Barbara Douget,146 Church St.,,Belcher,LA,71004,318-378-4530,W,F,R,265,12/31/2014,01/01/2009,Ms. Doucet -Justice of the Peace ,"Justice of the Peace Ward 2, Oil City Dist. ",9369 Gay Ln.,,Oil City,LA,71061-9704,318-995-0403,CADDO,Ruth W. Johnston,9369 Gay Ln.,,Oil City,LA,71061-9704,318-995-0403,W,F,D,265,12/31/2014,01/01/2009,Ms. Johnston -Justice of the Peace ,"Justice of the Peace Ward 2, Vivian District ",14626 Old Atlanta Rd.,,Vivian,LA,71082-8563,318-375-3158,CADDO,Joe Caldwell,14626 Old Atlanta Rd.,,Vivian,LA,71082-8563,318-375-3158,,,D,265,12/31/2014,01/01/2009,Mr. Caldwell -Justice of the Peace ,"Justice of the Peace Ward 3, Blanchard Dist. ",P. O. Box 564,,Blanchard,LA,71009,318-929-4830,CADDO,,,,,,,,,,,265 -Justice of the Peace ,"Justice of the Peace Ward 3, Mooringsport D. ",9250 N. LA Hwy. 169,,Mooringsport,LA,71060-8620,318-996-7068,CADDO,"M. E. ""Gene"" Nichols, Sr.",7759 Sundown Dr.,,Mooringsport,LA,71060-8733,318-996-7992,,,R,265,12/31/2014,01/01/2009,Mr. Nichols -Justice of the Peace ,Justice of the Peace Ward 5 ,8353 Tanya Dr.,,Greenwood,LA,71033-3338,318-938-1896,CADDO,"""Tom"" Bryson",8353 Tanya Dr.,,Greenwood,LA,71033,318-938-1896,W,M,R,265,12/31/2014,01/01/2009,Mr. Bryson -Justice of the Peace ,Justice of the Peace Ward 6 ,3811 Christy Dr.,,Shreveport,LA,71129-9740,318-925-2286,CADDO,Glenda Ennis Britton,3811 Christy Dr.,,Shreveport,LA,71129-9740,318-925-2286,W,F,D,265,12/31/2014,01/01/2009,Ms. Britton -Justice of the Peace ,Justice of the Peace Ward 7 ,P. O. Box 6772,,Shreveport,LA,71136,318-687-5319,CADDO,Susan Waddell,3221 Green Terrace Rd.,,Shreveport,LA,71118,318-458-4834,W,F,R,265,12/31/2014,01/01/2009,Ms. Waddell -Justice of the Peace ,Justice of the Peace Ward 8 ,10543 Norris Ferry Rd.,,Shrevport,LA,71106-8331,318-797-4014,CADDO,Gregory M. Taylor,5057 Dixie Garden Dr.,,Shreveport,LA,71105,318-869-4267,W,M,R,265,12/31/2014,09/03/2009,Mr. Taylor -Justice of the Peace ,Justice of the Peace Ward 9 ,17665 Munnerlyn Chapel Rd.,,Ida,LA,71044,318-284-3528,CADDO,Dale A. Hopper,17665 Munnerlyn Chapel Rd.,,Ida,LA,71044,318-284-3528,W,M,D,265,12/31/2014,01/01/2009,Mr. Hopper -Constable ,Justice of the Peace Ward 1 ,8543 Sac Fox,,Shreveport,LA,71107-9118,318-797-1673,CADDO,Paul Sapp,P. O. Box 143,,Gilliam,LA,71029,318-296-4441,W,M,,267,12/31/2014,01/01/2009,Mr. Sapp -Constable ,"Justice of the Peace Ward 2, Oil City Dist. ",P.O. Box 519,,Oil City,LA,71061,318-994-6329,CADDO,H. P. Johnston,9369 Gay Ln.,,Oil City,LA,71061,318-995-0403,W,M,D,267,12/31/2014,01/01/2009,Mr. Johnston -Constable ,"Justice of the Peace Ward 2, Vivian Dist. ",P.O. Box 812,,Oil City,LA,71061,318-955-6438,CADDO,Tommy E. Poindexter,P. O. Box 812,,Oil City,LA,71061,318-995-6438,W,M,R,267,12/31/2014,01/01/2009,Mr. Poindexter -Constable ,"Justice of the Peace Ward 3, Blanchard Dist. ",P.O. Box 1394,,Blanchard,LA,71009,318-929-4612,CADDO,"""Mike"" Lowery",6916 N. Colony Dr.,,Shreveport,LA,71107-9552,318-929-3720,W,M,R,267,12/31/2014,01/01/2009,Mr. Lowery -Constable ,"Justice of the Peace Ward 3, Mooringsport D. ",P.O. Box 475,,Mooringsport,LA,71060,318-996-7523,CADDO,Dale G. Nix,P. O. Box 475,,Mooringsport,LA,71060-0475 ,318-996-7523,W,M,R,267,12/31/2014,01/01/2009,Mr. Nix -Constable ,Justice of the Peace Ward 5 ,"504 Travis St., Ste. 110",,Shreveport,LA,71101-5409,,CADDO,David O. Anderson,"7400 Glen Leaf Rd., Lot 137",,Shreveport,LA,71129-3716,318-688-3998,W,M,R,267,12/31/2014,01/01/2009,Mr. Anderson -Constable ,Justice of the Peace Ward 6 ,11795 Sparks Davis Rd.,,Keithville,LA,71047-7551,318-925-2719,CADDO,"T. A. ""Tom"" Hyer",11795 Sparks Davis Rd.,,Keithville,LA,71047-7551,318-925-2719,W,M,R,267,12/31/2014,01/01/2009,Mr. Hyer -Constable ,Justice of the Peace Ward 7 ,P.O. Box 92,,Keithville,LA,71047,318-925-2209,CADDO,John McGrew,917 Barron Rd.,,Keithville,LA,71047-7317,318-925-2209,W,M,R,267,12/31/2014,01/01/2009,Mr. McGrew -Constable ,Justice of the Peace Ward 8 ,10543 Norris Ferry Rd.,,Shreveport,LA,71106-8331,318-797-4014,CADDO,Eric Hatfield,P. O. Box 65054,,Shreveport,LA,71136,318-866-9577,W,M,R,267,12/31/2014,01/01/2009,Mr. Hatfield -Constable ,Justice of the Peace Ward 9 ,P.O. Box 193,,Hosston,LA,71043-0193 ,318-287-3976,CADDO,J. Perry Hart,P. O. Box 312,,Rodessa,LA,71069-0312 ,318-223-4302,W,M,R,267,12/31/2014,01/01/2009,Mr. Hart -Mayor ,Town of Blanchard ,P. O. Box 428,,Blanchard,LA,,318-929-7593,CADDO,"Johnny ""Bubba"" Digilormo",P.O. Box 1051,,Blanchard,LA,71009-1051,318-929-2020,W,,R,300,12/31/2010,01/01/2007,Mr. Digilormo -Mayor ,Town of Greenwood ,P. O. Box 195,,Greenwood,LA,,318-938-7261,CADDO,David L. Hanson,8387 Woodstock Dr.,,Greenwood,LA,71033,318-938-7647,W,,O,300,06/30/2012,07/01/2008,Mayor Hanson -Mayor ,Town of Mooringsport ,P. O. Box 9,,Mooringsport,LA,,318-996-7661,CADDO,Lynn R. Porter,402 Christian St.,,Mooringsport,LA,71060-8787,318-996-6071,W,F,R,300,12/31/2010,01/01/2007,Ms. Porter -Mayor ,Town of Oil City ,P. O. Box 520,,Oil City,LA,,318-995-6681,CADDO,"Charles ""Chip"" Dickey, Jr.",P. O. Box 373,,Oil City,LA,71061-0373 ,318-995-6243,W,M,O,300,12/31/2012,01/01/2009,Mayor Dickey -Mayor ,Town of Vivian ,112 W. Alabama,,Vivian,LA,,318-375-3856,CADDO,Stephen G. Taylor,1001 N. Pine St.,,Vivian,LA,71082,318-375-3239,W,M,,300,12/31/2010,01/01/2007,Mayor Taylor -Mayor ,Village of Belcher ,P. O. Box 206,,Belcher,LA,,318-378-4206,CADDO,Jennifer C. Fant,P.O. Box 251,,Belcher,LA,71004-3802,318-378-4206,W,F,R,300,12/31/2010,01/01/2007,Ms. Fant -Mayor ,Village of Gilliam ,P. O. Box 129,,Gilliam,LA,,318-296-4393,CADDO,Helen Adger,P.O. Box 247,,Gilliam,LA,71029-8761,318-296-4393,W,F,D,300,12/31/2010,01/01/2007,Mr. Adger -Mayor ,Village of Hosston ,P. O. Box 206,,Hosston,LA,,318-287-3225,CADDO,Dennis White,P. O. Box 356,,Hosston,LA,71043,318-287-3566,W,,O,300,12/31/2012,01/01/2009,Mayor White -Mayor ,Village of Ida ,P.O. Box 299,,Ida,LA,,318-284-3231,CADDO,"Clyde H. ""Smokie"" Maddox, Sr.",P. O. Box 268,,Ida,LA,71044,318-284-3496,W,M,R,300,12/31/2012,01/01/2009,Mayor Maddox -Mayor ,Village of Rodessa ,P. O. Box 336,,Rodessa,LA,,318-223-4211,CADDO,Paul W. Lockard,9939 Standard Oil Rd.,,Rodessa,LA,71069,318-464-1476,W,M,O,300,12/31/2012,01/01/2009,Mayor Lockard -Chief of Police ,Town of Blanchard ,P. O. Box 428,,Blanchard,LA,71009,318-929-7593,CADDO,Gary Presswood,P.O. Box 398,,Blanchard,LA,71109-0398 ,318-929-7955,W,M,D,305,12/31/2010,01/01/2007,Mr. Presswood -Chief of Police ,Town of Mooringsport ,P. O. Box 9,,Mooringsport,LA,71060,318-996-7661,CADDO,"Dale G. Nix, Jr.",P. O. Box 595,,Mooringsport,LA,71061,318-996-0801,W,M,R,305,12/31/2010,01/01/2007 -Chief of Police ,Town of Vivian ,112 W. Alabama,,Vivian,LA,71082,318-375-3856,CADDO,Sam Curry,10110 Upper State Line Rd.,,Vivian,LA,71082-9162,318-375-3827,W,M,D,305,12/31/2010,01/01/2007,Chief Curry -Chief of Police ,Village of Belcher ,P. O. Box 206,,Belcher,LA,71004,318-378-4206,CADDO,Tommy G. Hatcher,407 Self Rd.,,Belcher,LA,71004,318-378-4240,W,M,R,305,12/31/2010,01/01/2007 -Chief of Police ,Village of Gilliam ,P. O. Box 129,,Gilliam,LA,71029-0129 ,318-296-4393,CADDO,Deldecarleo M. Walker,P.O. Box 233,,Gilliam,LA,71029,318-402-3255,B,M,D,305,12/31/2010,01/01/2007,Mr. Walker -Chief of Police ,Village of Hosston ,P. O. Box 206,,Hosston,LA,71043,318-287-3225,CADDO,"""Whit"" Giles",P. O. Box 193,,Hosston,LA,71043-0193 ,318-287-3976,W,,O,305,12/31/2012,01/01/2009,Chief Giles -Chief of Police ,Village of Ida ,P.O. Box 299,,Ida,LA,71044,318-284-3231,CADDO,"David C. Austin, Jr.",P. O. Box 178,,Ida,LA,71044,318-284-3291,W,M,O,305,12/31/2012,01/01/2009,Chief Austin -Alderman at Large ,Town of Greenwood ,P. O. Box 195,,Greenwood,LA,71033,318-938-7261,CADDO,"Frank Stawasz, Jr.",8347 Kelly Ln.,,Greenwood,LA,71033-3348,318-938-1767,W,M,R,308,06/30/2012,07/01/2008,Mr. Stawasz -Alderman at Large ,Town of Vivian ,112 W. Alabama,,Vivian,LA,71082,318-375-3856,CADDO,"""Randy"" Slagle",308 W. Alabama Ave.,,Vivian,LA,71082-2606,318-375-3148,W,F,O,308,12/31/2010,01/01/2007,Mr. Slagle -Council Member at Large ,Town of Mooringsport ,P. O. Box 9,,Mooringsport,LA,71060,318-996-7661,CADDO,"Robert ""Bob"" Guth",P. O. Box 544,,Mooringsport,LA,71060,318-996-7253,W,M,O,308,12/31/2010,01/01/2007 -Council Member at Large ,Town of Mooringsport ,P. O. Box 9,,Mooringsport,LA,71060,318-996-7661,CADDO,William Moore,P. O. Box 313,,Mooringsport,LA,71060-0313 ,318-996-7289,W,M,R,308,12/31/2010,01/01/2007 -Alderman ,"District 1, Town of Oil City ",P. O. Box 520,,Oil City,LA,71061,318-995-6681,CADDO,Michael R. Hensley,"403 Walnut St., Apt. 29",,Oil City,LA,71060,318-995-6413,W,M,O,310,12/31/2012,01/01/2009,Mr. Hensley -Alderman ,"District 2, Town of Oil City ",P. O. Box 520,,Oil City,LA,71061,318-995-6681,CADDO,"""Donnie"" Jackson",P. O. Box 664,,Oil City,LA,71061-0664 ,318-995-0037,B,M,D,310,12/31/2012,01/01/2009,Mr. Jackson -Alderman ,"District 3, Town of Oil City ",P. O. Box 520,,Oil City,LA,71061,318-995-6681,CADDO,James T. Sims,P. O. Box 302,,Oil City,LA,71061-0302 ,318-995-5396,B,,D,310,12/31/2012,01/01/2009,Mr. Sims -Alderman ,"District 4, Town of Oil City ",P. O. Box 520,,Oil City,LA,71061,318-995-6681,CADDO,Sharon Emmons,P. O. Box 584,,Oil City,LA,71061-0584 ,318-995-7356,W,F,D,310,12/31/2012,01/01/2009,Ms. Emmons -Alderman ,"District 5, Town of Oil City ",P. O. Box 520,,Oil City,LA,71061,318-995-6681,CADDO,"James Clifton, Sr.",P. O. Box 451,,Oil City,LA,71061-0451 ,318-995-7325,W,M,D,310,12/31/2012,01/01/2009,Mr. Clifton -Alderman ,"District 1, Town of Greenwood ",P. O. Box 195,,Greenwood,LA,71033,318-938-7261,CADDO,Gary Cook,4908 Scott Dr.,,Greenwood,LA,71033-2315,318-938-7677,W,M,R,310,06/30/2012,07/01/2008,Mr. Cook -Alderman ,"District 2, Town of Greenwood ",P. O. Box 195,,Greenwood,LA,71033,318-938-7261,CADDO,Heidi NaQuin,7110 Waterwood Dr.,,Greenwood,LA,71033,318-938-9643,W,F,R,310,06/30/2012,08/24/2009,Ms. NaQuin -Alderman ,"District 3, Town of Greenwood ",P. O. Box 195,,Greenwood,LA,71033,318-938-7261,CADDO,Jewel Jaudon,7063 Winburn Dr.,,Greenwood,LA,71033-3215,318-938-9646,W,F,D,310,06/30/2012,07/01/2008,Ms. Jaudon -Alderman ,"District 4, Town of Greenwood ",P. O. Box 195,,Greenwood,LA,71033,318-938-7261,CADDO,"""Brad"" Edwardes",7425 Waterwood Dr.,,Greenwood,LA,71033-3370,318-938-9777,W,M,R,310,06/30/2012,07/01/2008,Mr. Edwardes -Alderman ,Town of Blanchard ,P. O. Box 428,,Blanchard,LA,71009,318-929-7593,CADDO,Nathan A. Ashby,P.O. Box 762,,Blanchard,LA,71009-0762 ,318-929-7368,W,M,,310,12/31/2010,01/01/2007,Mr. Ashby -Alderman ,Town of Blanchard ,P. O. Box 428,,Blanchard,LA,71009,318-929-7593,CADDO,Allison A. Jones,8339 Brookington Dr.,,Shreveport,LA,71107-8606,318-929-7360,W,F,D,310,12/31/2010,01/01/2007,Ms. Jones -Alderman ,Town of Blanchard ,P. O. Box 428,,Blanchard,LA,71009,318-929-7593,CADDO,Patsy A. Lee,P.O. Box 867,,Blanchard,LA,71109,318-929-4518,W,F,R,310,12/31/2010,01/01/2007,Ms. Lee -Alderman ,Town of Blanchard ,P. O. Box 428,,Blanchard,LA,71009,318-929-7593,CADDO,"Ross V. Prewett, III",4774 Fairway Hills Ave.,,Shreveport,LA,71107,318-929-9272,W,M,R,310,12/31/2010,01/01/2007,Mr. Prewett -Alderman ,Town of Blanchard ,P. O. Box 428,,Blanchard,LA,71009,318-929-7593,CADDO,"""Jimmy"" Whittington",4974 Beechwood Hills Dr.,,Shreveport,LA,71107-3440,318-929-1455,W,M,R,310,12/31/2010,01/01/2007,Mr. Whittington -Alderman ,Village of Belcher ,P. O. Box 206,,Belcher,LA,71004,318-378-4206,CADDO,"""Sandy"" Duncan",P. O. Box 155,,Belcher,LA,71004-0155 ,318-378-4342,W,F,D,310,12/31/2010,01/01/2007 -Alderman ,Village of Belcher ,P. O. Box 206,,Belcher,LA,71004,318-378-4206,CADDO,"Kathleen ""Kathy"" Jackson",P. O. Box 69,,Belcher,LA,71004-0069 ,318-378-4345,W,F,R,310,12/31/2010,01/01/2007 -Alderman ,Village of Belcher ,P. O. Box 206,,Belcher,LA,71004,318-378-4206,CADDO,David Strahan,P.O. Box 124,,Belcher,LA,71004,318-378-4376,W,M,D,310,12/31/2010,01/01/2007,Mr. Strahan -Alderman ,Village of Gilliam ,P. O. Box 129,,Gilliam,LA,71029-0129 ,318-296-4393,CADDO,Marilyn S. Adcock,P.O. Box 304,,Gilliam,LA,71029-8787,318-296-4204,W,F,D,310,12/31/2010,01/01/2007,Ms. Adcock -Alderman ,Village of Gilliam ,P. O. Box 129,,Gilliam,LA,71029-0129 ,318-296-4393,CADDO,Joyce Glass,P.O. Box 352,,Gilliam,LA,71029-8761,318-296-4250,W,,D,310,12/31/2010,01/01/2007,Ms. Glass -Alderman ,Village of Gilliam ,P. O. Box 129,,Gilliam,LA,71029-0129 ,318-296-4393,CADDO,Karen Logan,P.O. Box 159,,Gilliam,LA,71029-8762,318-296-4303,W,F,D,310,12/31/2010,01/01/2007,Ms. Logan -Alderman ,Village of Hosston ,P. O. Box 206,,Hosston,LA,71043,318-287-3225,CADDO,"Claude J. Clay, ",14775 Odom Rd.,,Hosston,LA,71043,318-464-1978,W,M,D,310,,02/15/2010 -Alderman ,Village of Hosston ,P. O. Box 206,,Hosston,LA,71043,318-287-3225,CADDO,Claude James Clay,P.O. Box 410,,Hosston,LA,71043,318-287-3975,,,,310,,11/02/2009,Mr. Clay -Alderman ,Village of Hosston ,P. O. Box 206,,Hosston,LA,71043,318-287-3225,CADDO,"Betty ""Susie"" Giles",P. O. Box 193,,Hosston,LA,71043-0193 ,318-287-3976,W,F,,310,12/31/2012,01/01/2009,Ms. Giles -Alderman ,Village of Hosston ,P. O. Box 206,,Hosston,LA,71043,318-287-3225,CADDO,Lydia Stewart,6830 Terri St.,,Hosston,LA,71043,318-287-3972,W,,R,310,12/31/2012,01/01/2009,Ms. Stewart -Alderman ,Village of Ida ,P.O. Box 299,,Ida,LA,71044,318-284-3231,CADDO,"Betty ""Biddie"" Dial",P. O. Box 183,,Ida,LA,71044-0183 ,318-284-3325,W,,D,310,12/31/2012,01/01/2009,Ms. Dial -Alderman ,Village of Ida ,P.O. Box 299,,Ida,LA,71044,318-284-3231,CADDO,"""Kenny"" Shaw",18687 Carolina Ave.,,Ida,LA,71044-8601,318-284-3820,W,M,,310,12/31/2012,01/01/2009,Mr. Shaw -Alderman ,Village of Ida ,P.O. Box 299,,Ida,LA,71044,318-284-3231,CADDO,Louis Thomas,P. O. Box 55,,Ida,LA,71044,318-284-3550,W,M,,310,12/31/2012,01/01/2009,Mr. Thomas -Alderman ,Village of Rodessa ,P. O. Box 336,,Rodessa,LA,71069,318-223-4211,CADDO,Nathan Bradshaw,P. O. Box 411,,Rodessa,LA,71069,318-223-4236,W,M,R,310,12/31/2012,01/01/2009,Mr. Bradshaw -Alderman ,Village of Rodessa ,P. O. Box 336,,Rodessa,LA,71069,318-223-4211,CADDO,David Lee Norman,P. O. Box 264,,Rodessa,LA,71069-0264 ,318-223-4632,B,M,,310,12/31/2012,01/01/2009,Mr. Norman -Alderman ,Village of Rodessa ,P. O. Box 336,,Rodessa,LA,71069,318-223-4211,CADDO,"""Rick"" Quillin",P. O. Box 193,,Rodessa,LA,71069-0193 ,318-223-4387,W,,O,310,12/31/2012,01/01/2009,Mr. Quillin -Alderman ,"Ward 1, Town of Vivian ",112 W. Alabama,,Vivian,LA,71082,318-375-3856,CADDO,"John ""Pete"" Shepard",305 E. Mary Ann St.,,Vivian,LA,71082-2129,318-375-5948,B,,D,310,12/31/2010,01/01/2007,Mr. Shepherd -Alderman ,"Ward 2, Town of Vivian ",112 W. Alabama,,Vivian,LA,71082,318-375-3856,CADDO,Johnny A. Cook,716 W. Georgia Ave.,,Vivian,LA,71082-3002,318-375-5050,W,M,R,310,12/31/2010,01/01/2007,Mr. Cook -Alderman ,"Ward 3, Town of Vivian ",112 W. Alabama,,Vivian,LA,71082,318-375-3856,CADDO,Steve B. Wilson,710 S. Spruce St.,,Vivian,LA,71082,318-375-3407,W,M,D,310,12/31/2010,01/01/2007,Mr. Wilson -Alderman ,"Ward 4, Town of Vivian ",112 W. Alabama,,Vivian,LA,71082,318-375-3856,CADDO,Raymond Earl Williams,421 Memory Ln.,,Vivian,LA,71082-3524,318-375-5730,B,M,D,310,12/31/2010,01/01/2007,Mr. Williams -Council Member ,"District 1, Town of Mooringsport ",P. O. Box 9,,Mooringsport,LA,71060,318-996-7661,CADDO,Joseph C. Hawkins,103 Jennings St.,,Mooringsport,LA,71060,318-617-9379,W,,R,310,12/31/2010,01/01/2007,Mr. Hawkins -Council Member ,"District 2, Town of Mooringsport ",P. O. Box 9,,Mooringsport,LA,71060,318-996-7661,CADDO,Larry Klepac,405 Evelyn St.,,Mooringsport,LA,71060-9756,318-518-2228,W,M,O,310,12/31/2010,01/01/2007,Mr. Klepac -Council Member ,"District 3, Town of Mooringsport ",P. O. Box 9,,Mooringsport,LA,71060,318-996-7661,CADDO,Cathy B. Cogley,P.O. Box 514,,Mooringsport,LA,71060-9792,318-218-9605,W,F,D,310,12/31/2010,01/01/2007,Ms. Cogley -DPEC Member ,at Large ,,,,LA,,,CALCASIEU,Sue Ball,721 Blackman St.,,Lake Charles,LA,70605,337-475-2233,W,F,D,054,02/20/2012,02/20/2008,Ms. Ball -DPEC Member ,at Large ,,,,LA,,,CALCASIEU,Frank Hyatt,P.O. Box 228,,Lake Charles,LA,70602,337-499-8000,W,M,D,054,02/20/2012,02/20/2008,Mr. Hyatt -DPEC Member ,at Large ,,,,LA,,,CALCASIEU,Craig Martin,2718 Readwood Dr.,,Sulphur,LA,70663,337-527-3994,W,M,D,054,02/20/2012,02/20/2008,Mr. Martin -DPEC Member ,at Large ,,,,LA,,,CALCASIEU,O. Lynn Speight,1214 Bayouwood Dr.,,Lake Charles,LA,70605,337-474-1661,W,F,D,054,02/20/2012,02/20/2008,Ms. Speight -DPEC Member ,at Large ,,,,LA,,,CALCASIEU,"""Mike"" Wright",3505 Lake St.,,Lake Charles,LA,70605,337-439-6930,W,M,D,054,02/20/2012,02/20/2008,Mr. Wright -DPEC Member ,District 1 ,,,,LA,,,CALCASIEU,Marilyn Cox,583 Santa Anna Dr.,,Lake Charles,LA,70611,337-855-6766,W,F,D,056,02/20/2012,02/20/2008,Ms. Cox -DPEC Member ,District 2 ,,,,LA,,,CALCASIEU,"""Winnie"" Fowler",1011 N. Simmons St.,,Lake Charles,LA,70601,337-439-5312,B,F,D,056,02/20/2012,02/20/2008,Ms. Fowler -DPEC Member ,District 3 ,,,,LA,,,CALCASIEU,Robert Lynch,312 Goss Rd.,,Westlake,LA,70669,337-497-1630,W,M,D,056,02/20/2012,02/20/2008,Mr. Lynch -DPEC Member ,District 4 ,,,,LA,,,CALCASIEU,Otis Walker,2309 11th St.,,Lake Charles,LA,70601,337-302-7072,B,M,D,056,02/20/2012,02/20/2008,Mr. Walker -DPEC Member ,District 5 ,,,,LA,,,CALCASIEU,Michael McHale,1528 Kirkman,,Lake Charles,LA,70601,337-990-0093,W,M,D,056,02/20/2012,02/20/2008,Mr. McHale -DPEC Member ,District 6 ,,,,LA,,,CALCASIEU,Dorothy Durrett Romero,959 Terry Ln.,,Lake Charles,LA,70605,337-478-1413,W,F,D,056,02/20/2012,02/20/2008,Ms. Romero -DPEC Member ,District 7 ,,,,LA,,,CALCASIEU,Yvonne P. LeMay,220 Vanessa Ave.,,Lake Charles,LA,70605,337-477-0971,W,F,D,056,02/20/2012,02/20/2008,Ms. LeMay -DPEC Member ,District 8 ,,,,LA,,,CALCASIEU,Mary Leach Werner,2420 Oak Alley Dr.,,Lake Charles,LA,70605,337-477-7320,W,F,D,056,02/20/2012,02/20/2008,Ms. Werner -DPEC Member ,District 9 ,,,,LA,,,CALCASIEU,Alvin Stevens,P.O. Box 2270,,Lake Charles,LA,70602,337-477-5842,B,M,D,056,02/20/2012,02/20/2008,Mr. Stevens -DPEC Member ,District 10 ,,,,LA,,,CALCASIEU,Eugene Bouquet,P.O. Box 1512,,Lake Charles,LA,70602,337-433-9900,W,M,D,056,02/20/2012,02/20/2008,Mr. Bouquet -DPEC Member ,District 11 ,,,,LA,,,CALCASIEU,"""Terry"" Fowler",3731 Paul White Rd.,,Lake Charles,LA,70611,337-855-3360,W,M,D,056,02/20/2012,02/20/2008,Mr. Fowler -DPEC Member ,District 12 ,,,,LA,,,CALCASIEU,,,,,,,,,,,056 -DPEC Member ,District 13 ,,,,LA,,,CALCASIEU,"Charles ""Chuck"" Bennett",127 Roberta Dr.,,Sulphur,LA,70663,337-528-9452,W,M,D,056,02/20/2012,02/20/2008,Mr. Bennett -DPEC Member ,District 14 ,,,,LA,,,CALCASIEU,Lance Thibodeaux,525 Evans Rd.,,Sulphur,LA,70663,337-263-3839,W,M,D,056,02/20/2012,02/20/2008 -DPEC Member ,District 15 ,,,,LA,,,CALCASIEU,,,,,,,,,,,056 -RPEC Member ,at Large ,,,,LA,,,CALCASIEU,Darryl DeMaris,1244 S. Bayouwood Dr.,,Lake Charles,LA,70605,337-475-0319,,,R,064,02/20/2012,02/20/2008,Mr. Demaris -RPEC Member ,at Large ,,,,LA,,,CALCASIEU,Charles A. Enright,401 University Dr.,,Lake Charles,LA,70605,337-477-0335,W,M,R,064,02/20/2012,02/20/2008,Mr. Enright -RPEC Member ,at Large ,,,,LA,,,CALCASIEU,David Johnston,1244 S. Bayouwood Dr.,,Lake Charles,LA,70605,443-285-9111,,M,R,064,02/20/2012,02/20/2008,Mr. Johnston -RPEC Member ,District 1 ,,,,LA,,,CALCASIEU,,,,,,,,,,,066 -RPEC Member ,District 2 ,,,,LA,,,CALCASIEU,,,,,,,,,,,066 -RPEC Member ,District 3 ,,,,LA,,,CALCASIEU,,,,,,,,,,,066 -RPEC Member ,District 4 ,,,,LA,,,CALCASIEU,,,,,,,,,,,066 -RPEC Member ,District 5 ,,,,LA,,,CALCASIEU,,,,,,,,,,,066 -RPEC Member ,District 6 ,,,,LA,,,CALCASIEU,,,,,,,,,,,066 -RPEC Member ,District 7 ,,,,LA,,,CALCASIEU,John Hoffpauir,4323 Hearth St.,,Lake Charles,LA,70605-4433,337-474-9644,W,M,R,066,02/20/2012,02/20/2008,Mr. Hoffpauir -RPEC Member ,District 8 ,,,,LA,,,CALCASIEU,Jo Ann Colligan,2829 N. Locke Point,,Lake Charles,LA,70605,337-884-8080,W,F,R,066,02/20/2012,02/20/2008,Ms. Colligan -RPEC Member ,District 9 ,,,,LA,,,CALCASIEU,,,,,,,,,,,066 -RPEC Member ,District 10 ,,,,LA,,,CALCASIEU,,,,,,,,,,,066 -RPEC Member ,District 11 ,,,,LA,,,CALCASIEU,"""Tim"" Jones",1831 N. Claiborne St.,,Sulphur,LA,70663,337-528-1168,B,M,R,066,02/20/2012,02/20/2008,Mr. Jones -RPEC Member ,District 12 ,,,,LA,,,CALCASIEU,Shaina Farque,7285 Choupique Rd.,,Sulphur,LA,70665,337-583-4530,W,F,R,066,02/20/2012,02/20/2008,Ms. Farque -RPEC Member ,District 13 ,,,,LA,,,CALCASIEU,,,,,,,,,,,066 -RPEC Member ,District 14 ,,,,LA,,,CALCASIEU,,,,,,,,,,,066 -RPEC Member ,District 15 ,,,,LA,,,CALCASIEU,,,,,,,,,,,066 -Sheriff ,,P. O. Box 3722,,Lake Charles,LA,70602,337-491-3715,CALCASIEU,"""Tony"" Mancuso",P. O. Box 3722,,Lake Charles,LA,70602,337-477-0790,W,M,D,225,06/30/2012,07/01/2008,Sheriff Mancuso -Clerk of Court ,,P. O. Box 1030,,Lake Charles,LA,70602,337-437-3550,CALCASIEU,Lynn Jones,P.O. Box 1030,,Lake Charles,LA,70602,337-436-7864,W,M,D,230,06/30/2012,07/01/2008,Mr. Jones -Assessor ,,P. O. Box 1346,,Lake Charles,LA,70602,337-721-3000,CALCASIEU,"Richard Joseph Cole, Jr.",515 Hickok St.,,Sulphur,LA,70663,337-721-3005,W,M,D,235,12/31/2012,01/01/2009,Mr. Cole -Coroner ,,707-BE. Prien Lake Rd.,,Lake Charles,LA,70601,337-477-7537,CALCASIEU,Terry Welke,707-B E. Prien Lake Rd.,,Lake Charles,LA,70601,337-477-7537,W,M,,240,03/25/2012,03/24/2008,Mr. Welke -Police Juror ,District 1 ,P. O. Drawer 3287,,Lake Charles,LA,,337-721-3500,CALCASIEU,Shannon Spell,413 Elder Dr.,,Lake Charles,LA,70611,337-217-0209,W,M,R,245,01/08/2012,01/14/2008,Ms. Spell -Police Juror ,District 2 ,P. O. Drawer 3287,,Lake Charles,LA,70602-3287,337-721-3500,CALCASIEU,Calvin Collins,2035 Woodring St.,,Lake Charles,LA,70601,337-436-8068,B,M,D,245,01/08/2012,01/14/2008,Mr. Collins -Police Juror ,District 3 ,P. O. Drawer 3287,,Lake Charles,LA,70602-3287,337-721-3500,CALCASIEU,"Elizabeth Conway ""Tbet"" Griffin",903 North Jake,,Lake Charles,LA,70601,337-436-2779,B,F,D,245,01/08/2012,01/14/2008,Ms. Griffin -Police Juror ,District 4 ,P. O. Drawer 3287,,Lake Charles,LA,70602-3287,337-721-3500,CALCASIEU,Claude A. Syas,2506 13th St.,,Lake Charles,LA,70601,337-474-9641,B,M,D,245,01/08/2012,01/14/2008,Mr. Syas -Police Juror ,District 5 ,P. O. Drawer 3287,,Lake Charles,LA,70602-3287,337-721-3500,CALCASIEU,Charles S. Mackey,1215 Ninth St.,,Lake Charles,LA,70601,337-433-5877,W,M,R,245,01/08/2012,01/14/2008,Mr. Mackey -Police Juror ,District 6 ,P. O. Drawer 3287,,Lake Charles,LA,70602-3287,337-721-3500,CALCASIEU,Dennis Scott,P.O. Box 7463,,Lake Charles,LA,70605,337-475-1023,W,M,R,245,01/08/2012,01/14/2008,Mr. Scott -Police Juror ,District 7 ,P. O. Drawer 3287,,Lake Charles,LA,70602-3287,337-721-3500,CALCASIEU,Chris Landry,4336 Oaklawn Dr.,,Lake Charles,LA,70605,337-478-4020,W,M,D,245,01/08/2012,01/14/2008,Mr. Landry -Police Juror ,District 8 ,P. O. Drawer 3287,,Lake Charles,LA,70602-3287,337-721-3500,CALCASIEU,Guy Brame,1908 Linden Ln.,,Lake Charles,LA,70605,337-474-7155,W,M,R,245,01/08/2012,01/14/2008,Mr. Brame -Police Juror ,District 9 ,P. O. Drawer 3287,,Lake Charles,LA,70602-3287,337-721-3500,CALCASIEU,Kevin Guidry,4045 Briarfield Ln.,,Lake Charles,LA,70607,337-477-4367,B,M,D,245,01/08/2012,01/14/2008,Mr. Guidry -Police Juror ,District 10 ,P. O. Drawer 3287,,Lake Charles,LA,70602-3287,337-721-3500,CALCASIEU,"""Tony"" Stelly",P. O. Box 439 Rd.,,Iowa,LA,70647,337-582-3295,,,D,245,01/08/2012,01/14/2008,Mr. Stelly -Police Juror ,District 11 ,P. O. Drawer 3287,,Lake Charles,LA,70602-3287,337-721-3500,CALCASIEU,"""Sandy"" Treme",920 N. Overton St.,,DeQuincy,LA,70633,337-786-8496,W,F,D,245,01/08/2012,01/14/2008,Mr. Treme -Police Juror ,District 12 ,P. O. Drawer 3287,,Lake Charles,LA,70602-3287,337-721-3500,CALCASIEU,Ellis Hassien,4349 Pete Seay Rd.,,Sulphur,LA,70665,337-583-8272,W,M,R,245,01/08/2012,01/14/2008,Mr. Hassien -Police Juror ,District 13 ,P. O. Drawer 3287,,Lake Charles,LA,70602-3287,337-721-3500,CALCASIEU,Francis Andrepont,1302 Fatima,,Sulphur,LA,70663,337-527-5644,W,M,D,245,01/08/2012,01/14/2008,Mr. Andrepont -Police Juror ,District 14 ,P. O. Drawer 3287,,Lake Charles,LA,70602-3287,337-721-3500,CALCASIEU,"""Hal"" McMillin",1423 N. Beech St.,,Westlake,LA,70669,337-433-1140,W,M,D,245,01/08/2012,01/14/2008,Mr. McMillin -Police Juror ,District 15 ,P. O. Drawer 3287,,Lake Charles,LA,70602-3287,337-721-3500,CALCASIEU,"""Les"" Farnum",312 Oakley Dr.,,Sulphur,LA,70663,337-625-8569,W,M,D,245,01/08/2012,01/14/2008,Mr. Farnum -City Judge ,"City Court, City of Sulphur ",802 S. Huntington St.,,Sulphur,LA,70663,337-527-7006,CALCASIEU,"""Charlie"" Schrumpf",420 Tamarack St.,,Sulphur,LA,70663,337-528-3532,W,M,D,250,12/31/2014,01/01/2009,Judge Schrumpf -City Judge ,"City Court, Division A, City of Lake Charles ",P. O. Box 1664,,Lake Charles,LA,70602,337-491-1305,CALCASIEU,Thomas P. Quirk,6917 Windmill Ln.,,Lake Charles,LA,70605,337-491-1305,W,M,D,250,12/31/2014,01/01/2009,Judge Quirk -City Judge ,"City Court, Division B, City of Lake Charles ",P. O. Box 1664,,Lake Charles,LA,70602,337-491-1305,CALCASIEU,John S. Hood,3006 Bayou Bend Rd.,,Lake Charles,LA,70605,337-515-6706,W,M,D,250,12/31/2014,01/01/2009,Judge Hood -City Marshal ,"City Court, City of Lake Charles ",P. O. Box 1664,,Lake Charles,LA,70602,337-491-1304,CALCASIEU,"""Joey"" Alcede",6 River Ln.,,Lake Charles,LA,70605,337-478-8878,W,M,D,250,12/31/2014,01/01/2009,Marshal Alcede -City Marshal ,"City Court, City of Sulphur ",802 S. Huntington St.,,Sulphur,LA,70663,337-527-7006,CALCASIEU,"""Billy"" Guidry",1110 Taylor St.,,Sulphur,LA,70663,337-527-8552,W,M,D,250,12/31/2014,01/01/2009,Marshal Guidry -Member of School Board ,District 1 ,1724 Kirkman St.,,Lake Charles,LA,70601,337-491-1600,CALCASIEU,"R. L. Webb, Jr.",6751 Joe Spears Rd.,,Iowa,LA,70647,337-436-2903,W,M,D,255,12/31/2010,01/01/2007,Mr. Webb -Member of School Board ,District 2 ,1724 Kirkman St.,,Lake Charles,LA,70601,337-491-1600,CALCASIEU,"Fredman ""Fred"" Hardy",2824 Donatiel St.,,Lake Charles,LA,70601,337-433-6988,B,M,D,255,12/31/2010,01/01/2007,Mr. Hardy -Member of School Board ,District 3 ,1724 Kirkman St.,,Lake Charles,LA,70601,337-491-1600,CALCASIEU,Clara F. Duhon,614 Oleo St.,,Lake Charles,LA,70601,337-439-6905,B,F,D,255,12/31/2010,01/01/2007,Mr. Duhon -Member of School Board ,District 4 ,1724 Kirkman St.,,Lake Charles,LA,70601,337-491-1600,CALCASIEU,"""Annette"" Ballard",2460 Talouse Ln.,,Lake Charles,LA,70605,337-477-6345,W,F,D,255,12/31/2010,01/01/2007,Ms. Ballard -Member of School Board ,District 5 ,1724 Kirkman St.,,Lake Charles,LA,70601,337-491-1600,CALCASIEU,Dale Bernard,1028 Iberville,,Lake Charles,LA,70607,337-477-3961,W,M,D,255,12/31/2010,01/01/2007,Mr. Bernard -Member of School Board ,District 6 ,1724 Kirkman St.,,Lake Charles,LA,70601,337-491-1600,CALCASIEU,"""Bill"" Jongbloed",2505 Karen Ln.,,Lake Charles,LA,70605,337-478-4909,W,M,R,255,12/31/2010,01/01/2007,Mr. Jongbloed -Member of School Board ,District 7 ,1724 Kirkman St.,,Lake Charles,LA,70601,337-491-1600,CALCASIEU,"Mack Dellafosse, Jr.",1917 19th St.,,Lake Charles,LA,70601,337-477-6019,B,M,D,255,12/31/2010,01/01/2007,Mr. Dellafosse -Member of School Board ,District 8 ,1724 Kirkman St.,,Lake Charles,LA,70601,337-491-1600,CALCASIEU,"James W. ""Jimmy"" Pitre",4500 Highland Dr.,,Lake Charles,LA,70605,337-477-3032,W,M,R,255,12/31/2010,01/01/2007,Mr. Pitre -Member of School Board ,District 9 ,1724 Kirkman St.,,Lake Charles,LA,70601,337-491-1600,CALCASIEU,"Randall ""Randy"" Burleigh",1711 Hollis Rd.,,Westlake,LA,70669,337-439-8416,W,M,D,255,12/31/2010,01/01/2007,Mr. Burleigh -Member of School Board ,District 10 ,1724 Kirkman St.,,Lake Charles,LA,70601,337-491-1600,CALCASIEU,"James ""Jim"" Karr",P.O. Box 716,,DeQuincy,LA,70633,337-786-2568,W,M,D,255,12/31/2010,01/01/2007,Mr. Karr -Member of School Board ,District 11 ,1724 Kirkman St.,,Lake Charles,LA,70601,337-491-1600,CALCASIEU,Chad Guidry,975 Miss Daisy Dr.,,Sulphur,LA,70665,337-558-6056,W,M,R,255,12/31/2010,01/01/2007,Mr. Guidry -Member of School Board ,District 12 ,1724 Kirkman St.,,Lake Charles,LA,70601,337-491-1600,CALCASIEU,Joe Andrepont,1317 Bernadette Dr.,,Sulphur,LA,70663,337-527-3652,W,M,D,255,12/31/2010,01/01/2007,Mr. Andrepont -Member of School Board ,District 13 ,1724 Kirkman St.,,Lake Charles,LA,70601,337-491-1600,CALCASIEU,"William ""Billy"" Breaux",1305 Peach Tree Rd.,,Sulphur,LA,70663,337-625-9861,W,M,R,255,12/31/2010,01/01/2007,Mr. Breaux -Member of School Board ,District 14 ,1724 Kirkman St.,,Lake Charles,LA,70601,337-491-1600,CALCASIEU,Elray Victorian,2722 Walden Dr.,,Lake Charles,LA,70607,337-474-3664,B,M,D,255,12/31/2010,01/01/2007,Mr. Victorian -Member of School Board ,District 15 ,1724 Kirkman St.,,Lake Charles,LA,70601,337-491-1600,CALCASIEU,Bryan LaRocque,1814 Hollow Cove Ln.,,Lake Charles,LA,70611,337-855-9598,W,M,R,255,12/31/2010,01/01/2007,Mr. LaRocque -Justice of the Peace ,Justice of the Peace Ward 1 ,1318 Idlebrook Dr.,,Lake Charles,LA,70611,337-855-3496,CALCASIEU,Ashton Richard,1135 W. Bristol Dr.,,Lake Charles,LA,70611,337-855-3496,W,M,R,265,12/31/2014,01/01/2009,Mr. Richard -Justice of the Peace ,Justice of the Peace Ward 2 ,P. O. Box 4,,Hayes,LA,70646,337-622-3417,CALCASIEU,Percy Aucoin,P. O. Box 4,,Hayes,LA,70646,337-622-3417,W,M,D,265,12/31/2014,01/01/2009,Mr. Aucoin -Justice of the Peace ,Justice of the Peace Ward 5 ,4954-B Alligator Park Rd.,,Starks,LA,70661,337-743-5318,CALCASIEU,Gerald A. Fountain,4954 B Alligator Park Rd.,,Starks,LA,70661,337-743-5318,W,M,D,265,12/31/2014,01/01/2009,Mr. Fountain -Justice of the Peace ,Justice of the Peace Ward 6 ,1001 Myrtle St.,,DeQuincy,LA,70633,337-786-4000,CALCASIEU,"Thomas ""Tom"" Threet",P. O. Box 1002,,DeQuincy,LA,70633,337-274-0820,W,M,R,265,12/31/2014,01/01/2009,Mr. Threet -Justice of the Peace ,Justice of the Peace Ward 7 ,2259 Custer Dr.,,Vinton,LA,70668,337-589-7844,CALCASIEU,Danny Landry,2259 Custer Dr.,,Vinton,LA,70668,337-589-7844,W,M,D,265,12/31/2014,01/01/2009,Mr. Landry -Justice of the Peace ,Justice of the Peace Ward 8 ,6581 Jerry Hebert Rd.,,Lake Charles,LA,70615,337-582-3180,CALCASIEU,"Norman ""Butch"" Ryan",4267 Hecker Rd.,,Iowa,LA,70647,337-582-3324,W,M,D,265,12/31/2014,01/01/2009,Mr. Ryan -Constable ,Justice of the Peace Ward 1 ,1207 Cheyenne Dr.,,Lake Charles,LA,70611,337-855-4065,CALCASIEU,Louis Michiels,1207 Cheyenne Dr.,,Lake Charles,LA,70611,337-855-4065,W,M,R,267,12/31/2014,01/01/2009,Mr. Michiels -Constable ,Justice of the Peace Ward 2 ,P.O. Box 89,,Hayes,LA,70646,337-622-3423,CALCASIEU,"Roland ""Perch"" Bertrand",P. O. Box 89,,Hayes,LA,70646,337-622-3423,W,M,D,267,12/31/2014,01/01/2009,Mr. Bertrand -Constable ,Justice of the Peace Ward 5 ,1184 Greenmoore Rd.,,Starks,LA,70661,337-743-6201,CALCASIEU,Arnold L. Smith,1184 Green Moore Rd.,,Starks,LA,70661,337-703-6201,W,M,D,267,12/31/2014,01/01/2009,Mr. Smith -Constable ,Justice of the Peace Ward 6 ,1292 Stephen Rd.,,DeQuincy,LA,70633,337-786-2589,CALCASIEU,Rickey Brummett,P. O. Box 1125,,DeQuincy,LA,70633,337-786-6061,W,M,D,267,12/31/2014,01/01/2009,Mr. Brummett -Constable ,Justice of the Peace Ward 7 ,1618 West St.,,Vinton,LA,70668,337-589-0036,CALCASIEU,Wayne Doucette,1517 Eddy St.,,Vinton,LA,70668,337-589-3275,W,M,D,267,12/31/2014,01/01/2009,Mr. Doucette -Constable ,Justice of the Peace Ward 8 ,6606 Jerry Hebert Rd.,,Lake Charles,LA,70615,337-582-3411,CALCASIEU,Orgy J. Broussard,6606 Jerry Hebert Rd.,,Lake Charles,LA,70615,337-582-3411,W,M,D,267,12/31/2014,01/01/2009,Mr. Broussard -Mayor ,City of DeQuincy ,P. O. Box 968,,DeQuincy,LA,,337-786-8241,CALCASIEU,"""Lawrence"" Henagan",116 Chavis Sq.,,DeQuincy,LA,70633,337-786-2292,W,M,D,300,12/31/2010,01/01/2007,Mr. Henagan -Mayor ,City of Lake Charles ,P. O. Box 900,,Lake Charles,LA,,337-491-1201,CALCASIEU,"""Randy"" Roach",161 E. Greenway St.,,Lake Charles,LA,70605,337-478-7763,W,M,D,300,06/30/2013,07/01/2009,Mayor Roach -Mayor ,City of Sulphur ,P. O. Box 1309,,Sulphur,LA,,337-527-4500,CALCASIEU,"""Ron"" LeLeux",333 Picard Rd.,,Sulphur,LA,70663,337-527-7886,W,M,D,300,05/18/2010,05/16/2006,Mayor LeLeux -Mayor ,City of Westlake ,P. O. Drawer 700,,Westlake,LA,,337-433-0691,CALCASIEU,"""Danny"" Cupit",916 Live Oak St.,,Westlake,LA,70669,337-433-4478,W,M,D,300,12/31/2010,02/19/2007,Mayor Cupit -Mayor ,Town of Iowa ,P. O. Box 1707,,Iowa,LA,,337-582-3535,CALCASIEU,C. J. Scheufens,P.O. Box 335,,Iowa,LA,70647,337-582-6691,W,M,D,300,12/31/2010,01/01/2007,Mayor Scheufens -Mayor ,Town of Vinton ,1200 Horridge St.,,Vinton,LA,,337-589-7453,CALCASIEU,Kenneth O. Stinson,1403 Horridge St.,,Vinton,LA,70668,337-589-3962,W,M,D,300,06/30/2013,07/01/2009,Mayor Stinson -Chief of Police ,City of Westlake ,P. O. Box 700,,Westlake,LA,70669,337-433-0691,CALCASIEU,Jeremy Cryer,421 McKinley St.,,Westlake,LA,70669,337-497-0708,W,M,O,305,12/31/2010,01/01/2007,Chief Cryer -Chief of Police ,Town of Iowa ,P. O. Box 1707,,Iowa,LA,70647,337-582-3535,CALCASIEU,"Howard ""Keith"" Vincent",P.O. Box 955,,Iowa,LA,70647,337-582-7681,W,M,D,305,12/31/2010,01/01/2007,Mr. Vincent -Chief of Police ,Town of Vinton ,1200 Horridge St.,,Vinton,LA,70668,337-589-7453,CALCASIEU,Ricky Fox,1903 Fontenot St.,,Vinton,LA,70668,337-589-7197,W,M,D,305,06/30/2013,07/01/2009,Chief Fox -Councilman at Large ,City of DeQuincy ,P. O. Box 968,,DeQuincy,LA,70633,337-786-8241,CALCASIEU,Denise Maddox,115 Boise St.,,Dequincy,LA,70633,337-786-4378,W,F,D,308,12/31/2010,01/01/2007,Ms. Maddox -Council Member ,"District A, Town of Iowa ",P. O. Box 1707,,Iowa,LA,70647,337-582-3535,CALCASIEU,"Jerry R. ""Lap"" Lapearous",P.O. Box 172,,Iowa,LA,70647,337-582-3648,W,M,D,310,12/31/2010,01/01/2007,Mr. Lapearous -Council Member ,"District B, Town of Iowa ",P. O. Box 1707,,Iowa,LA,70647,337-582-3535,CALCASIEU,Larry Hardy,100 Harper St.,,Iowa,LA,70647,337-582-6665,W,M,R,310,12/31/2010,01/01/2007,Mr. Hardy -Council Member ,"District C, Town of Iowa ",P. O. Box 1707,,Iowa,LA,70647,337-582-3535,CALCASIEU,Calvin Caesar,P.O. Box 190,,Iowa,LA,70647,337-263-0563,B,M,D,310,12/31/2010,01/01/2007,Mr. Ceasar -Council Member ,"District D, Town of Iowa ",P. O. Box 1707,,Iowa,LA,70647,337-582-3535,CALCASIEU,"Thomas ""Tommy"" Talbot",P.O. Box 834,,Iowa,LA,70647,337-582-3267,W,M,D,310,12/31/2010,01/01/2007,Mr. Talbot -Council Member ,"District E, Town of Iowa ",P. O. Box 1707,,Iowa,LA,70647,337-582-3535,CALCASIEU,Gerald Guidry,P.O. Box 259,,Iowa,LA,70647,337-582-3217,W,M,D,310,12/31/2010,01/01/2007,Mr. Guidry -Council Member ,"Division A, City of Westlake ",P. O. Box 700,,Westlake,LA,70669,337-433-0691,CALCASIEU,John M. Cradure,1308 E. Holly Hill Circle,,Westlake,LA,70669,337-497-0634,W,M,D,310,12/31/2010,01/01/2007 -Council Member ,"Division B, City of Westlake ",,,,LA,,,CALCASIEU,Lori Peterson,P.O. Box 623,,Westlake,LA,70669,337-433-6836,W,F,R,310,12/31/2010,05/15/2007,Ms. Peterson -Council Member ,"Division C, City of Westlake ",,,,LA,,,CALCASIEU,"""Wally"" Anderson",1316 W. Holly Circle,,Westlake,LA,70669,337-436-2632,W,M,D,310,12/31/2010,01/01/2007,Mr. Anderson -Council Member ,"Division D, City of Westlake ",,,,LA,,,CALCASIEU,"""Dan"" Racca",1324 Hilma St.,,Westlake,LA,70669,337-439-8519,W,M,D,310,12/31/2010,01/01/2007,Mr. Racca -Council Member ,"Division E, City of Westlake ",,,,LA,,,CALCASIEU,"""Bob"" Hardey",2115 Linda Dr.,,Westlake,LA,70669,337-436-8961,W,M,D,310,12/31/2010,01/01/2007,Mr. Hardey -Councilman ,"District 1, City of DeQuincy ",P. O. Box 968,,DeQuincy,LA,70633,337-786-8241,CALCASIEU,Lynne Treme,P.O. Box 450,,DeQuincy,LA,70633,337-786-4807,W,F,D,310,12/31/2010,01/01/2007,Mr. Treme -Councilman ,"District 1, City of Sulphur ",P. O. Box 1309,,Sulphur,LA,70664-1309,337-527-4500,CALCASIEU,"""Dru"" Beglis Ellender",1100 E Carlton,,Sulphur,LA,70663,337-528-2468,W,F,D,310,05/18/2010,05/16/2006,Ms. Ellender -Councilman ,"District 1, City of Sulphur ",P. O. Box 1309,,Sulphur,LA,70664-1309,337-527-4500,CALCASIEU,"Drusilla ""Dru"" Ellender, ",1100 E. Carlton St.,,Sulphur,LA,70663-1324,337-528-2468,W,F,D,310 -Councilman ,"District 2, City of DeQuincy ",P. O. Box 968,,DeQuincy,LA,70633,337-786-8241,CALCASIEU,W. Tracey Brown,119 Boise St.,,Dequincy,LA,70633,337-786-5529,W,M,D,310,12/31/2010,01/01/2007,Mr. Brown -Councilman ,"District 2, City of Sulphur ",P. O. Box 1309,,Sulphur,LA,70664-1309,337-527-4500,CALCASIEU,"Michael ""Mike"" Koonce",403 Navarre,,Sulphur,LA,70663,337-527-7429,W,M,D,310,05/18/2010,05/16/2006,Mr. Koonce -Councilman ,"District 2, City of Sulphur ",P. O. Box 1309,,Sulphur,LA,70664-1309,337-527-4500,CALCASIEU,"Michael ""Mike"" Koonce, ",403 Navarre St.,,Sulphur,LA,70663-6641,337-540-1272,W,M,D,310 -Councilman ,"District 3, City of DeQuincy ",P. O. Box 968,,DeQuincy,LA,70633,337-786-8241,CALCASIEU,Judy Landry,P.O. Box 843,,Dequincy,LA,70633,337-786-7197,W,F,D,310,12/31/2010,01/01/2007,Ms. Landry -Councilman ,"District 3, City of Sulphur ",P. O. Box 1309,,Sulphur,LA,70664-1309,337-527-4500,CALCASIEU,"""Chris"" Duncan",1509 Melanie,,Sulphur,LA,70664,337-527-1033,W,M,R,310,05/18/2010,05/16/2006,Mr. Duncan -Councilman ,"District 4, City of DeQuincy ",P. O. Box 968,,DeQuincy,LA,70633,337-786-8241,CALCASIEU,Andrea Coleman,222 Jefferson St.,,DeQuincy,LA,70633,337-786-4532,B,F,D,310,12/31/2010,01/01/2007,Ms. Coleman -Councilman ,"District 4, City of Sulphur ",P. O. Box 1309,,Sulphur,LA,70664-1309,337-527-4500,CALCASIEU,"Joseph ""Randy"" Favre, ",2011 Marge Ln.,,Sulphur,LA,70663-5223,337-625-2558,W,M,R,310 -Councilman ,"District 4, City of Sulphur ",P. O. Box 1309,,Sulphur,LA,70664-1309,337-527-4500,CALCASIEU,Nancy Clifton Tower,520 N. Lebanon St.,,Sulphur,LA,70663,337-625-7379,W,F,R,310,05/18/2010,05/16/2006,Ms. Tower -Councilman ,"District 5, City of Sulphur ",P. O. Box 1309,,Sulphur,LA,70664-1309,337-527-4500,CALCASIEU,Stuart Moss,14 Mulberry,,Lake Charles,LA,70602,337-625-5006,W,M,D,310,05/18/2010,05/16/2006,Mr. Moss -Councilman ,"District 5, City of Sulphur ",P. O. Box 1309,,Sulphur,LA,70664-1309,337-527-4500,CALCASIEU,"Stuart Moss, ",11 Mayflower St.,,Sulphur,LA,70663-5515,337-625-5006,W,M,D,310 -Councilman ,"District A, City of Lake Charles ",P. O. Box 900,,Lake Charles,LA,70602-0900 ,337-491-1201,CALCASIEU,"Marshall Simien, Jr.",2131 Fitzenreiter Rd.,,Lake Charles,LA,70601,337-436-7895,B,M,D,310,06/30/2013,07/01/2009,Mr. Simien -Councilman ,"District B, City of Lake Charles ",P. O. Box 900,,Lake Charles,LA,70602-0900 ,337-491-1201,CALCASIEU,Luvertha August,2010 E. Mill St.,,Lake Charles,LA,70601,337-439-5135,B,F,D,310,06/30/2013,07/01/2009,Ms. August -Councilman ,"District C, City of Lake Charles ",P. O. Box 900,,Lake Charles,LA,70602-0900 ,337-491-1201,CALCASIEU,Rodney Geyen,1531 Sixth Ave.,,Lake Charles,LA,70601,337-433-4018,B,M,D,310,06/30/2013,07/01/2009,Mr. Geyen -Councilman ,"District D, City of Lake Charles ",P. O. Box 900,,Lake Charles,LA,70602-0900 ,337-491-1201,CALCASIEU,John Ieyoub,2018 Charvais Dr.,,Lake Charles,LA,70601,337-433-1733,W,M,R,310,06/30/2013,07/01/2009,Mr. Ieyoub -Councilman ,"District E, City of Lake Charles ",P. O. Box 900,,Lake Charles,LA,70602-0900 ,337-491-1201,CALCASIEU,Stuart Weatherford,1508 W. Sale St.,,Lake Charles,LA,70605,337-474-6465,W,M,R,310,06/30/2013,07/01/2009,Mr. Weatherford -Councilman ,"District F, City of Lake Charles ",P. O. Box 900,,Lake Charles,LA,70602-0900 ,337-491-1201,CALCASIEU,Dana Carl Jackson,1705 Illinois St.,,Lake Charles,LA,70607,337-478-3633,W,M,D,310,06/30/2013,07/01/2009,Mr. Jackson -Councilman ,"District G, City of Lake Charles ",P. O. Box 900,,Lake Charles,LA,70602-0900 ,337-491-1201,CALCASIEU,Mark Eckard,4502 Autumnwood Ln.,,Lake Charles,LA,70605,337-474-3976,W,M,R,310,06/30/2013,07/01/2009,Mr. Eckard -Councilman ,Town of Vinton ,1200 Horridge St.,,Vinton,LA,70668,337-589-7453,CALCASIEU,Bliss Bujard,1414 Horridge St.,,Vinton,LA,70668,337-589-5402,W,M,R,310,06/30/2013,07/01/2009,Mr. Bujard -Councilman ,Town of Vinton ,1200 Horridge St.,,Vinton,LA,70668,337-589-7453,CALCASIEU,Harold R. Douga,1423 Grace Ave.,,Vinton,LA,70668,337-589-3905,W,M,D,310,06/30/2013,07/01/2009,Mr. Douga -Councilman ,Town of Vinton ,1200 Horridge St.,,Vinton,LA,70668,337-589-7453,CALCASIEU,"""B. B."" Loyd",1708 Horridge St.,,Vinton,LA,70668,337-589-4245,B,M,D,310,06/30/2013,07/01/2009,Mr. Loyd -Councilman ,Town of Vinton ,1200 Horridge St.,,Vinton,LA,70668,337-589-7453,CALCASIEU,Kevin Merchant,1709 Stevenson St.,,Vinton,LA,70668,337-589-6702,W,M,R,310,06/30/2013,07/01/2009,Mr. Merchant -Councilman ,Town of Vinton ,1200 Horridge St.,,Vinton,LA,70668,337-589-7453,CALCASIEU,Paul Patin,P.O. Box 238,,Vinton,LA,70668,337-589-7639,W,M,D,310,06/30/2013,07/01/2009,Mr. Patin -DPEC Member ,at Large ,,,,LA,,,CALDWELL,Maxie McCarty,P.O. Box 520,,Grayson,LA,71435,318-649-8681,B,M,D,054,02/20/2012,02/20/2008,Mr. McCarty -DPEC Member ,at Large ,,,,LA,,,CALDWELL,"""Greg"" Richardson",P.O. Box 550,,Columbia,LA,71418,318-649-0105,W,M,D,054,02/20/2012,02/20/2008,Mr. Richardson -DPEC Member ,at Large ,,,,LA,,,CALDWELL,Betty Robinson,P.O. Box 780,,Columbia,LA,71418,318-649-7335,B,F,D,054,02/20/2012,02/20/2008,Ms. Robinson -DPEC Member ,District 1 ,,,,LA,,,CALDWELL,Jane Roberts,P.O. Box 1265,,Columbia,LA,71418,318-649-2760,W,F,D,056,02/20/2012,02/20/2008,Ms. Roberts -DPEC Member ,District 2 ,,,,LA,,,CALDWELL,,,,,,,,,,,056 -DPEC Member ,District 3 ,,,,LA,,,CALDWELL,,,,,,,,,,,056 -DPEC Member ,District 4 ,,,,LA,,,CALDWELL,,,,,,,,,,,056 -DPEC Member ,District 5 ,,,,LA,,,CALDWELL,,,,,,,,,,,056 -DPEC Member ,District 6 ,,,,LA,,,CALDWELL,,,,,,,,,,,056 -DPEC Member ,District 7 ,,,,LA,,,CALDWELL,,,,,,,,,,,056 -RPEC Member ,at Large ,,,,LA,,,CALDWELL,,,,,,,,,,,064 -RPEC Member ,District 1 ,,,,LA,,,CALDWELL,,,,,,,,,,,066 -RPEC Member ,District 2 ,,,,LA,,,CALDWELL,,,,,,,,,,,066 -RPEC Member ,District 3 ,,,,LA,,,CALDWELL,,,,,,,,,,,066 -RPEC Member ,District 4 ,,,,LA,,,CALDWELL,,,,,,,,,,,066 -RPEC Member ,District 5 ,,,,LA,,,CALDWELL,,,,,,,,,,,066 -RPEC Member ,District 6 ,,,,LA,,,CALDWELL,,,,,,,,,,,066 -RPEC Member ,District 7 ,,,,LA,,,CALDWELL,,,,,,,,,,,066 -Sheriff ,,P. O. Box 60,,Columbia,LA,71418,318-649-2345,CALDWELL,Steven May,P.O. Box 60,,Columbia,LA,71418,318-649-5058,W,M,D,225,06/30/2012,07/01/2008,Sheriff May -Clerk of Court ,,P. O. Box 1327,,Columbia,LA,71418,318-649-2272,CALDWELL,Eugene Dunn,P.O. Box 1327,,Columbia,LA,71418,318-649-5105,W,M,D,230,06/30/2012,07/01/2008,Mr. Dunn -Assessor ,,P. O. Box 1446,,Columbia,LA,71418,318-649-2636,CALDWELL,Scott Meredith,P.O. Box 730,,Columbia,LA,71418,318-649-6533,W,M,O,235,12/31/2012,01/01/2009,Mr. Meredith -Coroner ,,P.O. Box 104,,Columbia,LA,71418,318-649-2311,CALDWELL,"Linus Carroll, ",123 Riser St.,,Columbia,LA,71418-3596,318-649-2821,W,M,R,240,,02/15/2010 -Coroner ,,P.O. Box 104,,Columbia,LA,71418,318-649-2311,CALDWELL,Charles W. Clack,P.O. Box 1737,,Columbia,LA,71418,,,,,240,,11/02/2009,Mr. Clack -Police Juror,District 1,P. O. Box 1737,,Columbia,LA,71418,318-649-2681,CALDWELL,"Kenneth ""Speck"" Graham",161 Randolph Rd.,,Columbia,LA,71418,318-649-7837,W,M,D,245,01/08/2012,01/14/2008,Mr. Graham -Police Juror ,District 2 ,P. O. Box 1737,,Columbia,LA,71418,318-649-2681,CALDWELL,Lanny Dark,1232 Hwy. 559,,Columbia,LA,71418,318-649-9054,W,M,D,245,01/08/2012,01/14/2008,Mr. Dark -Police Juror ,District 3 ,P. O. Box 1737,,Columbia,LA,71418,318-649-2681,CALDWELL,Bobbie R. Harrison,P.O. BOX 665,,Grayson,LA,71435,318-649-3177,W,F,D,245,01/08/2012,01/14/2008,Mr. Harrison -Police Juror ,District 4 ,P. O. Box 1737,,Columbia,LA,71418,318-649-2681,CALDWELL,Eddie Hearns,138 Wendell Dr.,,Columbia,LA,71418,318-649-2767,B,M,D,245,01/08/2012,01/14/2008,Mr. Hearns -Police Juror ,District 5 ,P. O. Box 1737,,Columbia,LA,71418,318-649-2681,CALDWELL,Archie Lloyd Williams,195 Eglin St.,,Columbia,LA,71418,318-649-2749,W,M,D,245,01/08/2012,01/14/2008,Mr. Williams -Police Juror ,District 6 ,P. O. Box 1737,,Columbia,LA,71418,318-649-2681,CALDWELL,Jimmy Gaylor,P.O. Box 1557,,Columbia,LA,71418,318-495-5398,W,M,D,245,01/08/2012,01/14/2008,Mr. Gaylor -Police Juror ,District 7 ,P. O. Box 1737,,Columbia,LA,71418,318-649-2681,CALDWELL,"Charles ""Flukie"" Braddock",P.O. Box 272,,Grayson,LA,71435,318-649-2081,W,M,D,245,01/08/2012,01/14/2008,Mr. Braddock -Member of School Board ,District 1 ,P.O. Box 1019,,Columbia,LA,71418,318-649-2689,CALDWELL,David May,308 Agnew Rd.,,Columbia,LA,71418,318-649-5027,W,M,R,255,12/31/2010,08/24/2009,Mr. May -Member of School Board ,District 2 ,P.O. Box 1019,,Columbia,LA,71418,318-649-2689,CALDWELL,Russell L. Flint,P.O. Box 1432,,Columbia,LA,71418,318-649-0609,W,M,R,255,12/31/2010,12/21/2007,Mr. Flint -Member of School Board ,District 3 ,P.O. Box 1019,,Columbia,LA,71418,318-649-2689,CALDWELL,Mark May,166 Carroll Rd.,,Grayson,LA,71435,318-649-6215,W,M,R,255,12/31/2010,01/01/2007,Mr. May -Member of School Board ,District 4 ,P.O. Box 1019,,Columbia,LA,71418,318-649-2689,CALDWELL,Baron D. Glass,P.O.Box 992,,Columbia,LA,71418,318-649-6648,B,M,D,255,12/31/2010,01/01/2007,Mr. Glass -Member of School Board ,District 5 ,P.O. Box 1019,,Columbia,LA,71418,318-649-2689,CALDWELL,"""C.R."" Martin",421 Esther Rd.,,Columbia,LA,71418,318-649-0856,W,M,D,255,12/31/2010,01/01/2007,Mr. Martin -Member of School Board ,District 6 ,P.O. Box 1019,,Columbia,LA,71418,318-649-2689,CALDWELL,John Garrett,P.O.Box 154,,Clarks,LA,71415,318-649-2215,W,M,D,255,12/31/2010,01/01/2007,Mr. Garrett -Member of School Board ,District 7 ,P.O. Box 1019,,Columbia,LA,71418,318-649-2689,CALDWELL,Hershel Volentine,842 Valentine Rd.,,Grayson,LA,71435,318-649-6304,W,M,D,255,12/31/2010,01/01/2007,Mr. Volentine -Justice of the Peace ,Justice of the Peace Ward 1 ,1991 Hwy. 848,,Columbia,LA,71418,318-649-7979,CALDWELL,Jeff M. Bailes,127 Bailes Ln.,,Columbia,LA,71418,318-649-0371,W,M,D,265,12/31/2014,01/01/2009,Mr. Bailes -Justice of the Peace ,Justice of the Peace Ward 2 ,P.O. Box 425,,Columbia,LA,71418,318-649-0208,CALDWELL,Mary Taylor,P. O. Box 195,,Clarks,LA,71415,318-649-7974,W,F,R,265,12/31/2014,01/01/2009,Ms. Taylor -Constable ,Justice of the Peace Ward 1 ,4417 US Hwy. 165,,Columbia,LA,71418,318-649-7926,CALDWELL,"J. N. ""Buddy"" Bailes",1930 Hwy. 133,,Columbia,LA,71418,318-649-0800,W,M,D,267,12/31/2014,01/01/2009,Mr. Bailes -Constable ,Justice of the Peace Ward 2 ,P.O. Box 1557,,Columbia,LA,71418,318-649-5117,CALDWELL,Charles Alger,9037 Hwy. 4 W.,,Columbia,LA,71418,318-649-7829,W,M,D,267,12/31/2014,01/01/2009,Mr. Alger -Mayor ,Town of Clarks ,P. O. Box 360,,Clarks,LA,,318-649-7218,CALDWELL,Toby Esters,P.O. Box 328,,Clarks,LA,71415,318-649-5266,W,M,D,300,12/31/2010,01/01/2007,Mr. Esters -Mayor ,Town of Columbia ,P. O. Box 10,,Columbia,LA,,318-649-6174,CALDWELL,Charles Simons,P.O. Box 1555,,Columbia,LA,71418,318-649-7389,W,M,D,300,06/30/2012,07/01/2008,Mayor Simons -Mayor ,Village of Grayson ,P. O. Box 8,,Grayson,LA,,318-649-7148,CALDWELL,Carmen Meredith Head,201 Cruse Rd.,,Grayson,LA,71435,318-649-5076,W,F,R,300,12/31/2010,01/01/2007,Ms. Head -Chief of Police,Town of Clarks,P. O. Box 360,,Clarks,LA,71415,318-649-7218,CALDWELL,"""Shawn"" Guinn",P.O. Box 247,,Clarks,LA,71415,318-649-0190,W,M,D,305,12/31/2010,01/01/2007,Mr. Guinn -Chief of Police ,Town of Columbia ,P. O. Box 10,,Columbia,LA,71418,318-649-6174,CALDWELL,Clay Bennett,P.O. Box 1412,,Columbia,LA,71418,318-649-5210,W,M,D,305,06/30/2012,07/01/2008,Chief Bennett -Chief of Police ,Village of Grayson ,P. O. Box 8,,Grayson,LA,71435,318-649-7148,CALDWELL,"Mitchell ""Mitch"" Bratton",P.O. Box 786,,Grayson,LA,71435,318-649-6002,W,M,R,305,12/31/2010,01/01/2007,Mr. Bratton -Alderman ,Town of Clarks ,P. O. Box 360,,Clarks,LA,71415,318-649-7218,CALDWELL,"""Buddy"" Carter",P.O. Box 359,,Clarks,LA,71415,318-649-5768,W,M,D,310,12/31/2010,01/01/2007,Mr. Carter -Alderman ,Town of Clarks ,P. O. Box 360,,Clarks,LA,71415,318-649-7218,CALDWELL,Fred Grant,P.O. Box 115,,Clarks,LA,71415,318-649-6050,W,M,D,310,12/31/2010,01/01/2007,Mr. Grant -Alderman ,Town of Clarks ,P. O. Box 360,,Clarks,LA,71415,318-649-7218,CALDWELL,Phyllis Holmes,P.O. Box 62,,Clarks,LA,71415,318-649-2218,W,F,R,310,12/31/2010,01/01/2007,Ms. Holmes -Alderman ,Town of Clarks ,P. O. Box 360,,Clarks,LA,71415,318-649-7218,CALDWELL,Bonnie Hurst,P.O. Box 122,,Clarks,LA,71415,318-649-6696,W,F,D,310,12/31/2010,01/01/2007,Ms. Hurst -Alderman ,Town of Clarks ,P. O. Box 360,,Clarks,LA,71415,318-649-7218,CALDWELL,James King,P.O. Box 295,,Clarks,LA,71415,318-649-8306,B,M,D,310,12/31/2010,01/01/2007,Mr. King -Council Member ,Village of Grayson ,P. O. Box 8,,Grayson,LA,71435,318-649-7148,CALDWELL,"Christina ""Chrissy"" Browning",P.O. Box 609,,Grayson,LA,71435,318-649-3350,W,F,D,310,12/31/2010,01/01/2007,Mr. Browning -Council Member ,Village of Grayson ,P. O. Box 8,,Grayson,LA,71435,318-649-7148,CALDWELL,Raymond Cruse,P.O. Box 309,,Grayson,LA,71435,318-649-7117,W,M,D,310,12/31/2010,01/01/2007,Mr. Cruse -Council Member ,Village of Grayson ,P. O. Box 8,,Grayson,LA,71435,318-649-7148,CALDWELL,Sandra Hillestad Evans,P.O. Box 144,,Grayson,LA,71435,318-649-2699,W,F,D,310,12/31/2010,01/01/2007,Ms. Evans -Councilman ,Town of Columbia ,P. O. Box 10,,Columbia,LA,71418,318-649-2631,CALDWELL,"""Ken"" Brockner",P.O. Box 1351,,Columbia,LA,71418,318-649-2829,W,M,D,310,06/30/2012,07/01/2008,Mr. Brockner -Councilman ,Town of Columbia ,P. O. Box 10,,Columbia,LA,71418,318-649-2631,CALDWELL,Bonnie M. Crockett,P.O. Box 655,,Columbia,LA,71418,318-649-7000,W,F,D,310,06/30/2012,02/23/2009,Ms. Crockett -Councilman ,Town of Columbia ,P. O. Box 10,,Columbia,LA,71418,318-649-2631,CALDWELL,Bruce Frazier,P.O. Box 76,,Columbia,LA,71418,318-649-7192,W,M,D,310,06/30/2012,07/01/2008,Mr. Frazier -Councilman ,Town of Columbia ,P. O. Box 10,,Columbia,LA,71418,318-649-2631,CALDWELL,Richard Meredith,P.O. Box 1984,,Columbia,LA,71418,318-649-7949,W,M,R,310,06/30/2012,07/01/2008,Mr. Meredith -Councilman ,Town of Columbia ,P. O. Box 10,,Columbia,LA,71418,318-649-2631,CALDWELL,Melvin D. Robinson,P.O. Box 780,,Columbia,LA,71418,318-649-7335,B,M,D,310,06/30/2012,07/01/2008,Mr. Robinson -DPEC Member ,at Large ,,,,LA,,,CAMERON,Lee J. Harrison,3355 Grand Chenier Hwy.,,Grand Chenier,LA,70643,337-488-5612,B,M,D,054,02/20/2012,02/20/2008,Mr. Harrison -DPEC Member ,at Large ,,,,LA,,,CAMERON,E. Garner Nunez,1572 Hwy. 384,,Lake Charles,LA,70607,337-905-2268,W,M,D,054,02/20/2012,02/20/2008,Mr. Nunez -DPEC Member ,at Large ,,,,LA,,,CAMERON,Jeff Sanders,1315 Horseshoe Ln.,,Hackberry,LA,70645,337-762-3141,W,M,D,054,02/20/2012,02/20/2008,Mr. Sanders -DPEC Member ,District 1 ,,,,LA,,,CAMERON,,,,,,,,,,,056 -DPEC Member ,District 2 ,,,,LA,,,CAMERON,,,,,,,,,,,056 -DPEC Member ,District 3 ,,,,LA,,,CAMERON,,,,,,,,,,,056 -DPEC Member ,District 4 ,,,,LA,,,CAMERON,,,,,,,,,,,056 -DPEC Member ,District 5 ,,,,LA,,,CAMERON,,,,,,,,,,,056 -DPEC Member ,District 6 ,,,,LA,,,CAMERON,,,,,,,,,,,056 -DPEC Member ,District 7 ,,,,LA,,,CAMERON,,,,,,,,,,,056 -RPEC Member ,at Large ,,,,LA,,,CAMERON,,,,,,,,,,,064 -RPEC Member ,District 1 ,,,,LA,,,CAMERON,,,,,,,,,,,066 -RPEC Member ,District 2 ,,,,LA,,,CAMERON,,,,,,,,,,,066 -RPEC Member ,District 3 ,,,,LA,,,CAMERON,,,,,,,,,,,066 -RPEC Member ,District 4 ,,,,LA,,,CAMERON,,,,,,,,,,,066 -RPEC Member ,District 5 ,,,,LA,,,CAMERON,,,,,,,,,,,066 -RPEC Member ,District 6 ,,,,LA,,,CAMERON,,,,,,,,,,,066 -RPEC Member ,District 7 ,,,,LA,,,CAMERON,,,,,,,,,,,066 -Sheriff ,,P. O. Box 1250,,Cameron,LA,70631,337-616-8808,CAMERON,Theos Duhon,P.O. Box 1250,,Cameron,LA,70631,337-598-3264,W,M,D,225,06/30/2012,07/01/2008,Sheriff Duhon -Clerk of Court ,,P. O. Box 549,,Cameron,LA,70631,337-775-5316,CAMERON,Carl Broussard,P.O. Box 549,,Cameron,LA,70631,337-538-2322,W,M,,230,06/30/2012,07/01/2008,Mr. Broussard -Assessor ,,P. O. Box 1100,,Cameron,LA,70631,337-775-5416,CAMERON,"""Mona"" Kelley",P.O. Box 1551,,Cameron,LA,70631,337-775-5298,W,F,R,235,12/31/2012,01/01/2009,Ms. Kelly -Coroner ,,P.O. Box 68,,Creole,LA,70632,337-542-4201,CAMERON,Richard D. Sanders,P.O. Box 12803,,Lake Charles,LA,70612,337-540-2242,W,M,,240,03/25/2012,03/25/2008,Mr. Sanders -Police Juror,District 1,P. O. Box 1280,,Cameron,LA,70631,337-905-1190,CAMERON,"Magnus ""Sonny"" McGee",121 Alvin Ln.,,Johnson Bayou,LA,70631,337-569-2359,W,M,,245,01/08/2012,01/14/2008,Mr. McGee -Police Juror ,District 2 ,P. O. Box 1280,,Cameron,LA,70631,337-475-9167,CAMERON,"""Steve"" Racca",478 Meyers Rd.,,Hackberry,LA,70645,337-762-3554,W,M,D,245,01/08/2012,01/14/2008,Mr. Racca -Police Juror ,District 3 ,P. O. Box 1280,,Cameron,LA,70631,337-475-9167,CAMERON,"Charles Precht, III",159 W. Precht Rd.,,Bell City,LA,70630,337-598-2745,W,M,D,245,01/08/2012,01/14/2008,Mr. Precht -Police Juror ,District 4 ,P. O. Box 1280,,Cameron,LA,70631,337-475-9167,CAMERON,Thomas McDaniel,P.O. Box 274,,Creole,LA,70632,337-542-4540,W,M,,245,01/08/2012,01/14/2008,Mr.McDaniel -Police Juror ,District 5 ,P. O. Box 1280,,Cameron,LA,70631,337-475-9167,CAMERON,Scott A. Trahan,P.O. Box 235,,Creole,LA,70632,337-542-4745,W,M,D,245,01/08/2012,01/14/2008,Mr. Trahan -Police Juror ,District 6 ,P. O. Box 1280,,Cameron,LA,70631,337-475-9167,CAMERON,Kirk Burleigh,P.O. Box 576,,Cameron,LA,70631,337-775-5349,W,M,D,245,01/08/2012,01/14/2008,Mr. Burleigh -Police Juror ,District 7 ,P. O. Box 1280,,Cameron,LA,70631,337-475-9167,CAMERON,Darryl Farque,10690 Hwy. 384,,Big Lake,LA,70607,337-905-1289,W,M,D,245,01/08/2012,01/14/2008,Mr. Farque -Member of School Board ,District 1 ,P. O. Box 1548,,Cameron,LA,70631-1548,337-905-5784,CAMERON,Marsha Trahan,6598 Gulf Beach Hwy.,,Cameron,LA,70631,337-569-2661,W,F,D,255,12/31/2010,01/01/2008,Ms Trahan -Member of School Board ,District 2 ,P. O. Box 1548,,Cameron,LA,70631-1548,337-475-9167,CAMERON,Dwayne Sanner,1095 Poncho Ln.,,Hackberry,LA,70645,337-762-3878,W,M,D,255,12/31/2010,01/01/2008,Mr. Sanner -Member of School Board ,District 3 ,P. O. Box 1548,,Cameron,LA,70631-1548,337-475-9167,CAMERON,R. Scott Nunez,519 Sweetlake Camp Rd.,,Bell City,LA,70630,337-905-2252,W,M,R,255,12/31/2010,01/01/2008,Mr. Nunez -Member of School Board ,District 4 ,P. O. Box 1548,,Cameron,LA,70631-1548,337-475-9167,CAMERON,"Dorothy ""Dot"" Theriot",152 Helen St.,,Grand Chenier,LA,70643,337-538-2272,W,F,,255,12/31/2010,01/01/2008,Ms. Theriot -Member of School Board ,District 5 ,P. O. Box 1548,,Cameron,LA,70631-1548,337-475-9167,CAMERON,Loston McEvers,P.O. Box 240,,Creole,LA,70632,337-249-1124,W,M,D,255,12/31/2010,01/01/2008,Mr. McEvers -Member of School Board ,District 6 ,P. O. Box 1548,,Cameron,LA,70631-1548,337-475-9167,CAMERON,Marvin Trahan,P.O. Box 712,,Cameron,LA,70631,337-474-8924,W,M,R,255,12/31/2010,01/01/2008,Mr. Trahan -Member of School Board ,District 7 ,P. O. Box 1548,,Cameron,LA,70631-1548,337-475-9167,CAMERON,Karen Faulk Nunez,P. O. Box 1548,,Cameron,LA,70631-1548,337-905-5748,W,F,,255,12/31/2010,01/01/2008,Ms. Nunez -Justice of the Peace ,Justice of the Peace Ward 1 ,,,,LA,,,CAMERON,Carrie J. Broussard,629 Lowry Rd.,,Lake Arthur,LA,70549,337-774-3248,W,F,D,265,12/31/2014,01/01/2009,Ms Broussard -Justice of the Peace ,Justice of the Peace Ward 2 ,549 Mermentau River Rd.,,Grand Chenier,LA,70643,337-538-2446,CAMERON,Nadine Richard,122 Jones St.,,Grand Chenier,LA,70643,337-538-2369,W,F,D,265,12/31/2014,01/01/2009,Ms. Richard -Justice of the Peace ,Justice of the Peace Ward 3 ,103 Bud Murphy Rd.,,Cameron,LA,70631,337-775-5072,CAMERON,"Harold W. ""Buddy"" Hardie",103 Bud Murphy Ln.,,Cameron,LA,70631,337-775-5072,W,M,D,265,12/31/2014,01/01/2009,Mr. Hardie -Justice of the Peace ,Justice of the Peace Ward 4 ,10510 Hwy. 384,,Lake Charles,LA,70607,337-598-2934,CAMERON,Mckinley Wayne Guidry,155 Hebert Camp Rd.,,Lake Charles,LA,70607,337-598-2679,W,M,D,265,12/31/2014,01/01/2009,Mr. Guidry -Justice of the Peace ,Justice of the Peace Ward 5 ,6598 Gulf Beach Hwy.,,Cameron,LA,70631,337-569-2661,CAMERON,Connie A. Trahan,6482 Gulf Beach Hwy.,,Cameron,LA,70631,337-569-2333,W,F,D,265,12/31/2014,01/01/2009,Mr. Trahan -Justice of the Peace ,Justice of the Peace Ward 6 ,225 Meyers Rd.,,Hackberry,LA,70645,337-762-4626,CAMERON,Brian Desormeaux,225 Meyers Rd.,,Hackberry,LA,70645,337-762-4626,W,M,R,265,12/31/2014,01/01/2009,Mr. Desormeaux -Constable ,Justice of the Peace Ward 1 ,P.O. Box 531,,Gueydan,LA,70549,337-774-2923,CAMERON,Nolan J. Broussard,P. O. Box 531,,Lake Arthur,LA,70549,337-774-2923,W,M,,267,12/31/2014,01/01/2009,Mr. Broussard -Constable ,Justice of the Peace Ward 2 ,119 East Ln.,,Grand Chenier,LA,70643,337-538-2254,CAMERON,Freddie A. Theriot,152 Helen St.,,Grand Chenier,LA,70643,337-538-2272,W,M,,267,12/31/2014,01/01/2009,Mr. Theriot -Constable ,Justice of the Peace Ward 3 ,P.O. Box 583,,Cameron,LA,70631,337-775-7138,CAMERON,Davy Doxey,P. O. Box 150,,Cameron,LA,70631,337-775-5284,W,M,D,267,12/31/2014,01/01/2009,Mr. Doxey -Constable ,Justice of the Peace Ward 4 ,1071 Hwy. 384,,Lake Charles,LA,70607,337-598-3127,CAMERON,"John ""Buck"" Stephenson",10871 Hwy. 384,,Lake Charles,LA,70607,337-598-3127,W,M,,267,12/31/2014,01/01/2009,Mr. Stephenson -Constable ,Justice of the Peace Ward 5 ,140 Alivn Ln.,,Cameron,LA,70631,337-569-2562,CAMERON,"""Tim"" Trahan",140 Alvin Ln.,,Cameron,LA,70631,337-764-3651,W,M,R,267,12/31/2014,01/01/2009,Mr. Trahan -Constable ,Justice of the Peace Ward 6 ,194 J. B. Constance Ln.,,Hackberry,LA,70645,337-762-3555,CAMERON,"""Gwen"" Sanner Constance",195 J.B. Constance Ln.,,Hackberry,LA,70645,337-762-3555,W,M,D,267,12/31/2014,01/01/2009,Ms. Constance -DPEC Member ,at Large ,,,,LA,,,CATAHOULA,"Lee C. Foster, Jr.",P.O. Box 667,,Jonesville,LA,71343,318-339-6002,W,M,D,054,02/20/2012,02/20/2008,Mr. Foster -DPEC Member ,at Large ,,,,LA,,,CATAHOULA,"Jack F. Owens, Jr.",P.O. Box 595,,Harrisonburg,LA,71340,318-744-5431,W,M,D,054,02/20/2012,02/20/2008,Mr. Owens -DPEC Member ,at Large ,,,,LA,,,CATAHOULA,John C. Reeves,1000 Foster St.,,Jonesville,LA,71343,318-339-9587,W,M,D,054,02/20/2012,02/20/2008,Mr. Reeves -DPEC Member ,at Large ,,,,LA,,,CATAHOULA,James H. Terry,P.O. Box 179,,Harrisonburg,LA,71340,318-744-5471,W,M,D,054,02/20/2012,02/20/2008,Mr. Terry -DPEC Member ,District 1 ,,,,LA,,,CATAHOULA,,,,,,,,,,,056 -DPEC Member ,District 2 ,,,,LA,,,CATAHOULA,,,,,,,,,,,056 -DPEC Member ,District 3 ,,,,LA,,,CATAHOULA,,,,,,,,,,,056 -DPEC Member ,District 4 ,,,,LA,,,CATAHOULA,,,,,,,,,,,056 -DPEC Member ,District 5 ,,,,LA,,,CATAHOULA,,,,,,,,,,,056 -DPEC Member ,District 6 ,,,,LA,,,CATAHOULA,,,,,,,,,,,056 -DPEC Member ,District 7 ,,,,LA,,,CATAHOULA,,,,,,,,,,,056 -DPEC Member ,District 8 ,,,,LA,,,CATAHOULA,,,,,,,,,,,056 -DPEC Member ,District 9 ,,,,LA,,,CATAHOULA,,,,,,,,,,,056 -RPEC Member ,at Large ,,,,LA,,,CATAHOULA,Paul A. Lemke,P.O. Box 595,,Harrisonburg,LA,71340,318-744-5431,W,M,R,064,02/20/2012,02/20/2008,Mr. Lemke -RPEC Member ,District 1 ,,,,LA,,,CATAHOULA,,,,,,,,,,,066 -RPEC Member ,District 2 ,,,,LA,,,CATAHOULA,,,,,,,,,,,066 -RPEC Member ,District 3 ,,,,LA,,,CATAHOULA,,,,,,,,,,,066 -RPEC Member ,District 4 ,,,,LA,,,CATAHOULA,,,,,,,,,,,066 -RPEC Member ,District 5 ,,,,LA,,,CATAHOULA,,,,,,,,,,,066 -RPEC Member ,District 6 ,,,,LA,,,CATAHOULA,,,,,,,,,,,066 -RPEC Member ,District 7 ,,,,LA,,,CATAHOULA,,,,,,,,,,,066 -RPEC Member ,District 8 ,,,,LA,,,CATAHOULA,,,,,,,,,,,066 -RPEC Member ,District 9 ,,,,LA,,,CATAHOULA,,,,,,,,,,,066 -Sheriff ,,P. O. Box 655,,Harrisonburg,LA,71340,318-744-5411,CATAHOULA,James Glen Kelly,P.O. Box 655,,Harrisonburg,LA,71340,318-339-8592,W,M,D,225,06/30/2012,07/01/2008,Sheriff Kelly -Clerk of Court ,,P. O. Box 654,,Harrisonburg,LA,71340,318-744-5497,CATAHOULA,Janet T. Payne,P.O. Box 654,,Harrisonburg,LA,71340,318-386-0473,W,F,D,230,06/30/2012,07/01/2008,Ms. Payne -Assessor ,,P. O. Box 570,,Harrisonburg,LA,71340,318-744-5291,CATAHOULA,Carmon F. Walker,P.O. Box 65,,Jonesville,LA,71343,318-339-8322,W,M,O,235,12/31/2012,01/01/2009,Mr. Walker -Coroner ,,P.O. Box 655,,Harrisonburg,LA,71340,318-744-5411,CATAHOULA,Raymond Rouse,2805 Fourth St.,,Jonesville,LA,71343,318-339-6269,W,M,O,240,03/25/2012,03/24/2008,Mr. Rouse -Police Juror,District 1,P. O. Box 258,,Harrisonburg,LA,71340,318-744-5435,CATAHOULA,Billy D. Fletcher,3725 Hwy. 921,,Clayton,LA,71326,318-389-5894,W,M,D,245,01/08/2012,01/14/2008,Mr. Fletcher -Police Juror ,District 2 ,P. O. Box 258,,Harrisonburg,LA,71340,318-744-5435,CATAHOULA,"Albert ""Kaline"" Patten",P. O. Box 133,,Sicily Island,LA,71368,318-389-5912,W,M,O,245,01/08/2012,01/14/2008,Mr. Patten -Police Juror ,District 3 ,P. O. Box 258,,Harrisonburg,LA,71340,318-744-5435,CATAHOULA,Garry L. Wright,259 Horace Rd.,,Harrisonburg,LA,71340,318-744-1583,W,M,D,245,01/08/2012,01/14/2008,Mr. Wright -Police Juror ,District 4 ,P. O. Box 258,,Harrisonburg,LA,71340,318-744-5435,CATAHOULA,"J. D. Alexander, Jr.",872 Jug Rd.,,Harrisonburg,LA,71340,318-744-5560,W,M,R,245,01/08/2012,01/14/2008,Mr. Alexander -Police Juror ,District 5 ,P. O. Box 258,,Harrisonburg,LA,71340,318-744-5435,CATAHOULA,Delores McEntyre,871 Taunton Loop Rd.,,Jonesville,LA,71343,318-339-8451,W,F,O,245,01/08/2012,01/14/2008,Ms. McEntyre -Police Juror ,District 6 ,P. O. Box 258,,Harrisonburg,LA,71340,318-744-5435,CATAHOULA,Libby Ford,200 Uncle Johnie Rd.,,Jonesville,LA,71343,318-339-8460,W,F,O,245,01/08/2012,01/14/2008,Ms. Ford -Police Juror ,District 7 ,P. O. Box 258,,Harrisonburg,LA,71340,318-744-5435,CATAHOULA,"Benny Vault, Jr.",507 Tom Cotton St.,,Jonesville,LA,71343,318-613-7395,B,M,D,245,01/08/2012,01/14/2008,Mr. Vault -Police Juror ,District 8 ,P. O. Box 258,,Harrisonburg,LA,71340,318-744-5435,CATAHOULA,"Joe Barber, Sr.",801 Johnson St.,,Jonesville,LA,71343,318-339-9205,B,M,D,245,01/08/2012,01/14/2008,Mr. Barber -Police Juror ,District 9 ,P. O. Box 258,,Harrisonburg,LA,71340,318-744-5435,CATAHOULA,Jackie Paulk,29630 Hwy. 124,,Jonesville,LA,71343,318-339-8038,W,M,O,245,01/08/2012,01/14/2008,Mr. Paulk -Member of School Board ,District 1 ,P. O. Box 290,,Harrisonburg,LA,71340,318-744-5727,CATAHOULA,Dorothy Jean Watson,951 Ditto Rd.,,Sicily Island,LA,71368,318-389-5911,B,F,D,255,12/31/2010,01/01/2007,Ms. Watson -Member of School Board ,District 2 ,P. O. Box 290,,Harrisonburg,LA,71340,318-744-5727,CATAHOULA,Jane Martin,2185 Hwy. 8,,Sicily Island,LA,71368,318-389-4442,W,F,D,255,12/31/2010,01/01/2007,Ms. Martin -Member of School Board ,District 3 ,P. O. Box 290,,Harrisonburg,LA,71340,318-744-5727,CATAHOULA,Dewey W. Stockman,P.O.Box 17,,Rhinehart,LA,71363,318-992-2306,W,M,D,255,12/31/2010,01/01/2007,Mr. Stockman -Member of School Board ,District 4 ,P. O. Box 290,,Harrisonburg,LA,71340,318-744-5727,CATAHOULA,Lillian S. Aplin,P.O. Box 192,,Harrisonburg,LA,71340,318-744-5215,W,F,D,255,12/31/2010,01/01/2007,Ms. Aplin -Member of School Board ,District 5 ,P. O. Box 290,,Harrisonburg,LA,71340,318-744-5727,CATAHOULA,"""Tim"" Tomlinson",332 Woodman Rd.,,Jonesville,LA,71343,318-339-6266,W,M,D,255,12/31/2010,01/01/2007,Mr. Tomlinson -Member of School Board ,District 6 ,P. O. Box 290,,Harrisonburg,LA,71340,318-744-5727,CATAHOULA,"Charles ""Bo"" House",601 Good Rd.,,Jonesville,LA,71343,318-339-8049,W,M,D,255,12/31/2010,01/01/2007,Mr. House -Member of School Board ,District 7 ,P. O. Box 290,,Harrisonburg,LA,71340,318-744-5727,CATAHOULA,Josephine Jones,P.O. Box 73,,Jonesville,LA,71343,318-339-4418,B,F,D,255,12/31/2010,01/01/2007,Ms. Jones -Member of School Board ,District 8 ,P. O. Box 290,,Harrisonburg,LA,71340,318-744-5727,CATAHOULA,Letishia Hatcher,P.O. Box 213,,Jonesville,LA,71343,318-339-8467,B,F,D,255,12/31/2010,01/01/2007,Ms. Letishia -Member of School Board ,District 9 ,P. O. Box 290,,Harrisonburg,LA,71340,318-744-5727,CATAHOULA,"Wayne D. Sanders, ",564 Paulk Rd.,,Jonesville,LA,71343,318-339-8290,W,M,D,255,12/31/2010,01/01/2007,Mr. Sanders -Justice of the Peace ,Justice of the Peace Ward 1 ,P. O. Box 97,,Sicily Island,LA,71368,318-389-5772,CATAHOULA,Richard Price,P. O. Box 217,,Sicily Island,LA,71368,318-389-5562,W,M,R,265,12/31/2014,01/01/2009,Mr. Price -Justice of the Peace ,Justice of the Peace Ward 2 ,123 Deer Hunter Ln.,,Jonesville,LA,71343,318-339-9212,CATAHOULA,"Robert T. ""Bobby"" Alexander",12398 Hwy. 8,,Jonesville,LA,71343,318-339-9924,W,M,D,265,12/31/2014,01/01/2009,Mr. Alexander -Justice of the Peace ,Justice of the Peace Ward 3 ,P.O. Box 44,,Jonesville,LA,71343,318-339-7566,CATAHOULA,TeRan S. Book,1483 Hwy 28,,Jonesville,LA,71343,318-339-6755,W,F,D,265,12/31/2014,01/01/2009,Ms. Book -Constable ,Justice of the Peace Ward 1 ,1054 Newman St.,,Sicily Island,LA,71368,318-389-5390,CATAHOULA,"H. C. ""Trey"" Peck, III",P. O. Box 397,,Sicily Island,LA,71368,318-389-6894,W,M,D,267,12/31/2014,01/01/2009,Mr. Peck -Constable ,Justice of the Peace Ward 2 ,P.O. Box 247,,Jonesville,LA,71343,318-339-9522,CATAHOULA,Rickey Morris,363 Wince Rd.,,Jonesville,LA,71343,318-339-7757,W,M,D,267,12/31/2014,01/01/2009,Mr. Morris -Constable ,Justice of the Peace Ward 3 ,807 Front St.,,Jonesville,LA,71343,318-339-9313,CATAHOULA,William R. Schneider,P.O. Box 765,,Jonesville,LA,71343,318-339-8382,W,M,O,267,12/31/2014,08/24/2009,Mr. Schneider -Mayor ,Town of Jonesville ,P. O. Box 428,,Jonesville,LA,,318-339-8596,CATAHOULA,Hiram Evans,904 Westland Dr.,,Jonesville,LA,71343,318-339-7374,B,M,D,300,12/31/2010,01/01/2007,Mr. Evans -Mayor ,Village of Harrisonburg ,P. O. Box 658,,Harrisonburg,LA,,318-744-5794,CATAHOULA,Michael Tubre,757 Bushley St.,,Harrisonburg,LA,71340,318-744-5613,W,M,R,300,12/31/2010,01/01/2007,Mr. Tubre -Mayor ,Village of Sicily Island ,P. O. Box 45,,Sicily Island,LA,,318-389-4472,CATAHOULA,"James Art Goode, Jr.",P.O. 187,,Sicily Island,LA,71368,318-389-5317,W,M,R,300,12/31/2010,01/01/2007,Mayor Goode -Chief of Police ,Village of Harrisonburg ,P. O. Box 658,,Harrisonburg,LA,71340,318-744-5794,CATAHOULA,"""Joe"" Cook",P.O. Box 371,,Harrisonburg,LA,71340,318-744-5500,W,M,O,305,12/31/2010,01/01/2007,Mr. Cook -Alderman ,"District 1, Town of Jonesville ",P. O. Box 428,,Jonesville,LA,71343,318-339-8596,CATAHOULA,Jackie C. Rouse,2805 Fourth St.,,Jonesville,LA,71343,318-339-6269,W,F,D,310,12/31/2010,01/01/2007,Ms. Rouse -Alderman ,"District 2, Town of Jonesville ",P. O. Box 428,,Jonesville,LA,71343,318-339-8596,CATAHOULA,Stephen R. Mophett,1105 Chestnut St.,,Jonesville,LA,71343,318-339-7785,W,M,R,310,12/31/2010,01/01/2007,Mr. Mophett -Alderman ,"District 3, Town of Jonesville ",P. O. Box 428,,Jonesville,LA,71343,318-339-8596,CATAHOULA,Josie Bullitts,503 Pollard Ave.,,Jonesville,LA,71343,318-339-4750,B,F,D,310,12/31/2010,01/01/2007,Ms. Bullitts -Alderman ,"District 4, Town of Jonesville ",P. O. Box 428,,Jonesville,LA,71343,318-339-8596,CATAHOULA,Loria Hollins,902 MLK Dr.,,Jonesville,LA,71343,318-339-6732,B,F,D,310,12/31/2010,01/01/2007,Ms. Hollins -Alderman ,"District 5, Town of Jonesville ",P. O. Box 428,,Jonesville,LA,71343,318-339-8596,CATAHOULA,"Tommy L. Branch, III",704 Mound St.,,Jonesville,LA,71343,318-339-4673,B,M,D,310,12/31/2010,01/01/2007,Mr. Branch -Alderman ,Village of Harrisonburg ,P. O. Box 658,,Harrisonburg,LA,71340,318-744-5794,CATAHOULA,"Richard A. ""Doll"" Hatten",P.O. Box 364,,Harrisonburg,LA,71340,318-744-9557,B,M,D,310,12/31/2010,01/01/2007,Mr. Hatten -Alderman ,Village of Harrisonburg ,P. O. Box 658,,Harrisonburg,LA,71340,318-744-5794,CATAHOULA,"""Greg"" Terry",P.O. Box 262,,Harrisonburg,LA,71340,318-744-5547,W,M,D,310,12/31/2010,01/01/2007,Mr. Terry -Alderman ,Village of Harrisonburg ,P. O. Box 658,,Harrisonburg,LA,71340,318-744-5794,CATAHOULA,Charles L. Watson,P.O. Box 97,,Harrisonburg,LA,71340,318-744-5732,B,M,D,310,12/31/2010,01/01/2007,Mr. Watson -Alderman ,Village of Sicily Island ,P. O. Box 45,,Sicily Island,LA,71368,318-389-4472,CATAHOULA,Donald Ashley,1054 Newman St.,,Sicily Island,LA,71368,318-389-5390,W,M,O,310,12/31/2010,01/01/2007,Mr. Ashley -Alderman ,Village of Sicily Island ,P. O. Box 45,,Sicily Island,LA,71368,318-389-4472,CATAHOULA,Derrick Frazier,P.O. Box 81,,Sicily Island,LA,71368,318-389-0040,B,M,D,310,12/31/2010,01/01/2007,Mr. Frazier -Alderman ,Village of Sicily Island ,P. O. Box 45,,Sicily Island,LA,71368,318-389-4472,CATAHOULA,"Walter M. ""Mark"" Krause, Jr.",P.O. Box 34,,Sicily Island,LA,71368,318-419-2000,W,M,D,310,12/31/2010,01/01/2007,Mr. Krause -DPEC Member ,at Large ,,,,LA,,,CLAIBORNE,,,,,,,,,,,054 -DPEC Member ,District 1 ,,,,LA,,,CLAIBORNE,,,,,,,,,,,056 -DPEC Member ,District 2 ,,,,LA,,,CLAIBORNE,,,,,,,,,,,056 -DPEC Member ,District 3 ,,,,LA,,,CLAIBORNE,,,,,,,,,,,056 -DPEC Member ,District 4 ,,,,LA,,,CLAIBORNE,,,,,,,,,,,056 -DPEC Member ,District 5 ,,,,LA,,,CLAIBORNE,,,,,,,,,,,056 -DPEC Member ,District 6 ,,,,LA,,,CLAIBORNE,,,,,,,,,,,056 -DPEC Member ,District 7 ,,,,LA,,,CLAIBORNE,,,,,,,,,,,056 -DPEC Member ,District 8 ,,,,LA,,,CLAIBORNE,,,,,,,,,,,056 -DPEC Member ,District 9 ,,,,LA,,,CLAIBORNE,,,,,,,,,,,056 -DPEC Member ,District 10 ,,,,LA,,,CLAIBORNE,,,,,,,,,,,056 -RPEC Member ,at Large ,,,,LA,,,CLAIBORNE,Kenneth White,125 Beavers Creek Rd.,,Haynesville,LA,71038,318-927-3901,W,M,R,064,02/20/2012,02/20/2008,Mr. White -RPEC Member ,District 1 ,,,,LA,,,CLAIBORNE,,,,,,,,,,,066 -RPEC Member ,District 2 ,,,,LA,,,CLAIBORNE,,,,,,,,,,,066 -RPEC Member ,District 3 ,,,,LA,,,CLAIBORNE,,,,,,,,,,,066 -RPEC Member ,District 4 ,,,,LA,,,CLAIBORNE,,,,,,,,,,,066 -RPEC Member ,District 5 ,,,,LA,,,CLAIBORNE,,,,,,,,,,,066 -RPEC Member ,District 6 ,,,,LA,,,CLAIBORNE,,,,,,,,,,,066 -RPEC Member ,District 7 ,,,,LA,,,CLAIBORNE,,,,,,,,,,,066 -RPEC Member ,District 8 ,,,,LA,,,CLAIBORNE,,,,,,,,,,,066 -RPEC Member ,District 9 ,,,,LA,,,CLAIBORNE,,,,,,,,,,,066 -RPEC Member ,District 10 ,,,,LA,,,CLAIBORNE,,,,,,,,,,,066 -Sheriff ,,613 E. Main St.,,Homer,LA,71040,318-927-2011,CLAIBORNE,"""Ken"" Bailey",613 E. Main St.,,Homer,LA,71040,318-927-2011,W,M,D,225,06/30/2012,07/01/2008,Sheriff Bailey -Clerk of Court ,,P. O. Box 330,,Homer,LA,71040,318-927-9601,CLAIBORNE,James Patrick Gladney,P.O. Box 330,,Homer,LA,71040,318-927-9713,W,M,,230,06/30/2012,07/01/2008,Mr. Gladney -Assessor ,,508 E. Main St.,,Homer,LA,71040,318-927-3022,CLAIBORNE,"""Bob"" Robinson",261 Bob Robinson Rd.,,Homer,LA,71040,318-927-6063,W,M,R,235,12/31/2012,01/01/2009,Mr. Robinson -Coroner ,,P.O. Box 29,,Homer,LA,71040,318-327-3571,CLAIBORNE,Donald K. Haynes,1201 N. Main St.,,Homer,LA,71040,318-927-3571,W,M,,240,03/25/2012,03/24/2008,Mr. Haynes -Police Juror ,District 1 ,P. O. Box 270,,Homer,LA,,318-927-2222,CLAIBORNE,"Brian ""Butch"" Bays",P.O. Box 144,,Summerfield,LA,71049,318-927-9883,W,M,,245,01/08/2012,01/14/2008,Mr. Bays -Police Juror ,District 2 ,P. O. Box 270,,Homer,LA,71040,318-927-2222,CLAIBORNE,Mark A. Furlow,127 Acklin Ave.,,Haynesville,LA,71038,318-624-1126,W,M,,245,01/08/2012,01/14/2008,Mr. Furlow -Police Juror ,District 3 ,P. O. Box 270,,Homer,LA,71040,318-927-2222,CLAIBORNE,"Robert ""Bob"" McDaniel",281 McDaniel Rd.,,Haynesville,LA,71038,318-624-0634,W,M,,245,01/08/2012,01/14/2008,Mr. McDaniel -Police Juror ,District 4 ,P. O. Box 270,,Homer,LA,71040,318-927-2222,CLAIBORNE,Joe A. Sturges,P.O. Box 453,,Haynesville,LA,71038,318-624-1845,B,M,,245,01/08/2012,01/14/2008,Mr. Sturges -Police Juror ,District 5 ,P. O. Box 270,,Homer,LA,71040,318-927-2222,CLAIBORNE,Lavelle Penix,14407 Hwy. 9,,Athens,LA,71003,318-258-3092,W,M,D,245,01/08/2012,01/14/2008,Mr. Penix -Police Juror ,District 6 ,P. O. Box 270,,Homer,LA,71040,318-927-2222,CLAIBORNE,Scott Davidson,2199 Hwy. 519,,Athens,LA,71003,318-263-2544,W,M,,245,01/08/2012,01/14/2008,Mr. Davidson -Police Juror ,District 7 ,P. O. Box 270,,Homer,LA,71040,318-927-2222,CLAIBORNE,"""Roy"" Lewis",419 W. Sixth St.,,Homer,LA,71040,318-927-6672,W,M,D,245,01/08/2012,01/14/2008,Mr. Lewis -Police Juror ,District 8 ,P. O. Box 270,,Homer,LA,71040,318-927-2222,CLAIBORNE,Roy Mardis,314 Forest Grove,,Homer,LA,71040,318-927-4932,B,M,D,245,01/08/2012,01/14/2008,Mr. Mardis -Police Juror ,District 9 ,P. O. Box 270,,Homer,LA,71040,318-927-2222,CLAIBORNE,Jerry A. Adkins,155 Magee Rd.,,Homer,LA,71040,318-927-5456,W,M,,245,01/08/2012,01/14/2008,Mr. Adkins -Police Juror ,District 10 ,P. O. Box 270,,Homer,LA,71040,318-927-2222,CLAIBORNE,Willie J. Young,P.O. Box 763,,Homer,LA,71040,318-225-1040,B,M,D,245,01/08/2012,01/14/2008,Mr. Young -Member of School Board ,District 1 ,P. O. Box 600,,Homer,LA,71040,318-927-3502,CLAIBORNE,"Danny ""Doc"" Lee",1370 Flatwoods Rd.,,Bernice,LA,71222,318-285-7333,W,M,,255,12/31/2010,01/01/2007,Mr. Lee -Member of School Board ,District 2 ,P. O. Box 600,,Homer,LA,71040,318-927-3502,CLAIBORNE,William H. Maddox,1846 Maddox Rd.,,Haynesville,LA,71038,318-624-0373,W,M,,255,12/31/2010,01/01/2007,Mr. Maddox -Member of School Board ,District 3 ,P. O. Box 600,,Homer,LA,71040,318-927-3502,CLAIBORNE,Joe M. Lee,210 Dr. Worley Rd.,,Haynesville,LA,71038,318-624-1107,W,M,,255,12/31/2010,01/01/2007,Mr. Lee -Member of School Board ,District 4 ,P. O. Box 600,,Homer,LA,71040,318-927-3502,CLAIBORNE,A. D. Williams,371 McDonald St.,,Haynesville,LA,71038,318-624-0689,B,M,D,255,12/31/2010,10/14/2008,Mr. Williams -Member of School Board ,District 5 ,P. O. Box 600,,Homer,LA,71040,318-927-3502,CLAIBORNE,Stanley O. Edwards,P.O. Box 237,,Athens,LA,71003,318-243-5408,W,M,,255,12/31/2010,01/01/2007,Mr. Edwards -Member of School Board ,District 6 ,P. O. Box 600,,Homer,LA,71040,318-927-3502,CLAIBORNE,"Thomas E. ""Tommy"" Davidson",2210 Hwy. 519,,Athens,LA,71003,318-263-2585,W,M,,255,12/31/2010,01/01/2007,Mr. Davidson -Member of School Board ,District 7 ,P. O. Box 600,,Homer,LA,71040,318-927-3502,CLAIBORNE,Vera R. Walker Meadors,1303 Martin Luther King Dr.,,Homer,LA,71040,318-927-1060,B,F,,255,12/31/2010,01/01/2007,Ms. Meadors -Member of School Board ,District 8 ,P. O. Box 600,,Homer,LA,71040,318-927-3502,CLAIBORNE,Almeter Willis,119 Forest Grv.,,Homer,LA,71040,318-927-9905,B,F,D,255,12/31/2010,01/01/2007,Ms. Willis -Member of School Board ,District 9 ,P. O. Box 600,,Homer,LA,71040,318-927-3502,CLAIBORNE,E. Blake Hemphill,649 Airport Loop,,Homer,LA,71040,318-927-2445,W,M,,255,12/31/2010,01/01/2007,Mr. Hemphill -Member of School Board ,District 10 ,P. O. Box 600,,Homer,LA,71040,318-927-3502,CLAIBORNE,Terry R. Willis,915 Hudd Dr.,,Homer,LA,71040,318-927-9660,B,M,,255,12/31/2010,01/01/2007,Mr. Willis -Justice of the Peace ,1st Justice of the Peace Court ,4149 Hwy. 2AH.,,Haynesville,LA,71038,318-624-0057,CLAIBORNE,Charles F. Clawson,4149 Hwy. 2 Alt.,,Haynesville,LA,71038,318-624-0057,W,M,,265,12/31/2014,01/01/2009,Mr. Clawson -Justice of the Peace ,2nd Justice of the Peace Court ,103 Holly St.,,Homer,LA,71040,318-927-2149,CLAIBORNE,Ronnie McKenzie,103 Holly St.,,Homer,LA,71040,318-927-2149,W,M,,265,12/31/2014,01/01/2009,Mr. McKenzie -Justice of the Peace ,3rd Justice of the Peace Court ,153 Reynolds Rd.,,Bernice,LA,71222,318-353-6808,CLAIBORNE,Amanda Verdin,153 Reynolds Rd.,,Bernice,LA,71222,318-353-6808,W,F,,265,12/31/2014,01/01/2009,Ms. Verdin -Constable ,1st Justice of the Peace Court ,136 Boone Rd.,,Haynesville,LA,71038-7580,318-624-0951,CLAIBORNE,William Earl Maddox,135 Billy Shaw Rd.,,Homer,LA,71040,318-927-3965,B,M,,267,12/31/2014,01/01/2009,Mr. Maddox -Constable ,2nd Justice of the Peace Court ,490 Arizona Rd.,,Homer,LA,71040-8646,318-927-3796,CLAIBORNE,James A. Pike,429 Robinson Ln.,,Homer,LA,71040,318-927-3796,W,M,,267,12/31/2014,01/01/2009,Mr. Pike -Constable ,3rd Justice of the Peace Court ,21011 Hwy. 2,,Homer,LA,71040,318-343-6553,CLAIBORNE,Frank Speer,21011 Hwy. 2,,Homer,LA,71040,318-353-6553,W,M,,267,12/31/2014,01/01/2009,Mr. Speer -Mayor ,Town of Haynesville ,1711 Main St.,,Haynesville,LA,,318-624-0911,CLAIBORNE,Sherman Brown,798 Harris St.,,Haynesville,LA,71038,318-624-2468,B,M,,300,06/30/2013,07/01/2009,Mayor Brown -Mayor ,Town of Homer ,400 E. Main,,Homer,LA,,318-927-3555,CLAIBORNE,David Morgan Newell,P.O. Box 89,,Homer,LA,71040,318-927-3811,W,M,D,300,12/31/2010,01/01/2007,Mr. Newell -Mayor ,Village of Athens ,P. O. Box 69,,Athens,LA,,318-258-5275,CLAIBORNE,Hubie D. James,P.O. Box 275,,Athens,LA,71003,318-258-4783,W,M,,300,12/31/2010,01/01/2007,Mr. James -Mayor ,Village of Lisbon ,P. O. Box 248,,Lisbon,LA,,,CLAIBORNE,Wayne Tanner,P. O. Box 235,,Lisbon,LA,71048,318-353-6114,W,M,,300,12/31/2012,01/01/2009,Mayor Tanner -Chief of Police ,Town of Haynesville ,1711 Main St.,,Haynesville,LA,71038,318-624-0911,CLAIBORNE,Anthony Craig Smith,P.O. Box 254,,Haynesville,LA,71038,318-624-2628,B,M,D,305,06/30/2013,07/01/2009,Chief Smith -Chief of Police ,Village of Athens ,P. O. Box 69,,Athens,LA,71003,318-258-5275,CLAIBORNE,"Clayton M. ""Jack"" Spurlock, Jr.",P.O. Box 134,,Athens,LA,71003,318-258-5811,W,M,,305,12/31/2010,01/01/2007,Mr. Spurlock -Marshal ,Town of Homer ,400 E. Main,,Homer,LA,71040,318-927-3555,CLAIBORNE,Russell Mills,705 S. Second St.,,Homer,LA,71040,318-245-2149,W,M,,305,12/31/2010,01/01/2007,Mr. Mills -Alderman ,Village of Athens ,P. O. Box 69,,Athens,LA,71003,318-258-5275,CLAIBORNE,Melver Stassen,P.O. Box 235,,Athens,LA,71003,318-258-3067,W,F,,310,12/31/2010,01/01/2007,Mr. Stassen -Alderman ,Village of Athens ,P. O. Box 69,,Athens,LA,71003,318-258-5275,CLAIBORNE,Prentis B. Washington,P. O. Box 185,,Homer,LA,71040,318-258-3489,B,M,,310,12/31/2010,04/14/2009,Ms. Washington -Alderman ,Village of Athens ,P. O. Box 69,,Athens,LA,71003,318-258-5275,CLAIBORNE,"Ardis L. Willhite, Jr.",244 WPA Rd.,,Homer,LA,71040,318-258-4771,W,M,,310,12/31/2010,02/23/2009,Mr. Willhite -Alderman ,Village of Lisbon ,P. O. Box 248,,Lisbon,LA,71048,,CLAIBORNE,Jerry W. Clements,21230 Hwy. 2,,Homer,LA,71040,318-353-6530,W,M,,310,12/31/2012,01/01/2009,Mr. Clements -Alderman ,Village of Lisbon ,P. O. Box 248,,Lisbon,LA,71048,,CLAIBORNE,Marilyn Lowrey Myers,P. O. Box 246,,Lisbon,LA,71048,318-353-6647,W,F,,310,12/31/2012,01/01/2009,Ms. Myers -Alderman ,Village of Lisbon ,P. O. Box 248,,Lisbon,LA,71048,,CLAIBORNE,"""Andy"" Roberts",19973 Hwy. 2,,Homer,LA,71040,318-353-2116,W,M,R,310,12/31/2012,01/01/2009,Mr. Roberts -Council Member ,"District 1, Town of Haynesville ",1711 Main St.,,Haynesville,LA,71038,318-624-0911,CLAIBORNE,"Valinda ""Faye"" Webb",206 Zion Dr.,,Haynesville,LA,71038,318-624-0778,B,F,O,310,06/30/2013,07/01/2009,Ms. Webb -Council Member ,"District 2, Town of Haynesville ",1711 Main St.,,Haynesville,LA,71038,318-624-0911,CLAIBORNE,Herbert Taylor,108 Cowboy Dr.,,Haynesville,LA,71038,318-624-0515,W,M,O,310,06/30/2013,07/01/2009,Mr. Taylor -Council Member ,"District 3, Town of Haynesville ",1711 Main St.,,Haynesville,LA,71038,318-624-0911,CLAIBORNE,"Barbara Beene ""Net"" Torrence",1495 Washington Dr.,,Haynesville,LA,71038,318-624-3085,B,F,,310,06/30/2013,07/01/2009,Ms. Torrence -Council Member ,"District 4, Town of Haynesville ",1711 Main St.,,Haynesville,LA,71038,318-624-0911,CLAIBORNE,Brian Bogle,P.O. Box 202,,Haynesville,LA,71038,318-624-9154,W,M,,310,06/30/2013,07/01/2009,Mr. Bogle -Council Member ,"District 5, Town of Haynesville ",1711 Main St.,,Haynesville,LA,71038,318-624-0911,CLAIBORNE,Carla Frasier Smith,700 Marietta Dr.,,Haynesville,LA,71038,318-624-2221,W,F,O,310,06/30/2013,07/01/2009,Mr. Smith -Selectman ,"District 1, Town of Homer ",400 E. Main,,Homer,LA,71040,318-927-3555,CLAIBORNE,"Scott B. ""Doc"" Roberson",1201 Hill St.,,Homer,LA,71040,318-927-6983,B,M,D,310,12/31/2010,10/27/2009,Mr. Roberson -Selectman ,"District 2, Town of Homer ",400 E. Main,,Homer,LA,71040,318-927-3555,CLAIBORNE,Michael J. Wade,259 Scott St.,,Homer,LA,71040,318-927-2936,B,M,,310,12/31/2010,01/01/2007,Mr. Wade -Selectman ,"District 3, Town of Homer ",400 E. Main,,Homer,LA,71040,318-927-3555,CLAIBORNE,Toney Johnson,P.O. Box 195,,Homer,LA,71040,318-927-6942,W,M,D,310,12/31/2010,01/01/2007,Mr. Johnson -Selectman ,"District 4, Town of Homer ",400 E. Main,,Homer,LA,71040,318-927-3555,CLAIBORNE,Carlette Sanford,623 Edgewood Dr.,,Homer,LA,71040,318-927-2426,W,F,,310,12/31/2010,01/01/2007,Ms. Sanford -Selectman ,"District 5, Town of Homer ",400 E. Main,,Homer,LA,71040,318-927-3555,CLAIBORNE,Patricia K. Jenkins,501 E. Fifth St.,,Homer,LA,71040,318-927-9537,B,F,,310,12/31/2010,01/01/2007,Ms. Jenkins -DPEC Member ,at Large ,,,,LA,,,CONCORDIA,Justin Conner,P.O. Box 1014,,Ferriday,LA,71334,318-757-1469,B,M,D,054,02/20/2012,02/20/2008,Mr. Conner -DPEC Member ,at Large ,,,,LA,,,CONCORDIA,Shirley Johnson,529 Belle Grove Cir.,,Vidalia,LA,71373,318-336-9597,W,F,D,054,02/20/2012,02/20/2008,Ms. Johnson -DPEC Member ,at Large ,,,,LA,,,CONCORDIA,Glenda Price Lewis,2744 Hwy 569,,Ferriday,LA,71334,318-757-9145,W,F,D,054,02/20/2012,02/20/2008,Ms. Lewis -DPEC Member ,at Large ,,,,LA,,,CONCORDIA,Paul Scott,P.O. Box 721,,Jonesville,LA,71343,318-339-8282,W,M,D,054,02/20/2012,02/20/2008,Mr. Scott -DPEC Member ,at Large ,,,,LA,,,CONCORDIA,Tanya Tassin,400 Laurel St.,,Vidalia,LA,71373,318-336-4735,W,F,D,054,02/20/2012,02/20/2008,Ms. Tassin -DPEC Member ,"District 1, Place A ",,,,LA,,,CONCORDIA,Dorothy Johnson,701 6th St.,,Ferriday,LA,71334,318-757-6484,B,F,D,056,02/20/2012,02/20/2008,Ms. Johnson -DPEC Member ,"District 1, Place B ",,,,LA,,,CONCORDIA,"William H. ""Billy"" Rucker",P.O. Box 285,,Ferriday,LA,71334,318-757-8257,W,M,D,056,02/20/2012,02/20/2008,Mr. Rucker -DPEC Member ,District 2 ,,,,LA,,,CONCORDIA,"Raymond T. Riley, Sr.",P.O. Box 243,,Vidalia,LA,71373,318-336-8070,B,M,D,056,02/20/2012,02/20/2008,Mr. Riley -DPEC Member ,"District 3, Place A ",,,,LA,,,CONCORDIA,Kathleen M. Stevens,602 N. Oak,,Vidalia,LA,71373,318-336-7057,W,F,D,056,02/20/2012,02/20/2008,Ms. Stevens -DPEC Member ,"District 3, Place B ",,,,LA,,,CONCORDIA,Don W. Tate,P.O. Box 951,,Vidalia,LA,71373,318-336-5752,W,M,D,056,02/20/2012,02/20/2008,Mr. Tate -DPEC Member ,"District 4, Place A ",,,,LA,,,CONCORDIA,Charles Stutson,411 Corbett St.,,Ferriday,LA,71334,318-757-4336,W,M,D,056,02/20/2012,02/20/2008,Mr. Stutson -DPEC Member ,"District 4, Place B ",,,,LA,,,CONCORDIA,Ann Goodman,319 Crestview,,Ferriday,LA,71334,318-757-6806,W,F,D,056,02/20/2012,02/20/2008,Ms. Goodman -DPEC Member ,District 5A ,,,,LA,,,CONCORDIA,"Bryant O. Hammett, Jr.",435 Enterkin Rd.,,Ferriday,LA,71334,,W,M,D,056,02/20/2012,02/20/2008,Mr. Hammett -DPEC Member ,District 5B ,,,,LA,,,CONCORDIA,Ray Routon,P.O. Box 371,,Monterey,LA,71354,318-386-7681,W,M,D,056,02/20/2012,02/20/2008,Mr. Routon -RPEC Member ,at Large ,,,,LA,,,CONCORDIA,Emerson U. Slain,P. O. Box 1618,,Ferriday,LA,71334,318-757-9474,B,M,R,064,02/20/2012,02/20/2008 -RPEC Member ,"District 1, Place A ",,,,LA,,,CONCORDIA,,,,,,,,,,,066 -RPEC Member ,"District 1, Place B ",,,,LA,,,CONCORDIA,Mary Bradford Gibson,P. O. Box 1739,,Ferriday,LA,71334,318-757-7821,W,F,R,066,02/20/2012,02/20/2008,Ms. Gibson -RPEC Member ,District 2 ,,,,LA,,,CONCORDIA,,,,,,,,,,,066 -RPEC Member ,"District 3, Place A ",,,,LA,,,CONCORDIA,,,,,,,,,,,066 -RPEC Member ,"District 3, Place B ",,,,LA,,,CONCORDIA,Susan Rabb,107 Lee Ave.,,Vidalia,LA,71373,318-336-5988,W,F,R,066,02/20/2012,02/20/2008,Ms. Rabb -RPEC Member ,"District 4, Place A ",,,,LA,,,CONCORDIA,Ronnie W. Bradford,111 Huntington Dr.,,Ferriday,LA,71334,318-757-2927,W,M,R,066,02/20/2012,02/20/2008,Mr. Bradford -RPEC Member ,"District 4, Place B ",,,,LA,,,CONCORDIA,,,,,,,,,,,066 -RPEC Member ,District 5A ,,,,LA,,,CONCORDIA,,,,,,,,,,,066 -RPEC Member ,District 5B ,,,,LA,,,CONCORDIA,,,,,,,,,,,066 -Sheriff ,,"4001 Carter St., Rm. 6",,Vidalia,LA,71373,318-336-5231,CONCORDIA,Randy Maxwell,"4001 Carter St., Rm. 6",,Vidalia,LA,71373,318-757-9498,W,M,D,225,06/30/2012,07/01/2008,Sheriff Maxwell -Clerk of Court ,,P. O. Box 790,,Vidalia,LA,71373,318-336-4204,CONCORDIA,"Clyde Ray Webber, Jr.",P.O. Box 790,,Vidalia,LA,71373,318-757-3716,W,M,R,230,06/30/2012,07/01/2008,Mr. Webber -Assessor ,,"4001 Carter St., Rm. 3",,Vidalia,LA,71373,318-336-5122,CONCORDIA,Monelle Moseley,P.O. Box 365,,Vidalia,LA,71373,318-336-5856,W,F,,235,12/31/2012,01/01/2009,Ms. Moseley -Coroner ,,100 Lincoln Ave.,,Ferriday,LA,71334,318-757-7000,CONCORDIA,Sarah Lee,P.O. Box 526,,Ferriday,LA,71334,318-757-9910,B,F,,240,03/25/2012,03/24/2008,Ms. Lee -Police Juror,"District 1, Place A","4001 Carter St., Rm. 1",,Vidalia,LA,71373,318-336-7151,CONCORDIA,Carey H. Cook,P.O. Box 585,,Ferriday,LA,71334,318-757-2251,B,M,D,245,01/08/2012,01/14/2008,Mr. Cook -Police Juror ,"District 1, Place B ","4001 Carter St., Rm. 1",,Vidalia,LA,71373,318-336-7151,CONCORDIA,"Joe ""Bear"" Parker",P.O. Box 113,,Clayton,LA,71326,318-757-6470,B,M,D,245,01/08/2012,01/14/2008,Mr. Parker -Police Juror ,District 2 ,"4001 Carter St., Rm. 1",,Vidalia,LA,71373,318-336-7151,CONCORDIA,Willie Dunbar,108 Concordia Park Dr.,,Vidalia,LA,71373,318-336-5806,B,M,D,245,01/08/2012,01/14/2008,Mr. Dunbar -Police Juror ,"District 3, Place A ","4001 Carter St., Rm. 1",,Vidalia,LA,71373,318-336-7151,CONCORDIA,Randy Temple,1008 Guillory St.,,Vidalia,LA,71373,318-336-7005,W,M,D,245,01/08/2012,01/14/2008,Mr. Temple -Police Juror ,"District 3, Place B ","4001 Carter St., Rm. 1",,Vidalia,LA,71373,318-336-7151,CONCORDIA,Whest Shirley,156 Lee Ave.,,Vidalia,LA,71373,318-336-9267,W,M,R,245,01/08/2012,01/14/2008,Mr. Shirley -Police Juror ,"District 4, Place A ","4001 Carter St., Rm. 1",,Vidalia,LA,71373,318-336-7151,CONCORDIA,Jerry Beatty,P.O. Box 61,,Ferriday,LA,71334,318-757-0881,W,M,D,245,01/08/2012,01/14/2008,Mr. Beatty -Police Juror ,"District 4, Place B ","4001 Carter St., Rm. 1",,Vidalia,LA,71373,318-336-7151,CONCORDIA,Melvin Ferrington,410 Cowan St.,,Ferriday,LA,71334,318-757-4671,W,M,D,245,01/08/2012,01/14/2008,Mr. Ferrington -Police Juror ,"District 5, Place A ","4001 Carter St., Rm. 1",,Vidalia,LA,71373,318-336-7151,CONCORDIA,Jimmy Jernigan,1217 Loop Rd.,,Jonesville,LA,71343,318-339-8892,W,M,D,245,01/08/2012,01/14/2008,Mr. Jernigan -Police Juror ,"District 5, Place B ","4001 Carter St., Rm. 1",,Vidalia,LA,71373,318-336-7151,CONCORDIA,"Tommy ""Red"" Tiffee",679 Hwy 907,,Monterey,LA,71354,318-386-2802,W,M,D,245,01/08/2012,01/14/2008,Mr. Tiffee -City Judge ,"City Court, Town of Vidalia ",409 Texas St.,,Vidalia,LA,71373,318-336-5272,CONCORDIA,"George C. Murray, Jr.",P.O. Box 1030,,Vidalia,LA,71373-1030,318-336-5272,W,M,D,250,12/31/2010,01/01/2005,Judge Murray -City Marshal ,"City Court, Town of Vidalia ",409 Texas St.,,Vidalia,LA,71373,318-336-6255,CONCORDIA,"""Jim"" Boren",1208 Apple St.,,Vidalia,LA,71373,318-336-7769,W,M,O,250,12/31/2010,01/01/2005,Mr. Boren -Member of School Board ,"District 1, Place A ",P. O. Box 950,,Vidalia,LA,71373,318-336-4226,CONCORDIA,Fred T. Butcher,220 Martin Luther King,,Ferriday,LA,71334,,B,M,D,255,12/31/2010,01/01/2007,Mr. Butcher -Member of School Board ,"District 1, Place B ",P. O. Box 950,,Vidalia,LA,71373,318-336-4226,CONCORDIA,Mary H. Campbell,P.O. Box 61,,Clayton,LA,71326,318-757-6352,B,F,D,255,12/31/2010,01/01/2007,Ms. Campbell -Member of School Board ,District 2 ,P. O. Box 950,,Vidalia,LA,71373,318-336-4226,CONCORDIA,Raymond T. Riley,P.O. Box 243,,Vidalia,LA,71373,,B,M,D,255,12/31/2010,01/01/2007,Mr. Riley -Member of School Board ,"District 3, Place A ",P. O. Box 950,,Vidalia,LA,71373,318-336-4226,CONCORDIA,Gary Parnham,400 Elm St.,,Vidalia,LA,71373,318-336-5564,W,M,D,255,12/31/2010,01/01/2007,Mr. Parnham -Member of School Board ,"District 3, Place B ",P. O. Box 950,,Vidalia,LA,71373,318-336-4226,CONCORDIA,"""Deanie"" Roberts",2038 Eleanor St.,,Vidalia,LA,71373,318-336-9616,W,F,R,255,12/31/2010,09/14/2007,Ms. Roberts -Member of School Board ,"District 4, Place A ",P. O. Box 950,,Vidalia,LA,71373,318-336-4226,CONCORDIA,"Ricky Lee Raven, Sr.",112 Shady Ln.,,Ferriday,LA,71334,318-757-8259,W,M,O,255,12/31/2010,01/01/2007,Mr. Raven -Member of School Board ,"District 4, Place B ",P. O. Box 950,,Vidalia,LA,71373,318-336-4226,CONCORDIA,Daryle W. Price,233 Crestview Dr.,,Ferriday,LA,71334,318-757-2008,W,M,O,255,12/31/2010,01/01/2007,Mr. Price -Member of School Board ,"District 5, Place A ",P. O. Box 950,,Vidalia,LA,71373,318-336-4226,CONCORDIA,Martha J. Rabb,500 Lincoln Ave. 14B,,Ferriday,LA,71334,318-757-9987,W,F,O,255,12/31/2010,01/01/2007,Ms. Rabb -Member of School Board ,"District 5, Place B ",P. O. Box 950,,Vidalia,LA,71373,318-336-4226,CONCORDIA,Darlene Baker,311 Co-op Rd.,,Monterey,LA,71354,318-386-7852,W,F,D,255,12/31/2010,01/01/2007,Mr. Baker -Justice of the Peace ,Justice of the Peace District 1 ,P. O. Box 1014,,Ferriday,LA,71334,318-757-2834,CONCORDIA,Justin L. Conner,P.O. Box 1014,,Ferriday,LA,71334,318-757-1469,B,M,D,265,12/31/2014,01/01/2009,Mr. Conner -Justice of the Peace ,Justice of the Peace District 2 ,207 Pine St.,,Vidalia,LA,71373,318-336-9534,CONCORDIA,Frank Duson,P. O. Box 495,,Vidalia,LA,71373,318-336-6134,B,M,D,265,12/31/2014,01/01/2009,Mr. Duson -Justice of the Peace ,Justice of the Peace District 3 ,1207 Peach St.,,Vidalia,LA,71373,318-336-5723,CONCORDIA,Russell Wagoner,565 Hwy. 131,,Vidalia,LA,71373,318-336-5803,W,M,R,265,12/31/2014,01/01/2009,Mr. Wagoner -Justice of the Peace ,Justice of the Peace District 4 ,1198 Fishermans Dr.,,Ferriday,LA,71334,318-757-7613,CONCORDIA,Jerry Stallings,1198 Fisherman Dr.,,Ferriday,LA,71334,318-757-7613,W,M,D,265,12/31/2014,01/01/2009,Mr. Stallings -Justice of the Peace ,Justice of the Peace District 5A ,5448 Dunbarton Rd.,,Ferriday,LA,71334,318-757-8977,CONCORDIA,"Charles E. ""Charlie"" White",5448 Dunbarton Rd.,,Ferriday,LA,71334,318-757-8977,W,M,D,265,12/31/2014,01/01/2009,Mr. White -Justice of the Peace ,Justice of the Peace District 5B ,8878 Hwy. 129,,Monterey,LA,71354,318-386-7193,CONCORDIA,Levear Book,8878 Hwy. 129,,Monterey,LA,71354,318-386-7193,W,M,D,265,12/31/2014,01/01/2009,Mr. Book -Constable ,Justice of the Peace District 1 ,263 Concordia Dr.,,Ferriday,LA,71334,318-757-2714,CONCORDIA,Rosa W. Elaine,263 Concordia Dr.,,Ferriday,LA,71334,318-757-2714,B,F,D,267,12/31/2014,01/01/2009,Ms. Ewing -Constable ,Justice of the Peace District 2 ,200 South Oak St.,,Vidalia,LA,71373,318-336-9968,CONCORDIA,Rickey Hollins,200 S. Oak St.,,Vidalia,LA,71373,318-336-9063,B,M,D,267,12/31/2014,01/01/2009,Mr. Hollins -Constable ,Justice of the Peace District 3 ,1104 Plum St.,,Vidalia,LA,71373,318-336-5105,CONCORDIA,Susan Rabb,107 Lee Ave.,,Vidalia,LA,71373,318-336-5988,W,F,R,267,12/31/2014,01/01/2009,Ms. Rabb -Constable ,Justice of the Peace District 4 ,391 Belle Gr.,,Vidalia,LA,71373,318-336-7681,CONCORDIA,"Ferris ""Bull"" Durham",902 Vidalia Dr.,,Ridgecrest,LA,71334,318-757-1800,W,M,D,267,12/31/2014,01/01/2009,Mr. Durham -Constable ,Justice of the Peace District 5A ,3211 Dunbarton Rd.,,Ferriday,LA,71334,318-757-2526,CONCORDIA,John H. Cowan,3211 Dunbarton Rd.,,Ferriday,LA,71373,318-757-2526,W,M,R,267,12/31/2014,01/01/2009,Mr. Cowan -Constable ,Justice of the Peace District 5B ,10085 Hwy. 129,,Monterey,LA,71354,318-386-2649,CONCORDIA,Jerry Lipsey,10085 Hwy. 129,,Monterey,LA,71354,318-386-2649,W,M,D,267,12/31/2014,01/01/2009,Mr. Lipsey -Mayor ,Town of Clayton ,P. O. Box 277,,Clayton,LA,,318-757-8540,CONCORDIA,Rydell Turner,P.O. Box 533,,Clayton,LA,71326,318-719-0065,B,M,O,300,06/30/2012,07/01/2008,Mayor Turner -Mayor ,Town of Ferriday ,1116 Second St.,,Ferriday,LA,,318-757-3411,CONCORDIA,Glen McGlothin,812 Mickey Gilley Ave.,,Ferriday,LA,71334,318-757-3579,W,M,D,300,06/30/2012,07/01/2008,Mayor McGlothin -Mayor ,Town of Ridgecrest ,116 Foster Dr.,,Ridgecrest,LA,,318-757-4497,CONCORDIA,Kevin Graham,117 Grape St.,,Ridgecrest,LA,71334,318-719-1611,W,M,,300,12/31/2010,08/24/2009,Mayor Graham -Mayor ,Town of Vidalia ,P. O. Box 2010,,Vidalia,LA,,318-336-5206,CONCORDIA,Hyram Copeland,603 Elm St.,,Vidalia,LA,71373,318-336-7341,W,M,D,300,06/30/2012,07/01/2008,Mayor Copeland -Chief of Police ,Town of Clayton ,P. O. Box 277,,Clayton,LA,71326,318-757-8540,CONCORDIA,"Clarence ""PaPa"" Skipper",P.O. Box 203,,Clayton,LA,71326,318-757-6833,B,M,D,305,06/30/2012,07/01/2008,Chief Skipper -Chief of Police ,Town of Ridgecrest ,116 Foster Dr.,,Ridgecrest,LA,71334,318-757-4497,CONCORDIA,Wanda Smith,116 Foster Dr.,,Ridgecrest,LA,71334,,,,,305,,10/08/2009,Chief Smith -Chief of Police ,Town of Vidalia ,P. O. Box 2010,,Vidalia,LA,71373,318-336-5206,CONCORDIA,"Ronnie G.""Tapper"" Hendricks",402 Willow St.,,Vidalia,LA,71373,318-336-8230,W,M,O,305,06/30/2012,07/01/2008,Chief Hendricks -Alderman ,"District 1, Town of Vidalia ",P. O. Box 2010,,Vidalia,LA,71373,318-336-5206,CONCORDIA,"Triand ""Tron"" McCoy",P.O. Box 382,,Vidalia,LA,71373,318-336-3583,B,M,D,310,06/30/2012,07/01/2008,Mr. McCoy -Alderman ,"District 2, Town of Vidalia ",P. O. Box 2010,,Vidalia,LA,71373,318-336-5206,CONCORDIA,Vernon Stevens,602 N. Oak St.,,Vidalia,LA,71373,318-336-7057,W,M,D,310,06/30/2012,07/01/2008,Mr. Stevens -Alderman ,"District 3, Town of Vidalia ",P. O. Box 2010,,Vidalia,LA,71373,318-336-5206,CONCORDIA,Jon D. Betts,2030 Charles St.,,Vidalia,LA,71373,318-336-5976,W,M,R,310,06/30/2012,07/01/2008 -Alderman ,"District 3, Town of Vidalia ",P. O. Box 2010,,Vidalia,LA,71373,318-336-5206,CONCORDIA,"Richard S. ""Ricky"" Knapp",1006 Guillory St.,,Vidalia,LA,71373,318-336-8676,W,M,O,310,06/30/2012,07/01/2008,Mr. Knapp -Alderman ,"District 3, Town of Vidalia ",P. O. Box 2010,,Vidalia,LA,71373,318-336-5206,CONCORDIA,"Maureen ""Mo"" Saunders",P.O. Box 424,,Vidalia,LA,71373,318-336-2525,W,F,D,310,06/30/2012,07/01/2008,Ms. Saunders -Alderman ,"District A, Town of Ferriday ",1116 Second St.,,Ferriday,LA,71334,318-757-3411,CONCORDIA,Somer Lance,107 Crescent Dr.,,Ferriday,LA,71334,318-757-2902,W,F,R,310,06/30/2012,07/01/2008,Ms. Lance -Alderman ,"District B, Town of Ferriday ",1116 Second St.,,Ferriday,LA,71334,318-757-3411,CONCORDIA,"Elijah ""Stepper"" Banks",727 Tennessee Ave.,,Ferriday,LA,71334,318-880-1398,B,M,O,310,06/30/2012,07/01/2008,Mr. Banks -Alderman ,"District C, Town of Ferriday ",1116 Second St.,,Ferriday,LA,71334,318-757-3411,CONCORDIA,Jerome Harris,P.O. Box 1325,,Ferriday,LA,71334,318-719-5625,B,M,D,310,06/30/2012,07/01/2008,Mr. Harris -Alderman ,"District D, Town of Ferriday ",1116 Second St.,,Ferriday,LA,71334,318-757-3411,CONCORDIA,Johnnie Brown,P.O. Box 642,,Ferriday,LA,71334,318-757-8532,B,M,D,310,06/30/2012,07/01/2008,Mr. Brown -Alderman ,"District E, Town of Ferriday ",1116 Second St.,,Ferriday,LA,71334,318-757-3411,CONCORDIA,Gloria Lloyd,P.O. Box 1244,,Ferriday,LA,71334,318-757-1624,B,F,D,310,06/30/2012,07/01/2008,Ms. Lloyd -Alderman ,Town of Clayton ,P. O. Box 277,,Clayton,LA,71326,318-757-8540,CONCORDIA,Floyd Barber,P.O. Box 152,,Clayton,LA,71326,318-757-9981,B,M,D,310,06/30/2012,07/01/2008,Mr. Barber -Alderman ,Town of Clayton ,P. O. Box 277,,Clayton,LA,71326,318-757-8540,CONCORDIA,"""Sandy"" Clayton",P.O. Box 211,,Clayton,LA,71326,318-757-8039,W,F,O,310,06/30/2012,07/01/2008,Ms. Clayton -Alderman ,Town of Clayton ,P. O. Box 277,,Clayton,LA,71326,318-757-8540,CONCORDIA,"Willie ""Bill"" Evans",P.O. Box 496,,Clayton,LA,71326,318-757-3722,B,M,D,310,06/30/2012,07/01/2008,Mr. Evans -Alderman ,Town of Clayton ,P. O. Box 277,,Clayton,LA,71326,318-757-8540,CONCORDIA,Irene Jefferson,P.O. Box 202,,Clayton,LA,71326,318-757-4405,B,F,D,310,06/30/2012,07/01/2008,Ms. Jefferson -Alderman ,Town of Clayton ,P. O. Box 277,,Clayton,LA,71326,318-757-8540,CONCORDIA,"Carl R. Thompson, Sr.",P.O. Box 234,,Clayton,LA,71325,318-757-2939,B,M,O,310,06/30/2012,07/01/2008,Mr. Thompson -Alderman ,Town of Ridgecrest ,116 Foster Dr.,,Ridgecrest,LA,71334,318-757-4497,CONCORDIA,Gayle A. Cowan,112 Oak St.,,Ridgecrest,LA,71334,318-757-7862,W,F,D,310,12/31/2010,01/01/2007,Ms. Cowan -Alderman ,Town of Ridgecrest ,116 Foster Dr.,,Ridgecrest,LA,71334,318-757-4497,CONCORDIA,James Cowan,123 Pear St.,,Ridgecrest,LA,71334,318-757-4376,W,M,D,310,12/31/2010,01/01/2007,Mr. Cowan -Alderman ,Town of Ridgecrest ,116 Foster Dr.,,Ridgecrest,LA,71334,318-757-4497,CONCORDIA,Robert D. Maples,107 Grape St.,,Ridgecrest,LA,71334,318-757-2982,W,M,D,310,12/31/2010,01/01/2007,Mr. Maples -Alderman ,Town of Ridgecrest ,116 Foster Dr.,,Ridgecrest,LA,71334,318-757-4497,CONCORDIA,Dwayne Sikes,209 Ferriday Dr.,,Ridgecrest,LA,71334,318-757-1325,W,M,,310,12/31/2010,08/24/2009,Mr. Sikes -DPEC Member ,at Large ,,,,LA,,,DE SOTO,Kenny Cox,300 High School St.,,Mansfield,LA,71052,318-871-5749,B,M,D,054,02/20/2012,02/20/2008,Mr. Cox -DPEC Member ,District 1A ,,,,LA,,,DE SOTO,,,,,,,,,,,056 -DPEC Member ,District 1B ,,,,LA,,,DE SOTO,,,,,,,,,,,056 -DPEC Member ,District 1C ,,,,LA,,,DE SOTO,,,,,,,,,,,056 -DPEC Member ,District 2 ,,,,LA,,,DE SOTO,,,,,,,,,,,056 -DPEC Member ,District 3 ,,,,LA,,,DE SOTO,,,,,,,,,,,056 -DPEC Member ,District 4A ,,,,LA,,,DE SOTO,,,,,,,,,,,056 -DPEC Member ,District 4B ,,,,LA,,,DE SOTO,,,,,,,,,,,056 -DPEC Member ,District 4C ,,,,LA,,,DE SOTO,,,,,,,,,,,056 -DPEC Member ,District 4D ,,,,LA,,,DE SOTO,,,,,,,,,,,056 -DPEC Member ,District 5 ,,,,LA,,,DE SOTO,,,,,,,,,,,056 -DPEC Member ,District 6 ,,,,LA,,,DE SOTO,,,,,,,,,,,056 -RPEC Member ,at Large ,,,,LA,,,DE SOTO,,,,,,,,,,,064 -RPEC Member ,District 1A ,,,,LA,,,DE SOTO,,,,,,,,,,,066 -RPEC Member ,District 1B ,,,,LA,,,DE SOTO,,,,,,,,,,,066 -RPEC Member ,District 1C ,,,,LA,,,DE SOTO,,,,,,,,,,,066 -RPEC Member ,District 2 ,,,,LA,,,DE SOTO,,,,,,,,,,,066 -RPEC Member ,District 3 ,,,,LA,,,DE SOTO,,,,,,,,,,,066 -RPEC Member ,District 4A ,,,,LA,,,DE SOTO,,,,,,,,,,,066 -RPEC Member ,District 4B ,,,,LA,,,DE SOTO,,,,,,,,,,,066 -RPEC Member ,District 4C ,,,,LA,,,DE SOTO,,,,,,,,,,,066 -RPEC Member ,District 4D ,,,,LA,,,DE SOTO,"Bryan B. Norwood, Jr.",180 Norwood Rd.,,Mansfield,LA,71052,318-872-4707,W,M,R,066,02/20/2012,02/20/2008,Mr. Norwood -RPEC Member ,District 5 ,,,,LA,,,DE SOTO,,,,,,,,,,,066 -RPEC Member ,District 6 ,,,,LA,,,DE SOTO,,,,,,,,,,,066 -Sheriff ,,205 Franklin St.,,Mansfield,LA,71052,318-872-3956,DE SOTO,Rodney Arbuckle,205 Franklin St.,,Mansfield,LA,71052,318-925-4472,W,M,D,225,06/30/2012,07/01/2008,Sheriff Arbuckle -Clerk of Court ,,P. O. Box 1206,,Mansfield,LA,71052,318-872-3110,DE SOTO,"O. L. ""Sonny"" Stone, Jr.",P.O. Box 1206,,Mansfield,LA,71052,318-872-6308,W,M,D,230,06/30/2012,07/01/2008,Mr. Stone -Assessor ,,212 Adams St.,,Mansfield,LA,71052,318-872-3610,DE SOTO,Jimmy Stephens,189 Hatcher Ln.,,Logansport,LA,71049,318-697-5059,W,M,D,235,12/31/2012,01/01/2009,Mr. Stephens -Coroner ,,P.O. Box 899,,Mansfield,LA,71052,318-872-0516,DE SOTO,Jack Grindle,689 George Hunt Rd.,,Grand Cane,LA,71032,318-858-2244,W,M,R,240,03/25/2012,03/24/2008,Mr. Grindle -Police Juror,District 1A,P. O. Box 898,,Mansfield,LA,71052,318-872-0738,DE SOTO,"Gerald ""Jerry"" Moncrief",242 Petty Rd.,,Logansport,LA,71049,318-697-6654,W,M,D,245,01/08/2012,01/14/2008,Mr. Moncrief -Police Juror ,District 1B ,P. O. Box 898,,Mansfield,LA,71052,318-872-0738,DE SOTO,Dewayne Mitchell,871 Cash Blackmon Rd.,,Logansport,LA,71049,318-697-2767,W,M,D,245,01/08/2012,01/14/2008,Mr. Mitchell -Police Juror ,District 1C ,P. O. Box 898,,Mansfield,LA,71052,318-872-0738,DE SOTO,Jarrell O. Burch,933 Schley St.,,Mansfield,LA,71052,318-697-5316,W,M,D,245,01/08/2012,01/14/2008,Mr. Burch -Police Juror ,District 2 ,P. O. Box 898,,Mansfield,LA,71052,318-872-0738,DE SOTO,A. W. McDonald,P.O. Box 898,,Mansfield,LA,71052,,,,,245,,10/22/2009,Mr. McDonald -Police Juror ,District 2 ,P. O. Box 898,,Mansfield,LA,71052,318-872-0738,DE SOTO,"A. W. McDonald, ",185 Cathey Rd.,,Stonewall,LA,71078-9504,318-925-9362,W,M,R,245,,02/15/2010 -Police Juror ,District 3 ,P. O. Box 898,,Mansfield,LA,71052,318-872-0738,DE SOTO,"""Greg"" Baker",1611 Red Bluff Rd.,,Stonewall,LA,71078,318-925-9872,W,M,R,245,01/08/2012,01/14/2008,Mr. Baker -Police Juror ,District 4A ,P. O. Box 898,,Mansfield,LA,71052,318-872-0738,DE SOTO,Richard Fuller,169 Doris Dr.,,Grand Cane,LA,71032,318-872-1400,B,M,D,245,01/08/2012,01/14/2008,Mr. Fuller -Police Juror ,District 4B ,P. O. Box 898,,Mansfield,LA,71052,318-872-0738,DE SOTO,Jeff L. Heard,P.O. Box 1053,,Mansfield,LA,71052,318-872-5046,W,M,D,245,01/08/2012,01/14/2008,Mr. Heard -Police Juror ,District 4C ,P. O. Box 898,,Mansfield,LA,71052,318-872-0738,DE SOTO,Ernel Jones,15029 Hwy. 175,,Mansfield,LA,71052,318-872-3358,B,M,D,245,01/08/2012,01/14/2008,Mr. Jones -Police Juror ,District 4D ,P. O. Box 898,,Mansfield,LA,71052,318-872-0738,DE SOTO,Sylvester Mayweather,675 Railroad Ave.,,Mansfield,LA,71052,318-872-1610,B,M,D,245,01/08/2012,01/14/2008,Mr. Mayweather -Police Juror ,District 5 ,P. O. Box 898,,Mansfield,LA,71052,318-872-0738,DE SOTO,Reggie Roe,877 Friendship Rd.,,Frierson,LA,71027,318-797-8807,W,M,D,245,01/08/2012,01/14/2008,Mr. Roe -Police Juror ,District 6 ,P. O. Box 898,,Mansfield,LA,71052,318-872-0738,DE SOTO,Fred Jones,532 Reddix Rd.,,Pelican,LA,71063,318-755-2870,B,M,D,245,01/08/2012,01/14/2008,Mr. Jones -Member of School Board ,District 1 ,201 Crosby St.,,Mansfield,LA,71052,318-872-3993,DE SOTO,Dudley M. Glenn,P.O. Box 85,,Gloster,LA,71030,318-933-5275,W,M,D,255,12/31/2010,01/01/2007,Mr. Glenn -Member of School Board ,District 2 ,201 Crosby St.,,Mansfield,LA,71052,318-872-3993,DE SOTO,Neil Henderson,939 Hwy 171,,Stonewall,LA,71078,318-453-9189,W,M,R,255,12/31/2010,01/01/2007 -Member of School Board ,District 3 ,201 Crosby St.,,Mansfield,LA,71052,318-872-3993,DE SOTO,Mclawrence Fuller,208 Doris Dr.,,Grand Cane,LA,71032,318-872-4767,B,M,D,255,12/31/2010,01/01/2007 -Member of School Board ,District 4 ,201 Crosby St.,,Mansfield,LA,71052,318-872-3993,DE SOTO,"""Donnie"" Dufour",P.O. Box 734,,Mansfield,LA,71052,318-872-3533,W,M,D,255,12/31/2010,01/01/2007 -Member of School Board ,District 5 ,201 Crosby St.,,Mansfield,LA,71052,318-872-3993,DE SOTO,Shirley Payne,165 Richardson Rd.,,Pelican,LA,71063,318-755-2851,B,F,D,255,12/31/2010,10/14/2008,Ms. Payne -Member of School Board ,District 6 ,201 Crosby St.,,Mansfield,LA,71052,318-872-3993,DE SOTO,John A. Neilson,P.O. Box 853,,Mansfield,LA,71052,318-872-4821,W,M,D,255,12/31/2010,01/01/2007,Mr. Neilson -Member of School Board ,District 7 ,201 Crosby St.,,Mansfield,LA,71052,318-872-3993,DE SOTO,"""Coach"" Haynes",P.O. Box 354,,Logansport,LA,71049,318-697-5193,W,M,D,255,12/31/2010,01/01/2007,Mr. Haynes -Member of School Board ,District 8 ,201 Crosby St.,,Mansfield,LA,71052,318-872-3993,DE SOTO,Mark Ross,4294 Red Bluff Rd.,,Gloster,LA,71030,318-925-6052,W,M,D,255,12/31/2010,01/01/2007,Mr. Ross -Member of School Board ,District 9 ,201 Crosby St.,,Mansfield,LA,71052,318-872-3993,DE SOTO,"""Tommy"" Craig",106 Clista St.,,Mansfield,LA,71052,318-872-3524,W,M,R,255,12/31/2010,01/01/2007,Mr. Craig -Member of School Board ,District 10 ,201 Crosby St.,,Mansfield,LA,71052,318-872-3993,DE SOTO,Barthlomew Claiborne,407 Jacobs St.,,Mansfield,LA,71052,318-207-7713,B,M,,255,12/31/2010,01/01/2007,Mr. Claiborne -Member of School Board ,District 11 ,201 Crosby St.,,Mansfield,LA,71052,318-872-3993,DE SOTO,"L. J. Mayweather, Jr.",155 Pine Hill Cir.,,Mansfield,LA,71052,318-872-4239,B,M,D,255,12/31/2010,01/01/2007,Mr. Mayweather -Justice of the Peace ,Justice of the Peace District 1 ,182 Helen Ln.,,Logansport,LA,71049,318-697-5707,DE SOTO,Helen Holmes,182 Helen Ln.,,Logansport,LA,71049,318-697-5707,W,F,D,265,12/31/2014,01/01/2009,Ms. Holmes -Justice of the Peace ,Justice of the Peace District 2 ,1801 Hwy. 171,,Stonewall,LA,71078,318-925-0569,DE SOTO,Gloria J. McPhearson,1801 Hwy. 171,,Stonewall,LA,71078,318-925-0569,W,F,D,265,12/31/2014,01/01/2009,Ms. McPhearson -Justice of the Peace ,Justice of the Peace District 3 ,382 Marian Ln.,,Logansport,LA,71049,318-697-5361,DE SOTO,S. Phillip Joyner,562 Hwy. 763,,Mansfield,LA,71052,318-697-2361,W,M,R,265,12/31/2014,01/01/2009,Mr. Joyner -Justice of the Peace ,Justice of the Peace District 4 ,2286 S. Washington St.,,Mansfield,LA,71052,318-872-3291,DE SOTO,"Wilbur T. Purvis, Jr.",P. O. Box 66,,Mansfield,LA,71052,318-872-3291,B,M,D,265,12/31/2014,01/01/2009,Mr. Purvis -Justice of the Peace ,Justice of the Peace District 5 ,854 Hwy. 346,,Pelican,LA,71063,318-755-2391,DE SOTO,"""Pat"" Chamberlin",854 Hwy. 346,,Pelican,LA,71063,318-755-2391,W,M,D,265,12/31/2014,01/01/2009,Mr. Chamberlin -Justice of the Peace ,Justice of the Peace District 6 ,808 Hwy. 5,,Logansport,LA,71049,318-697-4920,DE SOTO,Jerry L. Lowe,2207 Main St.,,Logansport,LA,71049,318-697-5485,W,M,,265,12/31/2014,01/01/2009,Mr. Lowe -Constable ,Justice of the Peace District 1 ,379 Belle Bower Rd.,,Logansport,LA,71049,318-697-5852,DE SOTO,Hollis Holmes,379 Belle Bower Rd.,,Logansport,LA,71049-3219,318-697-5852,W,M,D,267,12/31/2014,01/01/2009,Mr. Holmes -Constable ,Justice of the Peace District 2 ,3310 Red Bluff Rd.,,Gloster,LA,71030,318-925-1240,DE SOTO,"Troy ""Bubba"" Yopp, III",3310 Red Bluff Rd.,,Gloster,LA,71030,318-925-1240,W,M,O,267,12/31/2014,01/01/2009,Mr. Yopp -Constable ,Justice of the Peace District 3 ,1005 Hwy. 763,,Mansfield,LA,71052,318-697-4731,DE SOTO,Billy Murphy,1001 Hwy. 763,,Mansfield,LA,71052,318-697-4731,W,M,D,267,12/31/2014,01/01/2009,Mr. Murphy -Constable ,Justice of the Peace District 4 ,904 Susan St.,,Mansfield,LA,71052,318-697-4731,DE SOTO,"Travis ""Bubba"" English, Jr.",904 Susan St.,,Mansfield,LA,71052,318-872-4239,W,M,D,267,12/31/2014,01/01/2009,Mr. English -Constable ,Justice of the Peace District 5 ,191 Davidson Rd.,,Mansfield,LA,71052,318-872-4794,DE SOTO,Linda Wilburn Davidson,191 Davidson Rd.,,Mansfield,LA,71052,318-872-4794,W,F,D,267,12/31/2014,01/01/2009,Ms. Davidson -Constable ,Justice of the Peace District 6 ,678 Horn Rd.,,Logansport,LA,71049,318-697-5438,DE SOTO,E. J. Barber,678 Horn Rd.,,Logansport,LA,71049,318-697-5438,W,M,D,267,12/31/2014,01/01/2009,Mr. Barber -Mayor ,City of Mansfield ,P. O. Box 773,,Mansfield,LA,,318-872-0406,DE SOTO,Curtis W. McCoy,415 Gibbs St.,,Mansfield,LA,71052,318-872-6527,B,M,D,300,06/30/2010,07/01/2006,Mayor McCoy -Mayor ,City of Mansfield ,P. O. Box 773,,Mansfield,LA,,318-872-0406,DE SOTO,"Curtis W. McCoy, ",415 Gibb St.,,Mansfield,LA,71052-2617,318-872-6527,B,M,D,300 -Mayor ,Town of Keachi ,P. O. Drawer 10,,Keachi,LA,,,DE SOTO,Travis Whitfield,P.O. Box 66,,Keatchie,LA,71046,318-933-8371,W,M,,300,12/31/2010,01/01/2007,Mr. Whitfield -Mayor ,Town of Logansport ,P. O. Box 400,,Logansport,LA,,318-697-5359,DE SOTO,Katherine Freeman,P. O. Box 819,,Logansport,LA,71049,318-697-4459,W,F,R,300,12/31/2012,01/01/2009,Mayor Freeman -Mayor ,Town of Stonewall ,P. O. Box 92,,Stonewall,LA,,318-925-9338,DE SOTO,Curtis McCune,444 Hall Rd.,,Stonewall,LA,71078,318-925-9943,W,M,D,300,06/30/2010,07/01/2006,Mayor McCune -Mayor ,Town of Stonewall ,P. O. Box 92,,Stonewall,LA,,318-925-9338,DE SOTO,"Charles Waldon, ",428 Burford Rd.,,Stonewall,LA,71078-9698,318-925-6688,W,M,N,300 -Mayor ,Village of Grand Cane ,P. O. Box 82,,Grand Cane,LA,,318-858-3251,DE SOTO,"Clayton Davis, Jr.",P.O. Box 471,,Grand Cane,LA,71032,318-858-0825,W,M,R,300,12/31/2010,01/01/2007,Mr. Davis -Mayor ,Village of Longstreet ,P. O. Box 3130,,Longstreet,LA,,318-697-0226,DE SOTO,Frank Joseph Elliott,P.O. Box 3269,,Longstreet,LA,71050,318-697-4532,W,M,,300,06/30/2010,07/01/2006,Mayor Elliott -Mayor ,Village of South Mansfield ,P. O. Box 995,,South Mansfield,LA,,318-872-3960,DE SOTO,Euricka Mayweather,675 Railroad Ave.,,Mansfield,LA,71052-5629,318-872-1610,B,F,D,300,12/31/2012,01/01/2009,Mayor Mayweather -Mayor ,Village of Stanley ,13595 Hwy. 84,,Logansport,LA,,318-697-4768,DE SOTO,Altheaon H. Burch,P.O. Box 772,,Mansfield,LA,71052,318-453-3438,W,F,D,300,06/30/2013,07/01/2009,Mayor Burch -Chief of Police ,Town of Stonewall ,P. O. Box 92,,Stonewall,LA,71078,318-925-9338,DE SOTO,"Thomas H. Dufrene, Jr.",171 Julie Ln.,,Stonewall,LA,71078-9605,318-458-5999,W,M,D,305,06/30/2010,07/21/2008,Chief Dufrene -Chief of Police ,Town of Stonewall ,P. O. Box 92,,Stonewall,LA,71078,318-925-9338,DE SOTO,"Thomas Henry Dufrene, Jr.",171 Julie Ln.,,Stonewall,LA,71078-9605,318-458-5999,W,M,R,305 -Chief of Police ,Village of Stanley ,13595 Hwy. 84,,Logansport,LA,71049,318-697-4768,DE SOTO,"David Glen Burch, Sr.",205 Hwy 763,,Mansfield,LA,71052,318-872-3423,W,M,D,305,06/30/2013,07/01/2009,Chief Burch -Alderman ,"District A, City of Mansfield ",P. O. Box 773,,Mansfield,LA,71052,318-872-0406,DE SOTO,"Guy B. ""Sonny"" Hall, III",310 Marcia St.,,Mansfield,LA,71052,318-872-4428,W,M,D,310,06/30/2010,07/01/2006,Mr. Hall -Alderman ,"District B, City of Mansfield ",P. O. Box 773,,Mansfield,LA,71052,318-872-0406,DE SOTO,Dudley Kemper,101 Forest Ave.,,Mansfield,LA,71052,318-872-4567,W,M,R,310,06/30/2010,07/01/2006,Mr. Kemper -Alderman ,"District C, City of Mansfield ",P. O. Box 773,,Mansfield,LA,71052,318-872-0406,DE SOTO,Mitchell Lewis,604 Oxford Rd.,,Mansfield,LA,71052,318-872-0726,B,M,D,310,06/30/2010,07/01/2006,Mr. Lewis -Alderman ,"District C, City of Mansfield ",P. O. Box 773,,Mansfield,LA,71052,318-872-0406,DE SOTO,"Mitchell Lewis, ",604 Oxford Rd.,,Mansfield,LA,71052-5013,318-872-0726,B,M,D,310 -Alderman ,"District D, City of Mansfield ",P. O. Box 773,,Mansfield,LA,71052,318-872-0406,DE SOTO,"Joseph Hall, Jr.",319 Gibbs St.,,Mansfield,LA,71052,318-871-4806,B,M,D,310,06/30/2010,07/01/2006,Mr. Hall -Alderman ,"District D, City of Mansfield ",P. O. Box 773,,Mansfield,LA,71052,318-872-0406,DE SOTO,"Joseph Hall, Jr.",319 Gibbs St.,,Mansfield,LA,71052-2615,318-871-4806,B,M,D,310 -Alderman ,"District E, City of Mansfield ",P. O. Box 773,,Mansfield,LA,71052,318-872-0406,DE SOTO,"Alvin Woodley, ",711 Grove St.,,Mansfield,LA,71052-3403,318-872-2179,B,M,D,310 -Alderman ,"District E, City of Mansfield ",P. O. Box 773,,Mansfield,LA,71052,318-872-0406,DE SOTO,Alvin Ray Woodley,711 Grove St.,,Mansfield,LA,71052,318-872-2179,B,M,D,310,06/30/2010,07/01/2006,Mr. Woodley -Alderman ,Village of Grand Cane ,P. O. Box 82,,Grand Cane,LA,71032,318-858-3251,DE SOTO,"William H. ""Bill"" Cook",P.O. Box 166,,Grand Cane,LA,71032,318-858-2441,W,M,R,310,12/31/2010,01/01/2007,Mr. Cook -Alderman ,Village of Grand Cane ,P. O. Box 82,,Grand Cane,LA,71032,318-858-3251,DE SOTO,Rhonda H. Meek,P.O. Box 306,,Grand Cane,LA,71032,318-858-0009,W,F,R,310,12/31/2010,01/01/2007,Mr. Meek -Alderman ,Village of Grand Cane ,P. O. Box 82,,Grand Cane,LA,71032,318-858-3251,DE SOTO,Marsha Lea Richardson,P.O. Box 23,,Grand Cane,LA,71032,318-858-2295,W,F,D,310,12/31/2010,01/01/2007,Ms. Richardson -Alderman ,Village of South Mansfield ,P. O. Box 995,,South Mansfield,LA,71052,318-872-3960,DE SOTO,Ola Mae Evans,874 Railroad Ave.,,Mansfield,LA,71052,318-872-0852,B,F,D,310,12/31/2012,01/01/2009,Ms. Evans -Alderman ,Village of South Mansfield ,P. O. Box 995,,South Mansfield,LA,71052,318-872-3960,DE SOTO,Dianne Hudson,131 Hudson Ln.,,Mansfield,LA,71052,318-872-5846,B,F,D,310,12/31/2012,01/01/2009,Ms. Hudson -Alderman ,Village of South Mansfield ,P. O. Box 995,,South Mansfield,LA,71052,318-872-3960,DE SOTO,Jimmy L. Smith,540 Railroad Ave.,,Mansfield,LA,71052,318-871-1861,B,M,D,310,12/31/2012,01/01/2009,Mr. Smith -Alderman ,Village of Stanley ,13595 Hwy. 84,,Logansport,LA,71049,318-697-4768,DE SOTO,Dwena M. Henry,644 Hwy 763,,Mansfield,LA,71052,318-697-4768,W,F,D,310,06/30/2013,07/01/2009,Ms. Henry -Alderman ,Village of Stanley ,13595 Hwy. 84,,Logansport,LA,71049,318-697-4768,DE SOTO,Clemmie P. McCoy,13669 Hwy 84,,Logansport,LA,71049,318-697-2551,W,F,D,310,06/30/2013,07/01/2009,Ms. McCoy -Alderman ,Village of Stanley ,13595 Hwy. 84,,Logansport,LA,71049,318-697-4768,DE SOTO,Mark A. Murphrey,501 Hwy 763,,Mansfield,LA,71052,318-697-2792,W,M,R,310,06/30/2013,07/01/2009,Mr. Murphrey -Council Member ,Town of Logansport ,P. O. Box 400,,Logansport,LA,71049,,DE SOTO,Norman Arbuckle,P. O. Box 425,,Logansport,LA,71049-0425 ,318-697-5873,W,M,R,310,12/31/2012,01/01/2009,Mr. Arbuckle -Council Member ,Town of Logansport ,P. O. Box 400,,Logansport,LA,71049,,DE SOTO,Douglas Robert Guillotte,P. O. Box 756,,Logansport,LA,71049,318-697-5534,W,M,D,310,12/31/2012,01/01/2009,Mr. Guillotte -Council Member ,Town of Logansport ,P. O. Box 400,,Logansport,LA,71049,,DE SOTO,June Creech Hooper,P. O. Box 24,,Logansport,LA,71049,318-697-2400,W,F,R,310,12/31/2012,01/01/2009,Ms. Hooper -Council Member ,Town of Logansport ,P. O. Box 400,,Logansport,LA,71049,,DE SOTO,Deborah M. Roberts,204 Marie St.,,Logansport,LA,71049,318-697-5050,B,F,D,310,12/31/2012,01/01/2009,Ms. Roberts -Council Member ,Town of Logansport ,P. O. Box 400,,Logansport,LA,71049,,DE SOTO,Edith Duncan Williams,P.O. Box 504,,Logansport,LA,71049,318-697-5085,B,F,D,310,12/31/2012,01/01/2009,Ms. Williams -Council Member ,Town of Stonewall ,P. O. Box 92,,Stonewall,LA,71078,318-925-9338,DE SOTO,"Margaret A. Dickerson, ",4662 Hwy. 3276,,Stonewall,LA,71078-8240,318-925-9453,W,F,D,310 -Council Member ,Town of Stonewall ,P. O. Box 92,,Stonewall,LA,71078,318-925-9338,DE SOTO,"Nicholas ""Nick"" Gasper, ",432 Hall Rd.,,Stonewall,LA,71078-9560,318-347-4811,W,M,R,310 -Council Member ,Town of Stonewall ,P. O. Box 92,,Stonewall,LA,71078,318-925-9338,DE SOTO,"Patrick Loftus, Jr.",1758 Missile Base Rd.,,Stonewall,LA,71078-8328,318-925-0702,W,M,D,310 -Council Member ,Town of Stonewall ,P. O. Box 92,,Stonewall,LA,71078,318-925-9338,DE SOTO,"Patrick J. Loftus, Jr.",1758 Missile Base Rd.,,Stonewall,LA,71078,318-925-0702,W,M,D,310,06/30/2010,07/01/2006,Mr. Loftus -Council Member ,Town of Stonewall ,P. O. Box 92,,Stonewall,LA,71078,318-925-9338,DE SOTO,"Curtis McCune, ",444 Hall Rd.,,Stonewall,LA,71078-9560,318-925-9943,W,M,D,310 -Council Member ,Town of Stonewall ,P. O. Box 92,,Stonewall,LA,71078,318-925-9338,DE SOTO,"Robert C. ""Bob"" Russell",1361 Hwy 171,,Stonewall,LA,71078,318-207-2703,W,M,,310,06/30/2010,07/01/2006,Mr. Russell -Council Member ,Town of Stonewall ,P. O. Box 92,,Stonewall,LA,71078,318-925-9338,DE SOTO,Glenn Settle,253 Memory Ln.,,Stonewall,LA,71078,318-925-9881,W,M,R,310,06/30/2010,07/01/2006,Mr. Settle -Council Member ,Town of Stonewall ,P. O. Box 92,,Stonewall,LA,71078,318-925-9338,DE SOTO,"Dorothy Simmons, ",234 Sandpiper Ln.,,Stonewall,LA,71078-2804,318-925-3370,W,F,R,310 -Council Member ,Town of Stonewall ,P. O. Box 92,,Stonewall,LA,71078,318-925-9338,DE SOTO,"Dorothy ""Dot"" Simmons",234 Sandpiper Ln.,,Stonewall,LA,71078,318-925-3370,W,F,R,310,06/30/2010,07/21/2008,Ms. Simmons -Council Member ,Town of Stonewall ,P. O. Box 92,,Stonewall,LA,71078,318-925-9338,DE SOTO,Charles R. Waldon,428 Burford Rd.,,Stonewall,LA,71078,318-925-6688,W,M,,310,06/30/2010,07/01/2006,Mr. Waldon -Council Member ,Village of Longstreet ,P. O. Box 3130,,Longstreet,LA,71050,318-697-0226,DE SOTO,Wanda Sue Lewis Fields,120 Pine Tree Ln.,,Logansport,LA,71049,318-697-4089,W,F,,310,06/30/2010,07/01/2006,Ms. Fields -Council Member ,Village of Longstreet ,P. O. Box 3130,,Longstreet,LA,71050,318-697-0226,DE SOTO,"""Connie"" Jackson",P.O. Box 3103,,Logansport,LA,71049,318-697-5881,W,F,R,310,06/30/2010,07/01/2006,Ms. Jackson -Council Member ,Village of Longstreet ,P. O. Box 3130,,Longstreet,LA,71050,318-697-0226,DE SOTO,Queenie D. Rogers,165 Charlies Ln.,,Keatchie,LA,71046,318-297-2880,B,F,D,310,06/30/2010,07/01/2006,Ms. Rogers -Councilman ,Town of Keachi ,P. O. Drawer 10,,Keachi,LA,71046,,DE SOTO,Jeanette Pons Avila,P.O. Box 185,,Keatchie,LA,71046,318-933-5729,W,F,,310,12/31/2010,01/01/2007,Ms. Avila -Councilman ,Town of Keachi ,P. O. Drawer 10,,Keachi,LA,71046,,DE SOTO,William Chad Burford,1066 Keatchie Rd.,,Keatchie,LA,71046,318-933-5309,W,M,R,310,12/31/2010,01/01/2007,Mr. Burford -Councilman ,Town of Keachi ,P. O. Drawer 10,,Keachi,LA,71046,,DE SOTO,Lorice A. Pipkin,358 Mccann Rd.,,Keatchie,LA,71046,318-933-5794,B,F,D,310,12/31/2010,01/01/2007,Ms. Pipkin -Councilman ,Town of Keachi ,P. O. Drawer 10,,Keachi,LA,71046,,DE SOTO,Audrey Rachal,P.O. Box 146,,Keatchie,LA,71046,318-933-2226,W,F,D,310,12/31/2010,01/01/2007,Ms. Rachal -Councilman ,Town of Keachi ,P. O. Drawer 10,,Keachi,LA,71046,,DE SOTO,Angela Toney,P.O. Box 271,,Keatchie,LA,71046,318-933-8936,W,F,D,310,12/31/2010,01/01/2007,Ms. Toney -DPEC Member ,at Large ,,,,LA,,,EAST BATON ROUGE,Lynn N. Bankston,10916 N. Oakhills Pkwy.,,Baton Rouge,LA,70810,225-766-2505,W,F,D,054,02/20/2012,02/20/2008,Ms. Bankston -DPEC Member ,at Large ,,,,LA,,,EAST BATON ROUGE,Darlene Fields,5315 Hollywood St.,,Baton Rouge,LA,70805,225-356-6094,B,F,D,054,02/20/2012,02/20/2008,Ms. Fields -DPEC Member ,at Large ,,,,LA,,,EAST BATON ROUGE,"Donald Hodge, Jr.",224 Ocean Dr. #202,,Baton Rouge,LA,70806,337-794-8873,W,M,D,054,02/20/2012,02/20/2008,Mr. Hodge -DPEC Member ,at Large ,,,,LA,,,EAST BATON ROUGE,Ben Jeffers,922 Mayflower St.,,Baton Rouge,LA,70802,225-346-5400,B,M,D,054,02/20/2012,02/20/2008,Mr. Jeffers -DPEC Member ,at Large ,,,,LA,,,EAST BATON ROUGE,W. T. Winfield,1240 N. 29th St.,,Baton Rouge,LA,70802,225-383-0822,B,M,D,054,02/20/2012,02/20/2008,Mr. Winfield -DPEC Member ,District 1 ,,,,LA,,,EAST BATON ROUGE,Juanita Carter-Sanford,12747 Pride Port Hudson Rd.,,Zachary,LA,70791,225-654-8040,B,F,D,056,02/20/2012,02/20/2008,Ms. Carter-Sanford -DPEC Member ,District 2 ,,,,LA,,,EAST BATON ROUGE,Linda Perkins,13308 Ector Dr.,,Baker,LA,70714,225-382-0040,B,F,D,056,02/20/2012,02/20/2008,Ms. Perkins -DPEC Member ,District 3 ,,,,LA,,,EAST BATON ROUGE,Christopher R. Sonnier,3343 Twelve Oaks Ave.,,Baton Rouge,LA,70820,225-757-1718,W,M,D,056,02/20/2012,02/20/2008,Mr. Sonnier -DPEC Member ,District 4 ,,,,LA,,,EAST BATON ROUGE,Wade Byrd,16544 Quiet Oaks Ave.,,Greenwell Springs,LA,70739,225-261-0599,W,M,D,056,02/20/2012,02/20/2008,Mr. Byrd -DPEC Member ,District 5 ,,,,LA,,,EAST BATON ROUGE,Charles R. Kelly,6111 Maplewood Dr.,,Baton Rouge,LA,70812,225-389-4831,B,M,D,056,02/20/2012,02/20/2008,Mr. Kelly -DPEC Member ,District 6 ,,,,LA,,,EAST BATON ROUGE,Jesse H. Bankston,9526 Southmoor Dr.,,Baton Rouge,LA,70815,225-925-2543,W,M,D,056,02/20/2012,02/20/2008,Mr. Bankston -DPEC Member ,District 7 ,,,,LA,,,EAST BATON ROUGE,Mike Guy,2147 Government St.,,Baton Rouge,LA,70806,225-343-5377,B,M,D,056,02/20/2012,02/20/2008,Mr. Guy -DPEC Member ,District 8 ,,,,LA,,,EAST BATON ROUGE,James Ledford,14827 Colonel Allen Ct.,,Baton Rouge,LA,70816,225-292-0165,W,M,D,056,02/20/2012,02/20/2008,Mr. Ledford -DPEC Member ,District 9 ,,,,LA,,,EAST BATON ROUGE,,,,,,,,,,,056 -DPEC Member ,District 10 ,,,,LA,,,EAST BATON ROUGE,Carolyn Coleman,806 East Blvd.,,Baton Rouge,LA,70802,225-343-1057,B,F,D,056,02/20/2012,02/20/2008,Ms. Coleman -DPEC Member ,District 11 ,,,,LA,,,EAST BATON ROUGE,"Elizabeth ""Betty"" Powers",2436 E. Contour Dr.,,Baton Rouge,LA,70809,225-928-9135,W,F,D,056,02/20/2012,02/20/2008,Ms. Powers -DPEC Member ,District 12 ,,,,LA,,,EAST BATON ROUGE,Brandon DeCuir,1165 Sharynwood Dr.,,Baton Rouge,LA,70808,225-223-6587,B,M,D,056,02/20/2012,02/20/2008,Mr. DeCuir -RPEC Member ,at Large ,,,,LA,,,EAST BATON ROUGE,"""Jerry"" Arbour",701 North St.,,Baton Rouge,LA,70802,225-387-5557,W,M,R,064,02/20/2012,02/20/2008 -RPEC Member ,at Large ,,,,LA,,,EAST BATON ROUGE,Elizabeth Dent,1055 Laurel St.,,Baton Rouge,LA,70802,225-344-2374,W,F,R,064,02/20/2012,02/20/2008,Ms. Dent -RPEC Member ,at Large ,,,,LA,,,EAST BATON ROUGE,"Fred Dent, Jr.",1055 Laurel St.,,Baton Rouge,LA,70802,225-344-2374,W,M,R,064,02/20/2012,02/20/2008,Mr. Dent -RPEC Member ,at Large ,,,,LA,,,EAST BATON ROUGE,"""Tommy"" French",5015 Parkhollow Dr.,,Baton Rouge,LA,70816,225-293-0650,W,M,R,064,02/20/2012,02/20/2008 -RPEC Member ,at Large ,,,,LA,,,EAST BATON ROUGE,Dan Kyle,818 Woodleigh Dr,,Baton Rouge,LA,70810,225-978-1455,W,M,R,064,02/20/2012,02/20/2008,Mr. Kyle -RPEC Member ,District 1 ,,,,LA,,,EAST BATON ROUGE,"Rosalie ""Pat"" Harris",3603 E. Meadow Ct.,,Zachary,LA,70791,225-658-5138,W,F,R,066,02/20/2012,02/20/2008,Ms. Harris -RPEC Member ,District 2 ,,,,LA,,,EAST BATON ROUGE,,,,,,,,,,,066 -RPEC Member ,District 3 ,,,,LA,,,EAST BATON ROUGE,John J. Price,17512 Five Oaks Dr.,,Baton Rouge,LA,70810,225-753-5338,W,M,R,066,02/20/2012,02/20/2008,Mr. Price -RPEC Member ,District 4 ,,,,LA,,,EAST BATON ROUGE,Daniel Edwards,11971 Cline Dr.,,Baker,LA,70714,225-276-9106,W,M,R,066,02/20/2012,02/20/2008,Mr. Edwards -RPEC Member ,District 5 ,,,,LA,,,EAST BATON ROUGE,Harold Williams,4714 Monarch Ave.,,Baton Rouge,LA,70811,225-357-4294,,,,066,02/20/2012,02/20/2008,Mr. Williams -RPEC Member ,District 5 ,,,,LA,,,EAST BATON ROUGE,Harold Williams,P.O. Box 80727,,Baton Rouge,LA,70898,225-806-6923,B,M,R,066,02/20/2012,02/20/2008 -RPEC Member ,District 6 ,,,,LA,,,EAST BATON ROUGE,Ramona Talley,10820 Rosebud Ct.,,Baton Rouge,LA,70815,225-572-7989,W,F,R,066,02/20/2012,02/20/2008,Ms. Talley -RPEC Member ,District 7 ,,,,LA,,,EAST BATON ROUGE,William Kimbrell,1679 Glenmore Ave.,,Baton Rouge,LA,70808,225-907-4700,W,M,R,066,02/20/2012,02/20/2008,Mr. Kimbrell -RPEC Member ,District 8 ,,,,LA,,,EAST BATON ROUGE,"""Ron"" Findish",12515 Schlayer Ave.,,Baton Rouge,LA,70816,225-293-0187,W,M,R,066,02/20/2012,02/20/2008,Mr. Findish -RPEC Member ,District 9 ,,,,LA,,,EAST BATON ROUGE,David Fakouri,P.O. Box 86255,,Baton Rouge,LA,70879,225-921-9735,W,M,R,066,02/20/2012,02/20/2008 -RPEC Member ,District 10 ,,,,LA,,,EAST BATON ROUGE,Cyrus Greco,2230 Olive St.,,Baton Rouge,LA,70806,225-346-1189,W,M,R,066,02/20/2012,02/20/2008,Mr. Greco -RPEC Member ,District 11 ,,,,LA,,,EAST BATON ROUGE,Sally A. Nungesser,1554 Lobdell Ave.,,Baton Rouge,LA,70806,225-929-6040,W,F,R,066,02/20/2012,02/20/2008,Ms. Nungesser -RPEC Member ,District 12 ,,,,LA,,,EAST BATON ROUGE,Donna Grodner,1033 Woodstone Dr.,,Baton Rouge,LA,70808,225-769-8442,W,F,R,066,02/20/2012,02/20/2008,Ms. Grodner -Judge ,"Juvenile Court, Elec. Sect. 1A ",8333 Veterans Memorial Blvd.,,Baton Rouge,LA,70807,225-354-1230,EAST BATON ROUGE,Kathleen Stewart Richey,P. O. Box 66976,,Baton Rouge,LA,70896,225-379-3277,W,F,D,220,12/31/2014,01/01/2009,Judge Richey -Judge ,"Juvenile Court, Elec. Sect. 2B ",8333 Veterans Memorial Blvd.,,Baton Rouge,LA,70807,225-354-1250,EAST BATON ROUGE,"""Pam"" Taylor Johnson",1755 Nicholson Dr.,,Baton Rouge,LA,70802,225-268-8989,B,F,D,220,12/31/2014,01/01/2009,Judge Johnson -"Judge, Family Court ","Election Section 1, Division B ",222 St. Louis St.,,Baton Rouge,LA,70801,225-389-7657,EAST BATON ROUGE,Lisa Woodruff-White,1130 N. Cicero Ave.,,Baton Rouge,LA,70816,225-275-0040,B,F,D,220,12/31/2014,01/01/2009,Judge White -"Judge, Family Court ","Election Section 2, Division C ",222 St. Louis St.,,Baton Rouge,LA,70801,225-389-4673,EAST BATON ROUGE,Toni Higginbotham,"222 St. Louis St., Ste. 948",,Baton Rouge,LA,70802,225-389-4673,W,F,R,220,12/31/2014,01/01/2009,Judge Higginbotham -"Judge, Family Court ","Election Section 3, Division A ",222 St. Louis St.,,Baton Rouge,LA,70801,225-389-4676,EAST BATON ROUGE,Pam Baker,8345 Kelwood Ave.,,Baton Rouge,LA,70806,225-751-9746,W,F,R,220,12/31/2014,01/01/2009,Judge Baker -"Judge, Family Court ","Election Section 3, Division D ",222 St. Louis St.,,Baton Rouge,LA,70801,225-389-4678,EAST BATON ROUGE,Annette Lassalle,"222 St. Louis St., Rm. 978",,Baton Rouge,LA,70802,225-389-4678,W,F,R,220,12/31/2014,01/01/2009,Judge Lassalle -Sheriff ,,P. O. Box 3277,,Baton Rouge,LA,70821,225-389-5000,EAST BATON ROUGE,"Sid J. Gautreaux, III",P.O. Box 3277,,Baton Rouge,LA,70821,225-570-2601,W,M,D,225,06/30/2012,07/01/2008,Sheriff Gautreaux -Clerk of Court ,,P. O. Box 1991,,Baton Rouge,LA,70821,225-389-3950,EAST BATON ROUGE,"""Doug"" Welborn",P.O. Box 1991,,Baton Rouge,LA,70821,225-261-5007,W,M,R,230,06/30/2012,07/01/2008,Mr. Welborn -Assessor ,,"222 St. Louis St., Rm. 126",,Baton Rouge,LA,70802,225-389-3933,EAST BATON ROUGE,Brian Wilson,P.O. Box 2026,,Baton Rouge,LA,70821,225-261-0320,W,M,R,235,12/31/2012,01/01/2009,Mr. Wilson -Coroner ,,4030 T.B. Herndon Ave.,,Baton Rouge,LA,70801,225-389-3047,EAST BATON ROUGE,Shannon Cooper,720 Marquette Ave.,,Baton Rouge,LA,70806,225-405-4648,W,M,R,240,03/25/2012,03/24/2008,Mr. Cooper -Mayor-President ,"Metro Council, City of Baton Rouge ",222 St. Louis,,Baton Rouge,LA,,225-389-3100,EAST BATON ROUGE,"Melvin ""Kip"" Holden",838 North Blvd.,,Baton Rouge,LA,70802,225-389-5102,B,M,D,243,12/31/2012,01/01/2009,Mayor Holden -Councilman ,Metro District 1 ,222 St. Louis Street,,Baton Rouge,LA,,225-389-3123,EAST BATON ROUGE,J. E. Trae Welch,5734 Main St.,,Zachary,LA,70791,225-774-5185,W,M,D,245,12/31/2012,01/01/2009,Mr. Welch -Councilman ,Metro District 2 ,222 St. Louis Street,,Baton Rouge,LA,70802,225-389-3123,EAST BATON ROUGE,"Ulysses Z. Addison, Jr.",10235 Ave. L,,Baton Rouge,LA,70807,225-389-8331,B,M,D,245,12/31/2012,01/01/2009,Mr. Addison -Councilman ,Metro District 3 ,222 St. Louis Street,,Baton Rouge,LA,70802,225-389-3123,EAST BATON ROUGE,Chandler Loupe,734 Plantation Ridge Dr.,,Baton Rouge,LA,70810,225-767-2222,W,M,R,245,12/31/2012,01/01/2009,Mr. Loupe -Councilman ,Metro District 4 ,222 St. Louis Street,,Baton Rouge,LA,70802,225-389-3123,EAST BATON ROUGE,Scott Wilson,P.O. Box 432,,Central,LA,70739,225-261-8667,W,M,R,245,12/31/2012,01/01/2009,Mr. Wilson -Councilman ,Metro District 5 ,222 St. Louis Street,,Baton Rouge,LA,70802,225-389-3123,EAST BATON ROUGE,Ronnie Edwards,P.O. Box 73018,,Baton Rouge,LA,70874,225-819-6546,B,F,D,245,12/31/2012,01/01/2009,Ms. Edwards -Councilman ,Metro District 6 ,222 St. Louis Street,,Baton Rouge,LA,70802,225-389-3123,EAST BATON ROUGE,Donna Collins-Lewis,P. O. Box 4095,,Baton Rouge,LA,70821,225-439-9690,B,F,D,245,12/31/2012,01/01/2009,Ms. Collins-Lewis -Councilman ,Metro District 7 ,222 St. Louis Street,,Baton Rouge,LA,70802,225-389-3123,EAST BATON ROUGE,C. Denise Marcelle,P.O. Box 2747,,Baton Rouge,LA,70802,225-336-0707,B,F,D,245,12/31/2012,01/01/2009,Ms. Marcelle -Councilman ,Metro District 8 ,222 St. Louis Street,,Baton Rouge,LA,70802,225-389-3123,EAST BATON ROUGE,"""Mike"" Walker",340 Laurie Lynn Dr.,,Baton Rouge,LA,70819,225-337-5311,W,M,R,245,12/31/2012,01/01/2009,Mr. Walker -Councilman ,Metro District 9 ,222 St. Louis Street,,Baton Rouge,LA,70802,225-389-3123,EAST BATON ROUGE,Joel Boe',P. O. Box 77274,,Baton Rouge,LA,70879,225-572-6181,W,M,R,245,12/31/2012,01/01/2009,Mr. Boe' -Councilman ,Metro District 10 ,222 St. Louis Street,,Baton Rouge,LA,70802,225-389-3123,EAST BATON ROUGE,Tara Wicker,337 N. 25th St.,,Baton Rouge,LA,70802,225-317-1849,B,F,D,245,12/31/2012,01/01/2009,Ms. Wicker -Councilman ,Metro District 11 ,222 St. Louis Street,,Baton Rouge,LA,70802,225-389-3123,EAST BATON ROUGE,Alison Cascio,"1701 Lobdell Ave., #90",,Baton Rouge,LA,70806,225-281-7632,W,F,R,245,12/31/2012,01/01/2009,Ms. Cascio -Councilman ,Metro District 12 ,222 St. Louis Street,,Baton Rouge,LA,70802,225-389-3123,EAST BATON ROUGE,"R.J. ""Smokie"" Bourgeois",1221 Staring Ln.,,Baton Rouge,LA,,225-413-3893,W,M,R,245,12/31/2012,01/01/2009,Mr. Bourgeois -City Judge ,"City Court, City of Baker ",P. O. Box 1,,Baker,LA,70714-0001 ,225-778-1866,EAST BATON ROUGE,Kirk A. Williams,P.O. Box 826,,Baker,LA,70704,225-775-9888,B,M,D,250,12/31/2014,01/01/2009,Judge Williams -City Judge ,"City Court, City of Zachary ",P. O. Box 310,,Zachary,LA,70791,225-654-0044,EAST BATON ROUGE,Lonny Myles,1444 Church St.,,Zachary,LA,70791,225-654-6006,W,M,D,250,12/31/2010,01/01/2005,Mr. Myles -City Judge ,"City Court, El. Sect. 1B, Baton Rouge ",P. O. Box 3438,,Baton Rouge,LA,70821-3438,225-389-3025,EAST BATON ROUGE,Kelli Terrell Temple,P.O. Box 708,,Baton Rouge,LA,70821,225-328-8844,B,F,D,250,12/31/2012,05/12/2009,Judge Temple -City Judge ,"City Court, El. Sect. 1D, Baton Rouge ",P. O. Box 3438,,Baton Rouge,LA,70821-3438,225-389-5006,EAST BATON ROUGE,Yvette M. Alexander,P.O. Box 2843,,Baton Rouge,LA,70821,225-768-7682,B,F,D,250,12/31/2012,01/01/2007,Judge Alexander -City Judge ,"City Court, El. Sect. 2A, Baton Rouge ",P. O. Box 3438,,Baton Rouge,LA,70821-3438,225-389-3021,EAST BATON ROUGE,Laura Prosser Davis,324 L.S.U. Ave.,,Baton Rouge,LA,70808,225-763-5843,W,F,R,250,12/31/2012,01/01/2007,Judge Davis -City Judge ,"City Court, El. Sect. 2C, Baton Rouge ",P. O. Box 3438,,Baton Rouge,LA,70821-3438,225-389-3346,EAST BATON ROUGE,"Alex ""Brick"" Wall",176 Rodney Dr.,,Baton Rouge,LA,70808,225-766-8181,W,M,D,250,12/31/2012,01/01/2007,Judge Wall -City Judge ,"City Court, El. Sect. 2E, Baton Rouge ",P. O. Box 3438,,Baton Rouge,LA,70821-3438,225-389-3095,EAST BATON ROUGE,Suzan S. Ponder,P.O. Box 989,,Baton Rouge,LA,70821,225-765-6222,W,F,R,250,12/31/2012,01/01/2007,Judge Ponder -City Constable ,"City Court, City of Baton Rouge ",P. O. Box 3438,,Baton Rouge,LA,70821-3438,225-389-3004,EAST BATON ROUGE,"Reginald R. Brown, Sr.",P.O. Box 881,,Baton Rouge,LA,70821,225-218-1954,B,M,D,253,12/31/2012,01/01/2007,Mr. Brown -Member of School Board ,"District 1, Zachary Community ",Zachary Community School Board,,,LA,70791,225-658-4969,EAST BATON ROUGE,Gaynell C. Young,129 W. Flanacher Rd.,,Zachary,LA,70791,225-654-5551,B,F,D,255,12/31/2010,01/01/2007,Ms. Young -Member of School Board ,"District 2, Zachary Community ",4656 Main St.,,Baton Rouge,LA,70719,225-658-4969,EAST BATON ROUGE,Scott Swilley,325 Grove Ave.,,Zachary,LA,70791,225-658-0425,W,M,R,255,12/31/2010,01/01/2007,Mr. Swilley -Member of School Board ,"District 3, Zachary Community ",4656 Main St.,,Baton Rouge,LA,70719,225-658-4969,EAST BATON ROUGE,Sharon T. Samuel,1344 Rollins Rd.,,Zachary,LA,70791,225-654-5710,W,F,R,255,12/31/2010,01/01/2007,Ms. Samuel -Member of School Board ,"District 4, Zachary Community ",4656 Main St.,,Baton Rouge,LA,70719,225-658-4969,EAST BATON ROUGE,Carl C. Snowden,1126 E. Mt. Pleasant Rd.,,Zachary,LA,70791,225-654-0259,B,M,D,255,12/31/2010,01/01/2007,Mr. Snowden -Member of School Board ,"District 5, Zachary Community ",4656 Main St.,,Baton Rouge,LA,70719,225-658-4969,EAST BATON ROUGE,"Hubert C. ""Hubie"" Owen",P.O. Box 1190,,Zachary,LA,70791,225-654-0299,W,M,R,255,12/31/2010,01/01/2007,Mr. Owen -Member of School Board ,"District 6, Zachary Community ",4656 Main St.,,Baton Rouge,LA,70719,225-658-4969,EAST BATON ROUGE,Jannie Thomas Rogers,P.O. Box 963,,Zachary,LA,70791,225-658-4809,B,F,D,255,12/31/2010,01/01/2007,Ms. Rogers -Member of School Board ,"District 7, Zachary Community ",4656 Main St.,,Baton Rouge,LA,70719,225-658-4969,EAST BATON ROUGE,Carl Kelley,4120 Noble St.,,Zachary,LA,70791,225-658-7575,W,M,R,255,12/31/2010,07/21/2008,Mr. kelley -Member of School Board ,"District 8, Zachary Community ",4656 Main St.,,Baton Rouge,LA,70719,225-658-4969,EAST BATON ROUGE,Jonathan C. Benda,4512 Virginia St.,,Zachary,LA,70791,225-654-0488,W,M,R,255,12/31/2010,01/01/2007,Mr. Benda -Member of School Board ,"District 9, Zachary Community ",4656 Main St.,,Baton Rouge,LA,70719,225-658-4969,EAST BATON ROUGE,David Dayton,20660 Plank Rd.,,Zachary,LA,70791,225-654-2249,W,M,R,255,12/31/2010,01/01/2007,Mr. Dayton -Member of School Board ,District 1 ,P.O. Box 2950,,Baton Rouge,LA,70821,225-922-5618,EAST BATON ROUGE,Derrick Spell,5824 Cherryridge Dr.,,Baton Rouge,LA,70809,225-215-1199,W,M,R,255,12/31/2010,01/01/2007,Mr. Spell -Member of School Board ,"District 1, Central Community ",,,,LA,,,EAST BATON ROUGE,Russell Starns,13110 Greenwell Springs Rd.,,Greenwell Springs,LA,70739,225-262-9741,W,M,R,255,12/31/2010,10/14/2008,Mr. Starns -Member of School Board ,"District 1, City of Baker ",3033-B Ray Weiland Dr.,,Baker,LA,70714,225-774-5795,EAST BATON ROUGE,"""Pam"" Malveaux",13308 Alba Dr.,,Baker,LA,70714,225-774-8520,B,F,O,255,12/31/2010,01/01/2007,Ms. Malveaux -Member of School Board ,District 2 ,P.O. Box 2950,,Baton Rouge,LA,70821,225-922-5618,EAST BATON ROUGE,Vereta Lee,P.O. Box 73133,,Baton Rouge,LA,70874,225-356-1729,B,F,D,255,12/31/2010,01/01/2007,Ms. Lee -Member of School Board ,"District 2, Central Community ",,,,LA,,,EAST BATON ROUGE,"W. ""Marty"" Guilbeau",10142 W. Brookside Dr.,,Baton Rouge,LA,70818,225-302-5315,,,R,255,12/31/2010,10/14/2008,Ms. Guilbeau -Member of School Board ,"District 2, City of Baker ",3033-B Ray Weiland Dr.,,Baker,LA,70714,225-774-5795,EAST BATON ROUGE,Dana Carpenter,3245 Chamberlain Ave.,,Baker,LA,70714,225-774-6331,B,M,D,255,12/31/2010,01/01/2007,Ms. Carpenter -Member of School Board ,District 3 ,P.O. Box 2950,,Baton Rouge,LA,70821,225-922-5618,EAST BATON ROUGE,Darryl L. Robertson,1234 Central Rd.,,Baton Rouge,LA,70807,225-774-6392,B,M,D,255,12/31/2010,01/01/2007,Mr. Robertson -Member of School Board ,"District 3, Central Community ",,,,LA,,,EAST BATON ROUGE,Graydon David Walker,13025 Lovett Rd.,,Baton Rouge,LA,70818,225-261-1209,W,M,R,255,12/31/2010,10/14/2008,Mr. Walker -Member of School Board ,"District 3, City of Baker ",3033-B Ray Weiland Dr.,,Baker,LA,70714,225-774-5795,EAST BATON ROUGE,George Gallman,4414 Heath Dr.,,Baker,LA,70714,225-774-3831,W,M,R,255,12/31/2010,01/01/2007,Mr. Gallman -Member of School Board ,District 4 ,P.O. Box 2950,,Baton Rouge,LA,70821,225-922-5618,EAST BATON ROUGE,Tarvald Smith,2115 North Vega Dr.,,Baton Rouge,LA,70815,225-925-2416,B,M,D,255,12/31/2010,01/01/2007,Mr. Smith -Member of School Board ,"District 4, Central Community ",,,,LA,,,EAST BATON ROUGE,"Willard ""Will"" Easley",13044 Denham Rd.,,Baton Rouge,LA,70818,225-261-3104,W,M,R,255,12/31/2010,10/14/2008,Mr. Easley -Member of School Board ,"District 4, City of Baker ",3033-B Ray Weiland Dr.,,Baker,LA,70714,225-774-5795,EAST BATON ROUGE,Jane Freudenberger,3541 Buffwood Dr.,,Baker,LA,70714,225-771-1717,W,F,D,255,12/31/2010,01/01/2007,Ms. Freudenberger -Member of School Board ,District 5 ,P.O. Box 2950,,Baton Rouge,LA,70821,225-922-5618,EAST BATON ROUGE,"Jonathan C. ""Jay"" Augustine",P.O. Box 66461,,Baton Rouge,LA,70896,225-773-4618,B,M,D,255,12/31/2010,01/01/2007,Mr. Augustine -Member of School Board ,"District 5, Central Community ",,,,LA,,,EAST BATON ROUGE,"""Jim"" Gardner",11522 Core Ln.,,Baker,LA,70714,225-261-9467,W,M,R,255,12/31/2010,10/14/2008,Mr. Gardner -Member of School Board ,"District 5, City of Baker ",3033-B Ray Weiland Dr.,,Baker,LA,70714,225-774-5795,EAST BATON ROUGE,Doris Alexander,3809 Epperson St.,,Baker,LA,70714,225-778-0141,B,F,D,255,12/31/2010,01/01/2007,Ms. Alexander -Member of School Board ,District 6 ,P.O. Box 2950,,Baton Rouge,LA,70821,225-922-5618,EAST BATON ROUGE,W. T. Winfield,1240 N. 29th St.,,Baton Rouge,LA,70802,225-344-7584,B,M,D,255,12/31/2010,07/21/2008,Mr. Winfield -Member of School Board ,"District 6, Central Community ",,,,LA,,,EAST BATON ROUGE,Ruby Wallette Foil,16432 Quiet Oaks Ave.,,Greenwell Springs,LA,70739,225-261-3751,W,F,R,255,12/31/2010,10/14/2008,Ms. Foil -Member of School Board ,District 7 ,P.O. Box 2950,,Baton Rouge,LA,70821,225-922-5618,EAST BATON ROUGE,Noel Hammatt,242 Delgado Dr.,,Baton Rouge,LA,70808,225-766-5582,W,M,R,255,12/31/2010,01/01/2007,Mr. Hammatt -Member of School Board ,"District 7, Central Community ",,,,LA,,,EAST BATON ROUGE,Sharon W. Browning,9531 Watts Rd.,,Baton Rouge,LA,70811,225-357-9658,W,F,R,255,12/31/2010,10/14/2008,Ms. Browning -Member of School Board ,District 8 ,P.O. Box 2950,,Baton Rouge,LA,70821,225-922-5618,EAST BATON ROUGE,Greg Baldwin,780 Rue Crozat,,Baton Rouge,LA,70810,225-767-0808,W,M,D,255,12/31/2010,01/01/2007,Mr. Baldwin -Member of School Board ,District 9 ,P.O. Box 2950,,Baton Rouge,LA,70821,225-922-5618,EAST BATON ROUGE,Jerry Arbour,701 North St.,,Baton Rouge,LA,70802,225-387-5557,W,M,R,255,12/31/2010,01/01/2007,Mr. Arbour -Member of School Board ,District 10 ,P.O. Box 2950,,Baton Rouge,LA,70821,225-922-5618,EAST BATON ROUGE,Jill Dyason,22768 Hoo Shoo Too Rd.,,Baton Rouge,LA,70817,225-753-6009,W,F,R,255,12/31/2010,01/01/2007,Ms. Dyason -Member of School Board ,District 11 ,P.O. Box 2950,,Baton Rouge,LA,70821,225-922-5618,EAST BATON ROUGE,Randy Lamana,15234 Hidden Creek Dr.,,Pride,LA,70770,225-262-1812,W,M,R,255,12/31/2010,10/30/2007,Mr. Lamana -Member of School Board ,District 12 ,P.O. Box 2950,,Baton Rouge,LA,70821,225-922-5618,EAST BATON ROUGE,"William P. ""Bill"" Black",1020 Heather Dr.,,Baton Rouge,LA,70815,225-272-3819,W,M,D,255,12/31/2010,01/01/2007,Mr. Black -Justice of the Peace ,"Justice of the Peace Ward 2, District 1 ",,,,LA,,,EAST BATON ROUGE,Virginia Forbes,23845 Reames Rd.,,Zachary,LA,70791,225-654-2424,W,F,D,265,12/31/2014,01/01/2009,Ms. Forbes -Justice of the Peace ,"Justice of the Peace Ward 2, District 2 ",,,,LA,,,EAST BATON ROUGE,Brooke Peay,20529 Machost Rd.,,Zachary,LA,70791,225-658-9778,W,F,R,265,12/31/2014,01/01/2009,Ms. Peay -Justice of the Peace ,"Justice of the Peace Ward 2, District 3 ",,,,LA,,,EAST BATON ROUGE,"Moses M. Evans, Jr.",13470 Clark Dr.,,Baton Rouge,LA,70807,225-774-5452,B,M,D,265,12/31/2014,01/01/2009,Mr. Evans -Justice of the Peace ,"Justice of the Peace Ward 3, District 1 ",,,,LA,,,EAST BATON ROUGE,Mark Miley,18652 Loch Bend Ave.,,Greenwell Springs,LA,70739,225-926-9415,W,M,R,265,12/31/2014,04/14/2009,Mr. Miley -Justice of the Peace ,"Justice of the Peace Ward 3, District 2 ",,,,LA,,,EAST BATON ROUGE,Steven E. Sanders,5621 Kennesaw Dr.,,Baton Rouge,LA,70817,225-752-9280,W,M,R,265,12/31/2014,01/01/2009,Mr. Sanders -Justice of the Peace ,"Justice of the Peace Ward 3, District 3 ",,,,LA,,,EAST BATON ROUGE,Melva Cavanaugh,12590 Perkins Rd.,,Baton Rouge,LA,70810,225-767-5756,W,F,R,265,12/31/2014,01/01/2009,Ms. Cavanaugh -Constable ,"Justice of the Peace Ward 2, District 1 ",18523 Arbor Oak Ave.,,Greenwell Springs,LA,70739,225-261-9328,EAST BATON ROUGE,Jimmy Santangelo,16935 Liberty Rd.,,Greenwell Springs,LA,70739,225-261-9328,W,M,D,267,12/31/2014,01/01/2009,Mr. Santangelo -Constable ,"Justice of the Peace Ward 2, District 2 ",7970 McHost Rd.,,Zachary,LA,70791,225-658-4628,EAST BATON ROUGE,Darin David,7970 Machost Rd.,,Zachary,LA,70791,225-413-3928,W,M,R,267,12/31/2014,01/01/2009,Mr. David -Constable ,"Justice of the Peace Ward 2, District 3 ",P.O. Box 75431,,Baton Rouge,LA,70874,225-356-9000,EAST BATON ROUGE,Donald Shelmire,P. O. Box 75431,,Baton Rouge,LA,70874,225-356-9000,B,M,D,267,12/31/2014,01/01/2009,Mr. Shelmire -Constable ,"Justice of the Peace Ward 3, District 1 ",14786 Bon Dickey Dr.,,Baton Rouge,LA,70818,225-261-3663,EAST BATON ROUGE,Don Thompson,14786 Bon Dickey Dr.,,Baton Rouge,LA,70818,225-261-3663,W,M,R,267,12/31/2014,01/01/2009,Mr. Thompson -Constable ,"Justice of the Peace Ward 3, District 2 ",3777 Jones Creek Rd.,,Baton Rouge,LA,70816,225-753-1938,EAST BATON ROUGE,John D. Cormier,14114 Pine Hurst Ave.,,Baton Rouge,LA,70817,225-755-1761,W,M,R,267,12/31/2014,01/01/2009,Mr. Cormier -Constable ,"Justice of the Peace Ward 3, District 3 ",16612 Autumn Ridge,,Baton Rouge,LA,70810,225-752-9364,EAST BATON ROUGE,David L. Wade,16612 Autumn Ridge Ave.,,Baton Rouge,LA,70810,225-752-9364,W,M,R,267,12/31/2014,01/01/2009,Mr. Wade -Mayor ,City of Baker ,P. O. Box 707,,Baker,LA,,225-778-0300,EAST BATON ROUGE,Harold Rideau,13821 Brantley Dr.,,Baker,LA,70714,225-774-1155,B,M,D,300,06/30/2012,07/01/2008,Mr. Rideau -Mayor ,City of Central ,9339 Sullivan Road,,Baton Rouge,LA,70818,225-261-0653,EAST BATON ROUGE,"Shelton S. ""Mac"" Watts, ","13421 Hooper Rd., Ste. 9",,Baton Rouge,LA,70818-2900,225-261-5988,W,M,R,300,06/30/2010,07/01/2006,Mr. Watts -Mayor ,City of Zachary ,P.O. Box 310,,Zachary,LA,,225-654-0287,EAST BATON ROUGE,Henry J. Martinez,5461 Fennwood Dr.,,Zachary,LA,70791,225-654-9119,W,M,R,300,01/10/2011,01/08/2007,Mayor Martinez -Chief of Police ,City of Baker ,P. O. Box 707,,Baker,LA,70714,225-778-0300,EAST BATON ROUGE,"Michael ""Snapper"" Knaps",2209 Debra Dr.,,Baker,LA,70714,225-775-3106,W,M,D,305,06/30/2012,07/01/2008,Mr. Knaps -Chief of Police ,City of Central ,9339 Sullivan Road,,Baton Rouge,LA,70818,225-261-0653,EAST BATON ROUGE,James Douglas Browning,6487 Thelmadale Dr.,,Greenwell Springs,LA,70739,225-261-5554,W,M,R,305,06/30/2010,07/01/2006,Mr. Browning -Chief of Police ,City of Zachary ,P.O. Box 310,,Zachary,LA,70791-0310 ,225-654-0287,EAST BATON ROUGE,"John N. Herty, Jr.",4222 Noble St.,,Zachary,LA,70791,225-933-8991,W,M,O,305,01/10/2011,01/08/2007,Chief Herty -Council Member(s) ,City of Central ,9339 Sullivan Road,,Baton Rouge,LA,70818,225-261-0653,EAST BATON ROUGE,"Louis DeJohn, Jr.",P.O. Box 15342,,Baton Rouge,LA,70896,225-927-6520,W,M,R,310,06/30/2010,07/01/2006,Mr. DeJohn -Council Member(s) ,City of Central ,9339 Sullivan Road,,Baton Rouge,LA,70818,225-261-0653,EAST BATON ROUGE,Joan C. Lansing,13943 Palomino Dr.,,Greenwell Springs,LA,70739,225-261-2195,W,F,R,310,06/30/2010,07/01/2006,Ms. Lansing -Council Member(s) ,City of Central ,9339 Sullivan Road,,Baton Rouge,LA,70818,225-261-0653,EAST BATON ROUGE,Aaron Moak,5140 Fryers Ave.,,Greenwell Springs,LA,70739,225-261-0612,W,M,R,310,06/30/2010,07/01/2006,Mr. Moak -Council Member(s) ,City of Central ,9339 Sullivan Road,,Baton Rouge,LA,70818,225-261-0653,EAST BATON ROUGE,"""Lucky"" Ross",17839 Lake Vista Dr.,,Greenwell Springs,LA,70739,225-937-7775,W,M,R,310,06/30/2010,07/01/2006,Mr. Ross -Council Member(s) ,City of Central ,9339 Sullivan Road,,Baton Rouge,LA,70818,225-261-0653,EAST BATON ROUGE,Ralph J. Washington,7201 Conestoga Dr.,,Greenwell Springs,LA,70739,225-926-0788,B,M,D,310,06/30/2010,07/01/2006,Mr. Washington -Councilman ,"District 1, City of Baker ",P. O. Box 707,,Baker,LA,70714,225-778-0300,EAST BATON ROUGE,Charles Vincent,13312 Alba Dr.,,Baker,LA,70714,225-774-8777,B,M,D,310,06/30/2012,07/01/2008,Mr. Vincent -Councilman ,"District 1, City of Zachary ",,,,LA,,,EAST BATON ROUGE,Francis Nezianya,1227 Mills Point Dr.,,Zachary,LA,70791,225-658-5816,B,M,O,310,01/10/2011,01/08/2007,Mr. Nezianya -Councilman ,"District 2, City of Baker ",P. O. Box 707,,Baker,LA,70714,225-778-0300,EAST BATON ROUGE,"""A. J."" Walls",2312 S. Magnolia Dr.,,Baker,LA,70714,225-778-1293,W,M,D,310,06/30/2012,07/01/2008,Mr. Walls -Councilman ,"District 2, City of Zachary ",,,,LA,,,EAST BATON ROUGE,John M. Coghlan,2128 W. George St.,,Zachary,LA,70791,225-654-0789,W,M,R,310,01/10/2011,01/08/2007,Mr. Coghlan -Councilman ,"District 3, City of Baker ",P. O. Box 707,,Baker,LA,70714,225-778-0300,EAST BATON ROUGE,Carlon Simpson,1894 McHugh Rd.,,Baker,LA,70714-2704,225-778-1846,W,F,D,310,06/30/2012,07/01/2008,Mr. Simpson -Councilman ,"District 3, City of Zachary ",,,,LA,,,EAST BATON ROUGE,"""Randy"" Bouley",19313 Old Scenic Hwy.,,Zachary,LA,70791,225-654-5117,W,M,R,310,01/10/2011,01/08/2007,Mr. Bouley -Councilman ,"District 4, City of Baker ",P. O. Box 707,,Baker,LA,70714,225-778-0300,EAST BATON ROUGE,"James ""Jimmy"" Pourciau",3625 Harrison St.,,Baker,LA,70714,225-775-0788,W,M,D,310,06/30/2012,07/01/2008,Mr. Pourciau -Councilman ,"District 4, City of Zachary ",,,,LA,,,EAST BATON ROUGE,"""Dan"" Wallis",P.O. Box 620,,Zachary,LA,70791,225-658-2078,W,M,R,310,01/10/2011,01/08/2007,Mr. Wallis -Councilman ,"District 5, City of Baker ",P. O. Box 707,,Baker,LA,70714,225-778-0300,EAST BATON ROUGE,Fred O. Russell,5425 Lavey Ln.,,Baker,LA,70714,225-775-3389,W,M,D,310,06/30/2012,07/01/2008,Mr. Russell -Councilman ,"District 5, City of Zachary ",,,,LA,,,EAST BATON ROUGE,Melvin L. Riley,4851 Old Slaughter Rd.,,Zachary,LA,70791,225-654-6303,B,M,D,310,01/10/2011,01/08/2007,Mr. Riley -DPEC Member ,at Large ,,,,LA,,,EAST CARROLL,,,,,,,,,,,054 -DPEC Member ,District 1 ,,,,LA,,,EAST CARROLL,,,,,,,,,,,056 -DPEC Member ,District 2 ,,,,LA,,,EAST CARROLL,,,,,,,,,,,056 -DPEC Member ,District 3 ,,,,LA,,,EAST CARROLL,,,,,,,,,,,056 -DPEC Member ,District 4 ,,,,LA,,,EAST CARROLL,,,,,,,,,,,056 -DPEC Member ,District 5 ,,,,LA,,,EAST CARROLL,,,,,,,,,,,056 -DPEC Member ,District 6 ,,,,LA,,,EAST CARROLL,,,,,,,,,,,056 -DPEC Member ,District 7 ,,,,LA,,,EAST CARROLL,,,,,,,,,,,056 -DPEC Member ,District 8 ,,,,LA,,,EAST CARROLL,,,,,,,,,,,056 -DPEC Member ,District 9 ,,,,LA,,,EAST CARROLL,,,,,,,,,,,056 -RPEC Member ,at Large ,,,,LA,,,EAST CARROLL,,,,,,,,,,,064 -RPEC Member ,District 1 ,,,,LA,,,EAST CARROLL,,,,,,,,,,,066 -RPEC Member ,District 2 ,,,,LA,,,EAST CARROLL,,,,,,,,,,,066 -RPEC Member ,District 3 ,,,,LA,,,EAST CARROLL,,,,,,,,,,,066 -RPEC Member ,District 4 ,,,,LA,,,EAST CARROLL,,,,,,,,,,,066 -RPEC Member ,District 5 ,,,,LA,,,EAST CARROLL,,,,,,,,,,,066 -RPEC Member ,District 6 ,,,,LA,,,EAST CARROLL,,,,,,,,,,,066 -RPEC Member ,District 7 ,,,,LA,,,EAST CARROLL,,,,,,,,,,,066 -RPEC Member ,District 8 ,,,,LA,,,EAST CARROLL,,,,,,,,,,,066 -RPEC Member ,District 9 ,,,,LA,,,EAST CARROLL,,,,,,,,,,,066 -Sheriff ,,P.O. Box 246,,Lake Providence,LA,71254,318-559-2800,EAST CARROLL,Mark W. Shumate,P.O. Box 246,,Lake Providence,LA,71254,318-559-7686,W,M,D,225,06/30/2012,07/01/2008,Sheriff Schumate -Clerk of Court ,,400 First St.,,Lake Providence,LA,71254,318-559-2399,EAST CARROLL,Beatrice Allen Carter,400 First St.,,Lake Providence,LA,71254,318-559-0216,B,F,D,230,06/30/2012,07/01/2008,Ms. Carter -Assessor ,,"400 First St., Rm. 10",,Lake Providence,LA,71254,318-559-2850,EAST CARROLL,Geneva F. Odom,P.O. Box 70,,Transylvania,LA,71286,318-552-6333,W,F,D,235,12/31/2012,01/01/2009,Ms. Odom -Coroner ,,P.O. Box 632,,Lake Providence,LA,71254,318-559-2814,EAST CARROLL,"""Jim"" Holt",718 Peanut Rd.,,Lake Providence,LA,71254,,W,M,D,240,03/25/2012,03/24/2008,Mr. Holt -Police Juror ,District 1 ,400 First St.,,Lake Providence,LA,,318-559-2256,EAST CARROLL,Truett Dunn,1096 Homestead Rd.,,Transylvania,LA,71286,318-559-2211,W,M,D,245,01/08/2012,01/14/2008,Mr. Dunn -Police Juror ,District 2 ,400 First St.,,Lake Providence,LA,71254,318-559-2256,EAST CARROLL,John E. Shoemaker,1704 Scott St.,,Lake Providence,LA,71254,318-418-0225,B,M,D,245,01/08/2012,01/14/2008,Mr. Shoemaker -Police Juror ,District 3 ,400 First St.,,Lake Providence,LA,71254,318-559-2256,EAST CARROLL,"Joseph ""B.B."" Jackson",P.O. Box 894,,Lake Providence,LA,71254,318-559-4949,B,M,D,245,01/08/2012,01/14/2008,Mr. Jackson -Police Juror ,District 4 ,400 First St.,,Lake Providence,LA,71254,318-559-2256,EAST CARROLL,Kendall Lydell Thompson,218 Madden Dr.,,Lake Providence,LA,71254,318-559-1730,B,M,D,245,01/08/2012,01/14/2008,Mr. Thompson -Police Juror ,District 5 ,400 First St.,,Lake Providence,LA,71254,318-559-2256,EAST CARROLL,Roger Odell Clement,100 Luke Dr.,,Lake Providence,LA,71254,318-559-3617,W,M,D,245,01/08/2012,01/14/2008,Mr. Clement -Member of School Board ,District 1 ,P. O. Box 792,,Lake Providence,LA,71254,318-559-2222,EAST CARROLL,Ralph W. Coleman,2884 Hwy. 579,,Epps,LA,71237,318-552-6561,W,M,D,255,12/31/2010,01/01/2007,Mr. Coleman -Member of School Board ,District 2 ,P. O. Box 792,,Lake Providence,LA,71254,318-559-2222,EAST CARROLL,Harriet Bridges,1991 Cotton Club Rd.,,Lake Providence,LA,71254,318-559-1855,W,F,D,255,12/31/2010,01/01/2007,Ms. Bridges -Member of School Board ,District 3 ,P. O. Box 792,,Lake Providence,LA,71254,318-559-2222,EAST CARROLL,Evangelia Fields,1101 Sparrow St.,,Lake Providence,LA,71254,318-559-5672,B,F,D,255,12/31/2010,01/01/2007,Ms. Fields -Member of School Board ,District 4 ,P. O. Box 792,,Lake Providence,LA,71254,318-559-2222,EAST CARROLL,Gene Edmondson,924 Riddle Ln.,,Lake Providence,LA,71254,318-559-1294,W,M,O,255,12/31/2010,01/01/2007,Mr. Edmondson -Member of School Board ,District 5 ,P. O. Box 792,,Lake Providence,LA,71254,318-559-2222,EAST CARROLL,Roger Shoemaker,504 Star Arlington St.,,Lake Providence,LA,71254,318-559-2113,B,M,D,255,12/31/2010,01/01/2007,Mr. Shoemaker -Member of School Board ,District 6 ,P. O. Box 792,,Lake Providence,LA,71254,318-559-2222,EAST CARROLL,Fannie Hawkins,512 Hood St.,,Lake Providence,LA,71254,318-559-3232,B,F,D,255,12/31/2010,01/01/2007,Ms. Hawkins -Member of School Board ,District 7 ,P. O. Box 792,,Lake Providence,LA,71254,318-559-2222,EAST CARROLL,Georjean Jefferson Jackson,614 Eighth St.,,Lake Providence,LA,71254,318-559-2344,B,F,D,255,12/31/2010,01/01/2007,Ms. Jackson -Member of School Board ,District 8 ,P. O. Box 792,,Lake Providence,LA,71254,318-559-2222,EAST CARROLL,Tommy McKeel,1426 Short Seventh St.,,Lake Providence,LA,71254,318-559-7269,B,M,D,255,12/31/2010,01/01/2007,Mr. McKeel -Member of School Board ,District 9 ,P. O. Box 792,,Lake Providence,LA,71254,318-559-2222,EAST CARROLL,Glenn Dixon,25 Harding St.,,Lake Providence,LA,71254,318-559-0886,B,M,D,255,12/31/2010,01/01/2007,Mr. Dixon -Justice of the Peace ,1st Justice Court ,1896 Island Point Dr.,,Lake Providence,LA,71254,318-559-1744,EAST CARROLL,Debra Hopkins,15200 Hwy. 65 South,,Transylvania,LA,71286,318-552-6796,W,F,R,265,12/31/2014,01/01/2009,Ms. Hopkins -Constable ,1st Justice Court ,59 Artaud St.,,Lake Providence,LA,71254,318-559-9096,EAST CARROLL,Gregory Jones,59 Artuard St.,,Lake Providence,LA,71254,318-559-9096,B,M,D,267,12/31/2014,01/01/2009,Mr. Jones -Mayor ,Town of Lake Providence ,201 Sparrow St.,,Lake Providence,LA,,318-559-2288,EAST CARROLL,"Isaac Fields, Jr.",409 Jackson St.,,Lake Providence,LA,71254,318-559-2434,B,M,D,300,12/31/2010,01/01/2007,Mr. Fields -Chief of Police ,Town of Lake Providence ,201 Sparrow St.,,Lake Providence,LA,71254,318-559-2288,EAST CARROLL,Renee Blockwood Jones,1014 Second St.,,Lake Providence,LA,71254,318-559-4845,B,F,D,305,12/31/2010,01/01/2007,Ms. Jones -Alderman ,Town of Lake Providence ,201 Sparrow St.,,Lake Providence,LA,71254,318-559-2288,EAST CARROLL,Ray Frazier,P.O. Box 625,,Lake Providence,LA,71254,318-559-1826,B,M,D,310,12/31/2010,01/01/2007,Mr. Frazier -Alderman ,Town of Lake Providence ,201 Sparrow St.,,Lake Providence,LA,71254,318-559-2288,EAST CARROLL,"Nemia ""Nate"" Madere",503 Gould #16,,Lake Providence,LA,71254,318-559-9019,B,M,D,310,12/31/2010,01/01/2007,Mr. Madere -Alderman ,Town of Lake Providence ,201 Sparrow St.,,Lake Providence,LA,71254,318-559-2288,EAST CARROLL,KarVan Powell,1458 Saint Louis Ave.,,Lake Providence,LA,71254,318-559-2204,B,M,D,310,12/31/2010,01/01/2007,Mr. Powell -Alderman ,Town of Lake Providence ,201 Sparrow St.,,Lake Providence,LA,71254,318-559-2288,EAST CARROLL,Amos Wright,708 Davis St.,,Lake Providence,LA,71254,318-559-1340,B,M,D,310,12/31/2010,01/01/2007,Mr. Wright -Alderman ,Town of Lake Providence ,201 Sparrow St.,,Lake Providence,LA,71254,318-559-2288,EAST CARROLL,Alfred J. Young,309 Davis St.,,Lake Providence,LA,71254,318-559-3786,B,M,D,310,12/31/2010,01/01/2007,Mr. Young -DPEC Member ,at Large ,,,,LA,,,EAST FELICIANA,"""Uncle George"" Charlet",P.O. Box 506,,Clinton,LA,70722,225-683-8919,W,M,D,054,02/20/2012,02/20/2008,Mr. Charlet -DPEC Member ,District 1A ,,,,LA,,,EAST FELICIANA,,,,,,,,,,,056 -DPEC Member ,District 1B ,,,,LA,,,EAST FELICIANA,,,,,,,,,,,056 -DPEC Member ,District 2 ,,,,LA,,,EAST FELICIANA,,,,,,,,,,,056 -DPEC Member ,District 3 ,,,,LA,,,EAST FELICIANA,,,,,,,,,,,056 -DPEC Member ,District 4A ,,,,LA,,,EAST FELICIANA,,,,,,,,,,,056 -DPEC Member ,District 4B ,,,,LA,,,EAST FELICIANA,,,,,,,,,,,056 -DPEC Member ,District 5 ,,,,LA,,,EAST FELICIANA,,,,,,,,,,,056 -DPEC Member ,District 6 ,,,,LA,,,EAST FELICIANA,,,,,,,,,,,056 -DPEC Member ,District 7 ,,,,LA,,,EAST FELICIANA,,,,,,,,,,,056 -RPEC Member ,at Large ,,,,LA,,,EAST FELICIANA,"""Ron"" Smith",8287 Lakeshore Dr.,,Ethel,LA,70730,225-683-6692,W,M,R,064,02/20/2012,02/20/2008,Mr. Smith -RPEC Member ,District 1A ,,,,LA,,,EAST FELICIANA,,,,,,,,,,,066 -RPEC Member ,District 1B ,,,,LA,,,EAST FELICIANA,,,,,,,,,,,066 -RPEC Member ,District 2 ,,,,LA,,,EAST FELICIANA,,,,,,,,,,,066 -RPEC Member ,District 3 ,,,,LA,,,EAST FELICIANA,,,,,,,,,,,066 -RPEC Member ,District 4A ,,,,LA,,,EAST FELICIANA,,,,,,,,,,,066 -RPEC Member ,District 4B ,,,,LA,,,EAST FELICIANA,,,,,,,,,,,066 -RPEC Member ,District 5 ,,,,LA,,,EAST FELICIANA,,,,,,,,,,,066 -RPEC Member ,District 6 ,,,,LA,,,EAST FELICIANA,,,,,,,,,,,066 -RPEC Member ,District 7 ,,,,LA,,,EAST FELICIANA,,,,,,,,,,,066 -Sheriff ,,P. O. Box 207,,Clinton,LA,70722,225-683-8572,EAST FELICIANA,Talmadge Bunch,P.O. Box 207,,Clinton,LA,70722,225-683-8783,W,M,D,225,06/30/2012,07/01/2008,Sheriff Bunch -Clerk of Court ,,P. O. Drawer 599,,Clinton,LA,70722,225-683-5154,EAST FELICIANA,David Dart,P. O. Drawer 599,,Clinton,LA,70722,225-683-5769,W,M,O,230,06/30/2012,07/01/2008,Mr. Dart -Assessor ,,P. O. Box 263,,Clinton,LA,70722,225-683-8945,EAST FELICIANA,"H. T. ""Bubby"" Jackson",P.O. Box 851,,Clinton,LA,70722,225-719-2851,W,M,D,235,12/31/2012,01/01/2009,Mr. Jacskon -Coroner ,,P.O. Box 8419,,Clinton,LA,70722,225-683-3358,EAST FELICIANA,Michael DeJohn,P.O. Box 8419,,Clinton,LA,70722,225-683-3358,W,M,R,240,03/25/2012,03/24/2008,Mr. DeJohn -Police Juror ,District 1A ,P. O. Box 427,,Clinton,LA,,225-683-8577,EAST FELICIANA,Dennis Aucoin,P.O. Box 8815,,Clinton,LA,70722,225-683-8210,W,M,R,245,01/08/2012,01/14/2008,Mr. Aucoin -Police Juror ,District 1B ,P. O. Box 427,,Clinton,LA,70722,225-683-8577,EAST FELICIANA,John M. Barnett,2292 Turner Rd.,,Ethel,LA,70730,225-683-4979,W,M,,245,01/08/2012,01/14/2008,Mr. Barnett -Police Juror ,District 2 ,P. O. Box 427,,Clinton,LA,70722,225-683-8577,EAST FELICIANA,"Edward ""Ed"" Brooks, Sr.",7105 Richardson Loop,,Jackson,LA,70748,225-634-7929,B,M,D,245,01/08/2012,01/14/2008,Mr. Brooks -Police Juror ,District 3 ,P. O. Box 427,,Clinton,LA,70722,225-683-8577,EAST FELICIANA,"""Chris"" Ferguson",2203 Hatfield Ln.,,Jackson,LA,70748,225-634-7264,B,M,D,245,01/08/2012,01/14/2008,Mr. Ferguson -Police Juror ,District 4A ,P. O. Box 427,,Clinton,LA,70722,225-683-8577,EAST FELICIANA,Richard Dudley,3233 Church St,,Jackson,LA,70748,225-634-5522,W,M,D,245,01/08/2012,01/14/2008,Mr. Dudley -Police Juror ,District 4B ,P. O. Box 427,,Clinton,LA,70722,225-683-8577,EAST FELICIANA,"E. S. ""Buggs"" Barnes",5638 Line Rd.,,Ethel,LA,70730,225-634-7907,W,M,D,245,01/08/2012,01/14/2008,Mr. Barnes -Police Juror ,District 5 ,P. O. Box 427,,Clinton,LA,70722,225-683-8577,EAST FELICIANA,"E. L. ""Larry"" Beauchamp, III",9820 Bank St.,,Clinton,LA,70722,225-683-8057,W,M,D,245,01/08/2012,01/14/2008,Mr. Beauchamp -Police Juror ,District 6 ,P. O. Box 427,,Clinton,LA,70722,225-683-8577,EAST FELICIANA,"Karl ""Bubba"" Chaney",P.O. Box 8655,,Clinton,LA,70722,225-683-6901,W,M,D,245,01/08/2012,01/14/2008,Mr. Chaney -Police Juror ,District 7 ,P. O. Box 427,,Clinton,LA,70722,225-683-8577,EAST FELICIANA,Louis Kent,P.O. Box 7996,,Clinton,LA,70722,225-683-9373,B,M,D,245,01/08/2012,01/14/2008,Mr. Kent -Member of School Board ,District 1 ,P. O. Box 397,,Clinton,LA,70722,225-683-3040,EAST FELICIANA,J. Curtis Jelks,13622 James Ln.,,Norwood,LA,70761,225-629-5972,W,M,R,255,12/31/2010,01/01/2007,Mr. Jelks -Member of School Board ,"District 2, Division 1 ",P. O. Box 397,,Clinton,LA,70722,225-683-3040,EAST FELICIANA,Willie Meaner Jackson,4506 Hwy. 952,,Jackson,LA,70748,225-629-5549,B,F,D,255,12/31/2010,01/01/2007,Ms. Jackson -Member of School Board ,"District 2, Division 2 ",P. O. Box 397,,Clinton,LA,70722,225-683-3040,EAST FELICIANA,Oliver L. Wingfield,7014 Tommy James Ln.,,Jackson,LA,70748,225-634-7762,B,M,D,255,12/31/2010,07/21/2008,Mr. Wingfield -Member of School Board ,"District 3, Division 1 ",P. O. Box 397,,Clinton,LA,70722,225-683-3040,EAST FELICIANA,"""Mitch"" Harrell",5888 Hwy. 68,,Jackson,LA,70748,225-634-5340,W,M,D,255,12/31/2010,01/01/2007,Mr. Harrell -Member of School Board ,"District 3, Division 2 ",P. O. Box 397,,Clinton,LA,70722,225-683-3040,EAST FELICIANA,"Henry Howell, IV",P.O. Box 295,,Jackson,LA,70748,225-634-7159,W,M,O,255,12/31/2010,01/01/2007,Mr. Howell -Member of School Board ,"District 3, Division 3 ",P. O. Box 397,,Clinton,LA,70722,225-683-3040,EAST FELICIANA,"""Beth"" L. Dawson",4657 Hwy. 68,,Jackson,LA,70748,225-654-9653,W,F,O,255,12/31/2010,01/01/2007,Ms. Dawson -Member of School Board ,District 4 ,P. O. Box 397,,Clinton,LA,70722,225-683-3040,EAST FELICIANA,Clay Barksdale,P.O. Box 176,,Slaughter,LA,70777,225-683-4106,W,M,D,255,12/31/2010,01/01/2007,Mr. Barksdale -Member of School Board ,District 5 ,P. O. Box 397,,Clinton,LA,70722,225-683-3040,EAST FELICIANA,"Henry ""Lee"" Bud Wicker",4338 Mac Byrnes Rd.,,Ethel,LA,70730,225-683-7056,W,M,O,255,12/31/2010,01/01/2007,Mr. Peterson -Member of School Board ,"District 6, Division 1 ",P. O. Box 397,,Clinton,LA,70722,225-683-3040,EAST FELICIANA,"Leon ""Sonny"" Franklin",P.O. Box 8182,,Clinton,LA,70722,225-683-6805,W,M,O,255,12/31/2010,01/01/2007,Mr. Franklin -Member of School Board ,"District 6, Division 2 ",P. O. Box 397,,Clinton,LA,70722,225-683-3040,EAST FELICIANA,Richard W. Terrell,14981 Hwy. 67,,Clinton,LA,70722,225-683-3853,B,M,D,255,12/31/2010,01/01/2007,Mr. Terrell -Member of School Board ,"District 6, Division 3 ",P. O. Box 397,,Clinton,LA,70722,225-683-3040,EAST FELICIANA,Michael Ray Bradford,P.O. Box 8803,,Clinton,LA,70722,225-683-5038,B,M,D,255,12/31/2010,01/01/2007,Mr. Bradford -Member of School Board ,District 7 ,P. O. Box 397,,Clinton,LA,70722,225-683-3040,EAST FELICIANA,"Anthony ""Tony"" Rouchon",5845 Winchester Ln.,,Clinton,LA,70722,225-683-9264,W,M,O,255,12/31/2010,01/01/2007,Mr. Rouchon -Justice of the Peace ,Justice of the Peace District 1 ,5501 Hwy. 19,,Ethel,LA,70730,225-683-6814,EAST FELICIANA,"Raymond D. ""Ray"" Williams",7361 Battle Rd.,,Ethel,LA,70730,225-683-9360,W,M,D,265,12/31/2014,01/01/2009,Mr. Williams -Justice of the Peace ,Justice of the Peace District 2 ,P. O. Box 189,,Jackson,LA,70748,225-634-2281,EAST FELICIANA,Julia Adams,P. O. Box 189,,Jackson,LA,70748,225-634-2281,W,F,D,265,12/31/2014,01/01/2009,Ms. Adams -Justice of the Peace ,Justice of the Peace District 3 ,P. O. Box 245,,Clinton,LA,70722,225-683-8324,EAST FELICIANA,Dewey W. DeLee,P. O. Box 245,,Clinton,LA,70722,225-683-8324,W,M,R,265,12/31/2014,01/01/2009,Mr. DeLee -Justice of the Peace ,Justice of the Peace District 4 ,P. O. Box 8681,,Clinton,LA,70722,225-683-5765,EAST FELICIANA,Nellie A. Thomas,P. O. Box 8681,,Clinton,LA,70722,225-683-5765,B,F,D,265,12/31/2014,01/01/2009,Ms. Thomas -Constable ,Justice of the Peace District 1 ,P.O. Box 217,,Slaughter,LA,70777,225-654-4344,EAST FELICIANA,"C. Bernard Maglone, Jr.",2053 Maglone Ln.,,Slaughter,LA,70777,225-654-4344,W,M,D,267,12/31/2014,01/01/2009,Mr. Maglone -Constable ,Justice of the Peace District 2 ,7713 Brown Ln.,,Jackson,LA,70748,225-634-5578,EAST FELICIANA,Joel Odom,P. O. Box 1050,,Jackson,LA,70748,225-634-5303,W,M,D,267,12/31/2014,01/01/2009,Mr. Odom -Constable ,Justice of the Peace District 3 ,P.O. Box 351,,Clinton,LA,70722,225-683-8673,EAST FELICIANA,"James ""Bubba"" Bradham",P. O. Box 69,,Clinton,LA,70722,225-719-2015,W,M,D,267,12/31/2014,01/01/2009,Mr. Bradhan -Constable ,Justice of the Peace District 4 ,P.O. Box 8681,,Clinton,LA,70722,225-683-3331,EAST FELICIANA,Marcy T. Robinson,P. O. Box 8681,,Clinton,LA,70722,225-683-3331,B,F,D,267,12/31/2014,01/01/2009,Ms. Robinson -Mayor ,Town of Clinton ,P. O. Box 513,,Clinton,LA,,225-683-5531,EAST FELICIANA,Don Reason,P. O. Box 981,,Clinton,LA,70722,225-683-8070,W,M,D,300,12/31/2012,01/01/2009,Mayor Reason -Mayor ,Town of Jackson ,P. O. Box 1150,,Jackson,LA,,225-634-7777,EAST FELICIANA,Charles Coleman,1168 Charter St.,,Jackson,LA,70748,225-634-7351,W,M,D,300,06/30/2012,07/01/2008,Mayor Coleman -Mayor ,Town of Slaughter ,P.O. Box 29,,Slaughter,LA,,225-654-4278,EAST FELICIANA,"""Bobbie"" Bourgeois",3004 Meadowood Dr.,,Slaughter,LA,70777,225-654-2198,W,F,D,300,06/30/2012,07/01/2008,Mayor Bourgeois -Mayor ,Village of Norwood ,P. O. Box 249,,Norwood,LA,,225-629-5347,EAST FELICIANA,"Rebecca ""Becky"" Bellue",P.O. Box 35,,Norwood,LA,70761,225-629-5561,W,F,D,300,06/30/2012,07/01/2008,Ms. Bellue -Mayor ,Village of Wilson ,P. O. Box 40,,Wilson,LA,,225-629-5415,EAST FELICIANA,Joshua Thomas,P. O. Box 382,,Wilson,LA,70789,225-629-5208,B,M,,300,06/30/2013,07/01/2009,Mayor Thomas -Chief of Police ,Town of Slaughter ,P.O. Box 29,,Slaughter,LA,70777-0029 ,225-654-4278,EAST FELICIANA,"Walter S. Smith, Jr.",P.O. Box 165,,Slaughter,LA,70777,225-658-2463,W,M,R,305,06/30/2012,07/01/2008,Mr. Smith -Marshal ,Town of Jackson ,P.O. Box 1150,,Jackson,LA,70748,225-634-7777,EAST FELICIANA,Fred Allen,3960 Cottage St.,,Jackson,LA,70748,225-634-2501,W,M,D,305,06/30/2012,07/01/2008,Mr. Allen -Alderman ,Town of Clinton ,P. O. Box 513,,Clinton,LA,70722,225-683-5531,EAST FELICIANA,"""Johnny"" Beauchamp",P. O. Box 714,,Clinton,LA,70722,225-683-5133,W,M,D,310,12/31/2012,01/01/2009,Mr. Beauchamp -Alderman ,Town of Clinton ,P. O. Box 513,,Clinton,LA,70722,225-683-5531,EAST FELICIANA,Lori Ann Bell,11616 Railroad St.,,Clinton,LA,70722,225-683-5646,B,F,D,310,12/31/2012,01/01/2009,Ms. Bell -Alderman ,Town of Clinton ,P. O. Box 513,,Clinton,LA,70722,225-683-5531,EAST FELICIANA,George B. Kilbourne,P. O. Box 588,,Clinton,LA,70722,225-683-5595,B,M,D,310,12/31/2012,01/01/2009,Mr. Kilbourne -Alderman ,Town of Clinton ,P. O. Box 513,,Clinton,LA,70722,225-683-5531,EAST FELICIANA,"Clovis Matthews, Sr.",10641 Roosevelt St.,,Clinton,LA,70722,225-683-3265,B,M,,310,12/31/2012,01/01/2009,Mr. Matthews -Alderman ,Town of Clinton ,P. O. Box 513,,Clinton,LA,70722,225-683-5531,EAST FELICIANA,Lisa Davis Washington,P. O. Box 7998,,Clinton,LA,70722,225-683-5398,B,F,D,310,12/31/2012,01/01/2009,Ms. Washington -Alderman ,Town of Slaughter ,P.O. Box 29,,Slaughter,LA,70777-0029 ,225-654-4278,EAST FELICIANA,"Tommy ""T J"" Boothe",2831 Rush St.,,Slaughter,LA,70777,225-654-6863,W,M,D,310,06/30/2012,07/01/2008,Mr. Boothe -Alderman ,Town of Slaughter ,P.O. Box 29,,Slaughter,LA,70777-0029 ,225-654-4278,EAST FELICIANA,"""Nick"" St. Germain",1257 Holly Dr.,,Slaughter,LA,70777,225-654-9654,W,M,D,310,06/30/2012,07/01/2008,Mr. St. Germain -Alderman ,Town of Slaughter ,P.O. Box 29,,Slaughter,LA,70777-0029 ,225-654-4278,EAST FELICIANA,"Robert ""Robbie"" Jackson",P.O. Box 171,,Slaughter,LA,70777,225-658-4899,W,M,R,310,06/30/2012,07/01/2008,Mr. Jackson -Alderman ,Town of Slaughter ,P.O. Box 29,,Slaughter,LA,70777-0029 ,225-654-4278,EAST FELICIANA,"William ""Bill"" McMills, Jr.",2668 Meadowood Dr.,,Slaughter,LA,70777,225-654-0003,W,M,D,310,06/30/2012,02/23/2009,Mr. Willhite -Alderman ,Town of Slaughter ,P.O. Box 29,,Slaughter,LA,70777-0029 ,225-654-4278,EAST FELICIANA,Ashby Schwartz,P.O. Box 441,,Slaughter,LA,70777,225-658-4917,W,M,R,310,06/30/2012,07/01/2008,Mr. Schwartz -Alderman ,Village of Norwood ,P. O. Box 249,,Norwood,LA,70761,225-329-5347,EAST FELICIANA,David C. Jett,P. O. Box 38,,Norwood,LA,70761,225-629-5422,W,M,D,310,06/30/2012,10/14/2008,Mr. Jett -Alderman ,Village of Norwood ,P. O. Box 249,,Norwood,LA,70761,225-329-5347,EAST FELICIANA,"James ""Jim"" McCaa",P.O. Box 5,,Norwood,LA,70761,225-629-4003,W,M,D,310,06/30/2012,07/01/2008,Mr. McCaa -Alderman ,Village of Norwood ,P. O. Box 249,,Norwood,LA,70761,225-329-5347,EAST FELICIANA,"James M. ""Jim"" Reynolds",P.O. Box 129,,Norwood,LA,70761,225-629-5959,W,M,D,310,06/30/2012,07/01/2008,Mr. Reynolds -Alderman ,Village of Wilson ,P. O. Box 40,,Wilson,LA,70789,225-629-5415,EAST FELICIANA,Marilyn Broadway,P. O. Box 364,,Wilson,LA,70789,225-629-4783,B,F,D,310,06/30/2013,07/01/2009,Ms. Broadway -Alderman ,Village of Wilson ,P. O. Box 40,,Wilson,LA,70789,225-629-5415,EAST FELICIANA,Harriett T. Sensley,P. O. Box 182,,Wilson,LA,70789,225-629-5460,B,F,D,310,06/30/2013,07/01/2009,Mr. Sensley -Alderman ,Village of Wilson ,P. O. Box 40,,Wilson,LA,70789,225-629-5415,EAST FELICIANA,Eunice N. Smiley,P.O. Box 162,,Wilson,LA,70789,225-629-5491,W,F,D,310,06/30/2013,07/01/2009,Ms. Smiley -"Member, Board of Trustees",Town of Jackson ,P. O. Box 1150,,Jackson,LA,70748,225-634-7777,EAST FELICIANA,Toby J. Aucoin,P.O. Box 756,,Jackson,LA,70748,225-634-2020,W,M,D,310,06/30/2012,07/01/2008,Mr. Aucoin -"Member, Board of Trustees",Town of Jackson ,P. O. Box 1150,,Jackson,LA,70748,225-634-7777,EAST FELICIANA,Michael O. Harrell,P.O. Box 1248,,Jackson,LA,70748,225-445-4437,W,M,D,310,06/30/2012,07/01/2008,Mr. Harrell -"Member, Board of Trustees",Town of Jackson ,P. O. Box 1150,,Jackson,LA,70748,225-634-7777,EAST FELICIANA,Donald E. Havard,P.O. Box 1086,,Jackson,LA,70748,225-634-7453,W,M,D,310,06/30/2012,07/01/2008,Mr. Havard -"Member, Board of Trustees",Town of Jackson ,P. O. Box 1150,,Jackson,LA,70748,225-634-7777,EAST FELICIANA,Linton Manuel,2338 Hwy. 10,,Jackson,LA,70748,225-634-7707,W,M,D,310,06/30/2012,07/01/2008,Mr. Manuel -"Member, Board of Trustees",Town of Jackson ,P. O. Box 1150,,Jackson,LA,70748,225-634-7777,EAST FELICIANA,Keith Mills,P.O. Box 1672,,Jackson,LA,70748,225-634-5725,W,M,D,310,06/30/2012,07/01/2008,Mr. Mills -DPEC Member ,at Large ,,,,LA,,,EVANGELINE,James Henry Berthelot,112 Saint Paul St.,,Ville Platte,LA,70586,337-831-2412,W,M,D,054,02/20/2012,02/20/2008,Mr. Berthelot -DPEC Member ,at Large ,,,,LA,,,EVANGELINE,Nicole Fontenot,1799 Belaire Cove Rd.,,Ville Platte,LA,70586,337-351-3296,W,F,D,054,02/20/2012,02/20/2008,Ms. Fontenot -DPEC Member ,at Large ,,,,LA,,,EVANGELINE,Ranish Richard,607 Vidrine St.,,Ville Platte,LA,70586,337-831-4116,B,F,D,054,02/20/2012,02/20/2008,Ms. Richard -DPEC Member ,District 1 ,,,,LA,,,EVANGELINE,,,,,,,,,,,056 -DPEC Member ,District 2 ,,,,LA,,,EVANGELINE,,,,,,,,,,,056 -DPEC Member ,District 3 ,,,,LA,,,EVANGELINE,,,,,,,,,,,056 -DPEC Member ,District 4 ,,,,LA,,,EVANGELINE,,,,,,,,,,,056 -DPEC Member ,District 5 ,,,,LA,,,EVANGELINE,,,,,,,,,,,056 -DPEC Member ,District 6 ,,,,LA,,,EVANGELINE,,,,,,,,,,,056 -DPEC Member ,District 7 ,,,,LA,,,EVANGELINE,Robert Eastin,1102 Huckleberry Ln.,,Ville Platte,LA,70586,337-363-6235,W,M,D,056,02/20/2012,02/20/2008,Mr. Eastin -DPEC Member ,District 8 ,,,,LA,,,EVANGELINE,"Ronald ""T"" Doucet",116 E. Jefferson,,Ville Platte,LA,70586,337-363-7400,B,M,D,056,02/20/2012,02/20/2008,Mr. Doucet -DPEC Member ,District 9 ,,,,LA,,,EVANGELINE,,,,,,,,,,,056 -RPEC Member ,at Large ,,,,LA,,,EVANGELINE,"Joseph P. Weeks, III",319 LeRoy Dr.,,Ville Platte,LA,70586,337-363-1359,W,M,R,064,02/20/2012,02/20/2008,Mr. Weeks -RPEC Member ,District 1 ,,,,LA,,,EVANGELINE,,,,,,,,,,,066 -RPEC Member ,District 2 ,,,,LA,,,EVANGELINE,,,,,,,,,,,066 -RPEC Member ,District 3 ,,,,LA,,,EVANGELINE,,,,,,,,,,,066 -RPEC Member ,District 4 ,,,,LA,,,EVANGELINE,,,,,,,,,,,066 -RPEC Member ,District 5 ,,,,LA,,,EVANGELINE,,,,,,,,,,,066 -RPEC Member ,District 6 ,,,,LA,,,EVANGELINE,,,,,,,,,,,066 -RPEC Member ,District 7 ,,,,LA,,,EVANGELINE,,,,,,,,,,,066 -RPEC Member ,District 8 ,,,,LA,,,EVANGELINE,,,,,,,,,,,066 -RPEC Member ,District 9 ,,,,LA,,,EVANGELINE,,,,,,,,,,,066 -Sheriff ,,"200 Court St., Ste. 100",,Ville Platte,LA,70586,318-363-2161,EVANGELINE,"""Eddie"" Soileau","200 Court St., Ste 100",,Ville Platte,LA,70586,337-363-5886,W,M,D,225,06/30/2012,07/01/2008,Sheriff Soileau -Clerk of Court ,,P. O. Drawer 347,,Ville Platte,LA,70586,318-363-5671,EVANGELINE,Walter Lee,P.O. Drawer 347,,Ville Platte,LA,70586,337-363-5671,W,M,D,230,06/30/2012,07/01/2008,Mr. Lee -Assessor ,,"200 Court St., Ste. 103",,Ville Platte,LA,70286,337-363-4325,EVANGELINE,Dirk Deville,P.O. Box 1058,,Ville Platte,LA,70586,337-363-4310,W,M,D,235,12/31/2012,01/01/2009,Mr. Deville -Coroner ,,P.O. Drawer 510,,Ville Platte,LA,70586,337-363-5521,EVANGELINE,Charles Fontenot,19405 Hwy. 182,,Bunkie,LA,71322,337-363-5521,W,M,D,240,03/25/2012,03/28/2008,Mr. Fontenot -Police Juror ,District 1 ,"200 Court St., Ste. 207",,Ville Platte,LA,,337-363-5651,EVANGELINE,Davis A. Manuel,667 L'anse Aux Pailles Rd.,,Ville Platte,LA,70586,337-885-2586,W,M,D,245,01/08/2012,01/14/2008,Mr. Manuel -Police Juror ,District 2 ,"200 Court St., Ste. 207",,Ville Platte,LA,70586-4490,337-363-5651,EVANGELINE,Sidney Fontenot,1632 Duplechin Ave.,,Basile,LA,70515,337-432-5405,W,M,D,245,01/08/2012,01/14/2008,Mr. Fontenot -Police Juror ,District 3 ,"200 Court St., Ste. 207",,Ville Platte,LA,70586-4490,337-363-5651,EVANGELINE,Mitchell Ryan Ardoin,1925 L.D. Verette Rd.,,Mamou,LA,70554,337-789-1305,W,M,O,245,01/08/2012,01/14/2008,Mr. Ardoin -Police Juror ,District 4 ,"200 Court St., Ste. 207",,Ville Platte,LA,70586-4490,337-363-5651,EVANGELINE,Lamar Johnson,3308 Crooked Creek Pkwy.,,Ville Platte,LA,70586,337-599-2592,W,M,D,245,01/08/2012,01/14/2008,Mr. Johnson -Police Juror ,District 5 ,"200 Court St., Ste. 207",,Ville Platte,LA,70586-4490,337-363-5651,EVANGELINE,"""Bob"" Manuel",1004 Theophile Rd.,,Ville Platte,LA,70586,337-363-6366,W,M,D,245,01/08/2012,01/14/2008,Mr. Manuel -Police Juror ,District 6 ,"200 Court St., Ste. 207",,Ville Platte,LA,70586-4490,337-363-5651,EVANGELINE,Eric B. Soileau,P.O. Box 38,,Reddell,LA,70580,337-831-2862,W,M,D,245,01/08/2012,01/14/2008,Mr. Soileau -Police Juror ,District 7 ,"200 Court St., Ste. 207",,Ville Platte,LA,70586-4490,337-363-5651,EVANGELINE,Bryan Vidrine,2194 Stagecoach Rd.,,Ville Platte,LA,70586,337-461-2595,W,M,D,245,01/08/2012,01/14/2008,Mr. Vidrine -Police Juror ,District 8 ,"200 Court St., Ste. 207",,Ville Platte,LA,70586-4490,337-363-5651,EVANGELINE,"Ryan ""Leday"" Williams",1049 Rachael Dr.,,Ville Platte,LA,70586,337-831-6934,B,M,D,245,01/08/2012,05/12/2009,Mr. Williams -Police Juror ,District 9 ,"200 Court St., Ste. 207",,Ville Platte,LA,70586-4490,337-363-5651,EVANGELINE,"Richard ""Blood"" Thomas",1530 Martin Luther King Dr.,,Ville Platte,LA,70586,337-363-7924,B,M,D,245,01/08/2012,01/14/2008,Mr. Thomas -City Judge ,"City Court, City of Ville Platte ",P. O. Box 147,,Ville Platte,LA,70586,337-363-1500,EVANGELINE,"Donald J. Launey, Jr.",596 Scenic Dr.,,Ville Platte,LA,70586,337-363-5588,W,M,D,250,12/31/2014,01/01/2009,Judge Launey -City Marshal ,"City Court, City of Ville Platte ",P. O. Box 147,,Ville Platte,LA,70586,337-363-5886,EVANGELINE,"Ronald ""T"" Doucet",116 E. Jefferson St.,,Ville Platte,LA,70586,337-831-6276,B,M,D,250,12/31/2014,01/01/2009,Marshal Doucet -Member of School Board ,District 1 ,1123 Te Mamou Rd.,,Ville Platte,LA,70586,337-363-6653,EVANGELINE,Lonnie D. Sonnier,1439 Belaire Cove Rd.,,Ville Platte,LA,70586,337-363-2344,W,M,D,255,12/31/2010,01/01/2007,Mr. Sonnier -Member of School Board ,District 2 ,1123 Te Mamou Rd.,,Ville Platte,LA,70586,337-363-6653,EVANGELINE,Bobby Deshotel,1431 Fuselier St.,,Basile,LA,70515,337-432-5474,W,M,R,255,12/31/2010,01/01/2007,Mr. Deshotel -Member of School Board ,District 3 ,1123 Te Mamou Rd.,,Ville Platte,LA,70586,337-363-6653,EVANGELINE,Jerry L. Thompson,5541 Vidrine Rd.,,Ville Platte,LA,70586,337-363-2326,W,M,D,255,12/31/2010,01/01/2007,Mr. Thompson -Member of School Board ,District 4 ,1123 Te Mamou Rd.,,Ville Platte,LA,70586,337-363-6653,EVANGELINE,Wayne Dardeau,P.O. Box 266,,Pine Prairie,LA,70576,337-599-2134,W,M,,255,12/31/2010,01/01/2007,Mr. Dardeau -Member of School Board ,District 5 ,1123 Te Mamou Rd.,,Ville Platte,LA,70586,337-363-6653,EVANGELINE,Peggy Forman,1067 Ceeway Ln.,,Ville Platte,LA,70586,337-461-2202,W,F,D,255,12/31/2010,01/01/2007,Ms. Forman -Member of School Board ,District 6 ,1123 Te Mamou Rd.,,Ville Platte,LA,70586,337-363-6653,EVANGELINE,David Landreneau,1441 Wilba Vizinat Loop,,Mamou,LA,70554,337-546-6458,W,M,D,255,12/31/2010,01/01/2007,Mr. Landreneau -Member of School Board ,District 7 ,1123 Te Mamou Rd.,,Ville Platte,LA,70586,337-363-6653,EVANGELINE,"""Dan"" Hoffpauir",1300 Poinciana Ave.,,Mamou,LA,70554,337-468-2149,W,M,D,255,12/31/2010,01/01/2007,Mr. Hoffpauir -Member of School Board ,District 8 ,1123 Te Mamou Rd.,,Ville Platte,LA,70586,337-363-6653,EVANGELINE,Wanda A. Skinner,717 Rozas St.,,Ville Platte,LA,70586,337-363-5259,B,F,D,255,12/31/2010,01/01/2007,Ms. Skinner -Member of School Board ,District 9 ,1123 Te Mamou Rd.,,Ville Platte,LA,70586,337-363-6653,EVANGELINE,Scott Limoges,225 Rickey St.,,Ville Platte,LA,70586,337-363-2341,W,M,R,255,12/31/2010,01/01/2007,Mr. Limoges -Member of School Board ,District 10 ,1123 Te Mamou Rd.,,Ville Platte,LA,70586,337-363-6653,EVANGELINE,Arthur Savoy,174 Patty Sue Dr.,,Ville Platte,LA,70586,337-363-7261,W,M,D,255,12/31/2010,01/01/2007,Mr. Savoy -Member of School Board ,District 11 ,1123 Te Mamou Rd.,,Ville Platte,LA,70586,337-363-6653,EVANGELINE,Nancy A. Hamlin,112 Ardoin St.,,Ville Platte,LA,70586,337-363-1944,W,F,D,255,12/31/2010,01/01/2007,Ms. Hamlin -Member of School Board ,District 12 ,1123 Te Mamou Rd.,,Ville Platte,LA,70586,337-363-6653,EVANGELINE,Gervis Lafleur,126 E. Long St.,,Ville Platte,LA,70586,337-363-4096,B,M,D,255,12/31/2010,01/01/2007,Mr. Lafleur -Member of School Board ,District 13 ,1123 Te Mamou Rd.,,Ville Platte,LA,70586,337-363-6653,EVANGELINE,Georgianna L. Wilson,1824 Clement St.,,Ville Platte,LA,70586,337-363-0161,B,F,D,255,12/31/2010,01/01/2007,Ms. Wilson -Justice of the Peace ,Justice of the Peace Ward 2 ,P. O. Box 729,,Basile,LA,70515,337-432-5721,EVANGELINE,Dave McGee,2192 Navy Rd.,,Mamou,LA,70554,337-207-2997,W,M,D,265,12/31/2014,01/01/2009,Mr. McGee -Justice of the Peace ,Justice of the Peace Ward 2 ,P. O. Box 729,,Basile,LA,70515,337-432-5721,EVANGELINE,Charlotte Smith,P. O. Box 729,,Basile,LA,70515,337-658-2962,W,F,D,265,12/31/2014,01/01/2009,Ms. Smith -Justice of the Peace ,Justice of the Peace Ward 3 ,1027 Ferdie Rd.,,Mamou,LA,70554-2907,337-468-3503,EVANGELINE,"""Hope"" Landreneau",1027 Ferdie Rd.,,Mamou,LA,70554,337-468-0109,W,F,D,265,12/31/2014,01/01/2009,Ms. Landreneau -Justice of the Peace ,Justice of the Peace Ward 4 ,P. O. Box 217,,Pine Prairie,LA,70576,337-599-2093,EVANGELINE,"Maxine J. Gautreau, ",1658 Crooked Creek Pkwy,,Ville Platte,LA,70586,,,,,265,,01/20/2010,Ms. Gautreau -Justice of the Peace ,Justice of the Peace Ward 5 ,1042 Robken Rd.,,Ville Platte,LA,70586,337-461-2664,EVANGELINE,"A. C. ""Robin"" Tatman, Jr.",1042 Robken Rd.,,Ville Platte,LA,70586,337-461-2664,W,M,D,265,12/31/2014,01/01/2009,Mr. Tatman -Constable ,Justice of the Peace Ward 2 ,P.O. Box 66,,Basile,LA,70515,337-432-5574,EVANGELINE,Earlin Fruge,1066 Easy Rd.,,Basile,LA,70515,337-654-2063,W,M,D,267,12/31/2014,01/01/2009,Mr. Fruge -Constable ,Justice of the Peace Ward 2 ,P.O. Box 66,,Basile,LA,70515,337-432-5574,EVANGELINE,"Michael ""Mike"" Stockwell",1816 Hunter Rd.,,Basile,LA,70515,337-230-6210,W,M,D,267,12/31/2014,01/01/2009,Mr. Stockwell -Constable ,Justice of the Peace Ward 3 ,P.O. Box 17,,Mamou,LA,70580-0017 ,337-468-3544,EVANGELINE,"""Joe"" Deshotel, Jr.",1214 Oberlin Rd.,,Mamou,LA,70554,337-580-5694,W,M,D,267,12/31/2014,01/01/2009,Mr. Deshotel -Constable ,Justice of the Peace Ward 4 ,1197 Pioneer Rd.,,Ville Platte,LA,70586,337-461-2610,EVANGELINE,"""Tim"" Causey",1197 Pioneer Rd.,,Ville Platte,LA,70586,337-461-2610,W,M,D,267,12/31/2014,01/01/2009,Mr. Causey -Constable ,Justice of the Peace Ward 5 ,1220 Melissa Ln.,,Ville Platte,LA,70586,337-461-2759,EVANGELINE,"J. Michael ""Mike"" Causey",1220 Melissa Ln.,,Ville Platte,LA,70586,337-461-2759,W,M,D,267,12/31/2014,01/01/2009,Mr. Causey -Mayor ,City of Ville Platte ,P. O. Box 390,,Ville Platte,LA,,337-363-2939,EVANGELINE,"""Bill"" Jeanmard",505 W. Wilson St.,,Ville Platte,LA,70586,337-363-1375,W,M,D,300,12/31/2010,01/01/2007,Mr. Jeanmard -Mayor ,Town of Mamou ,P. O. Box 490,,Mamou,LA,,337-468-3272,EVANGELINE,Wilda Chamberlain,1001 East St.,,Mamou,LA,70554,337-468-4068,W,F,D,300,12/31/2010,01/01/2007,Ms. Chamberlain -Mayor ,Village of Chataignier ,P. O. Box 70,,Chataignier,LA,,337-885-2500,EVANGELINE,Herman Malveaux,P. O. Box 33,,Chataignier,LA,70524,337-885-2545,B,M,D,300,12/31/2010,01/01/2007 -Mayor ,Village of Pine Prairie ,P. O. Box 380,,Pine Prairie,LA,,318-599-2904,EVANGELINE,Terry Savant,P.O. Box 735,,Pine Prairie,LA,70576,337-230-8757,W,M,R,300,12/31/2012,01/01/2009,Mayor Savant -Mayor ,Village of Turkey Creek ,P. O. Box 98,,Turkey Creek,LA,,337-461-2212,EVANGELINE,Blaine Janet,P.O. Box 114,,Turkey Creek,LA,70585,337-461-2204,W,M,D,300,12/31/2010,01/01/2007,Mayor Janet -Chief of Police ,City of Ville Platte ,P. O. Box 390,,Ville Platte,LA,70586,337-363-2939,EVANGELINE,Neal Lartigue,P.O. Box 117,,Ville Platte,LA,70586,337-831-2395,B,M,D,305,12/31/2010,01/01/2007,Chief Lartigue -Chief of Police ,Town of Mamou ,P. O. Box 490,,Mamou,LA,70554,337-468-3272,EVANGELINE,"""Greg"" Dupuis",608 Mulberry St.,,Mamou,LA,70554,337-789-6272,W,M,D,305,12/31/2010,01/01/2007,Mr. Dupuis -Chief of Police ,Village of Chataignier ,P. O. Box 70,,Chataignier,LA,70524,337-885-2500,EVANGELINE,"Paul Allen, Jr.",P.O. Box 265,,Chataignier,LA,70524,337-885-2002,B,M,D,305,12/31/2010,01/01/2007,Mr. Allem -Chief of Police ,Village of Pine Prairie ,P. O. Box 380,,Pine Prairie,LA,70576,318-599-2904,EVANGELINE,Todd Ortis,P.O. Box 430,,Pine Prairie,LA,70576,337-599-2896,W,M,D,305,12/31/2012,01/01/2009,Chief Ortis -Chief of Police ,Village of Turkey Creek ,P. O. Box 98,,Turkey Creek,LA,70585,337-461-2212,EVANGELINE,Louis Dale Marcantel,P.O. Box 92,,Turkey Creek,LA,70585,337-461-2773,W,M,D,305,12/31/2010,01/01/2007,Chief Marcantel -Alderman at Large ,Town of Mamou ,,,,LA,,,EVANGELINE,"""Joe Paul"" Deshotels",908 Redwood St.,,Mamou,LA,70554,337-468-2345,W,M,D,308,12/31/2010,01/01/2007,Mr. Deshotels -Alderman ,"District 1, Town of Mamou ",P. O. Box 490,,Mamou,LA,70554,337-468-3272,EVANGELINE,Ricky Fontenot,P.O. Box 375,,Mamou,LA,70554,337-468-2370,B,M,D,310,12/31/2010,01/01/2007,Mr. Fontenot -Alderman ,"District 2, Town of Mamou ",P. O. Box 490,,Mamou,LA,70554,337-468-3272,EVANGELINE,Scott Christ,1100 Cherry St.,,Mamou,LA,70554,337-468-2727,W,M,D,310,12/31/2010,01/01/2007,Mr. Christ -Alderman ,"District 3, Town of Mamou ",P. O. Box 490,,Mamou,LA,70554,337-468-3272,EVANGELINE,Jody Soileau,221 Sixth St.,,Mamou,LA,70554,337-468-2400,W,M,D,310,12/31/2010,01/01/2007,Mr. Soileau -Alderman ,"District 4, Town of Mamou ",P. O. Box 490,,Mamou,LA,70554,337-468-3272,EVANGELINE,Robin Young,617 Railroad Ave.,,Mamou,LA,70554,337-207-5271,W,M,D,310,12/31/2010,11/14/2008,Mr. Young -Alderman ,"District A, City of Ville Platte ",P. O. Box 390,,Ville Platte,LA,70586,337-363-2939,EVANGELINE,"""C. J."" Dardeau",511 N. Thompson St.,,Ville Platte,LA,70586,337-363-2869,W,M,D,310,12/31/2010,01/01/2007,Mr. Dardeau -Alderman ,"District B, City of Ville Platte ",P. O. Box 390,,Ville Platte,LA,70586,337-363-2939,EVANGELINE,Carol Alfred,512 N. Chataignier St.,,Ville Platte,LA,70586,337-831-9770,B,F,D,310,12/31/2010,01/01/2007,Ms. Alfred -Alderman ,"District C, City of Ville Platte ",P. O. Box 390,,Ville Platte,LA,70586,337-363-2939,EVANGELINE,"""Mike"" Perron",1107 Belle Terre Dr.,,Ville Platte,LA,70586,337-363-1066,W,M,D,310,12/31/2010,01/01/2007,Mr. Perron -Alderman ,"District D, City of Ville Platte ",P. O. Box 390,,Ville Platte,LA,70586,337-363-2939,EVANGELINE,Freddie Jack,1314 W. Cypress St.,,Ville Platte,LA,70586,337-363-1630,B,M,D,310,12/31/2010,01/01/2007,Mr. Jack -Alderman ,"District E, City of Ville Platte ",P. O. Box 390,,Ville Platte,LA,70586,337-363-2939,EVANGELINE,Donald Ray Sam,1322 W. Beech St.,,Ville Platte,LA,70586,337-363-6892,B,M,D,310,12/31/2010,01/01/2007,Mr. Sam -Alderman ,"District F, City of Ville Platte ",P. O. Box 390,,Ville Platte,LA,70586,337-363-2939,EVANGELINE,Taranza Arvie,512 Laran St.,,Ville Platte,LA,70586,337-356-7040,B,M,D,310,12/31/2010,01/01/2007,Mr. Arvie -Alderman ,Village of Chataignier ,P. O. Box 70,,Chataignier,LA,70524,337-885-2500,EVANGELINE,Lucy Jones Green,"5627 Vine St., Apt. 702",,Ville Platte,LA,70586,337-885-2270,B,F,D,310,12/31/2010,01/01/2007,Mr. Green -Alderman ,Village of Chataignier ,P. O. Box 70,,Chataignier,LA,70524,337-885-2500,EVANGELINE,Joseph H. Simien,P.O. Box 282,,Chataignier,LA,70524,337-885-2000,B,M,D,310,12/31/2010,01/01/2007,Mr. Siemien -Alderman ,Village of Chataignier ,P. O. Box 70,,Chataignier,LA,70524,337-885-2500,EVANGELINE,Alton Thomas,P.O. Box 193,,Chataignier,LA,70524,337-885-3615,B,M,D,310,12/31/2010,01/01/2007,Mr. Thomas -Alderman ,Village of Pine Prairie ,P. O. Box 380,,Pine Prairie,LA,70576,318-559-2904,EVANGELINE,Tammy M. Hammond,P.O. Box 185,,Pine Prairie,LA,70576,337-224-6627,W,F,D,310,12/31/2012,01/01/2009,Ms. Hammond -Alderman ,Village of Pine Prairie ,P. O. Box 380,,Pine Prairie,LA,70576,318-559-2904,EVANGELINE,"""Debbie"" Oge",P. O. Box 231,,Pine Prairie,LA,70576,337-599-2690,W,F,D,310,12/31/2012,01/01/2009,Ms. Oge -Alderman ,Village of Pine Prairie ,P. O. Box 380,,Pine Prairie,LA,70576,318-559-2904,EVANGELINE,Quint West,P.O. Box 424,,Pine Prairie,LA,70576,337-224-3384,W,M,D,310,12/31/2012,01/01/2009,Mr. West -Council Member ,Village of Turkey Creek ,P. O. Box 98,,Turkey Creek,LA,70585,337-461-2212,EVANGELINE,"""W. L."" Chapelle",P.O. Box 97,,Turkey Creek,LA,70585,337-461-2449,W,M,D,310,12/31/2010,01/01/2007,Mr. Chapelle -Council Member ,Village of Turkey Creek ,P. O. Box 98,,Turkey Creek,LA,70585,337-461-2212,EVANGELINE,Jessie Johnson,P.O. Box 105,,Turkey Creek,LA,,337-461-2637,W,M,D,310,12/31/2010,01/01/2007 -Council Member ,Village of Turkey Creek ,P. O. Box 98,,Turkey Creek,LA,70585,337-461-2212,EVANGELINE,Kurry Stewart,P.O. Box 74 .,,Turkey Creek,LA,70585,337-461-2734,W,M,D,310,12/31/2010,01/01/2007,Mr. Stewart -DPEC Member ,at Large ,,,,LA,,,FRANKLIN,"Samuel E. Lee, Jr.",6583 Main St.,,Winnsboro,LA,71295,318-435-5697,W,M,D,054,02/20/2012,02/20/2008,Mr. Lee -DPEC Member ,District 1 ,,,,LA,,,FRANKLIN,,,,,,,,,,,056 -DPEC Member ,District 2 ,,,,LA,,,FRANKLIN,,,,,,,,,,,056 -DPEC Member ,District 3 ,,,,LA,,,FRANKLIN,,,,,,,,,,,056 -DPEC Member ,District 4 ,,,,LA,,,FRANKLIN,,,,,,,,,,,056 -DPEC Member ,District 5 ,,,,LA,,,FRANKLIN,,,,,,,,,,,056 -DPEC Member ,District 6 ,,,,LA,,,FRANKLIN,,,,,,,,,,,056 -DPEC Member ,District 7 ,,,,LA,,,FRANKLIN,,,,,,,,,,,056 -RPEC Member ,at Large ,,,,LA,,,FRANKLIN,John H. Baker,2123 Hwy. 17,,Delhi,LA,71232,318-878-5272,W,M,R,064,02/20/2012,02/20/2008,Mr. Baker -RPEC Member ,District 1 ,,,,LA,,,FRANKLIN,,,,,,,,,,,066 -RPEC Member ,District 2 ,,,,LA,,,FRANKLIN,,,,,,,,,,,066 -RPEC Member ,District 3 ,,,,LA,,,FRANKLIN,,,,,,,,,,,066 -RPEC Member ,District 4 ,,,,LA,,,FRANKLIN,,,,,,,,,,,066 -RPEC Member ,District 5 ,,,,LA,,,FRANKLIN,,,,,,,,,,,066 -RPEC Member ,District 6 ,,,,LA,,,FRANKLIN,,,,,,,,,,,066 -RPEC Member ,District 7 ,,,,LA,,,FRANKLIN,,,,,,,,,,,066 -Sheriff ,,6556 Main St.,,Winnsboro,LA,71295,318-435-4505,FRANKLIN,"Steven E. ""Steve"" Pylant",6556 Main St.,,Winnsboro,LA,71295,318-722-6408,W,M,R,225,06/30/2012,07/01/2008,Sheriff Pylant -Clerk of Court ,,P. O. Box 1564,,Winnsboro,LA,71295,318-435-5133,FRANKLIN,Ann Johnson,P.O. Box 1564,,Winnsboro,LA,71295,318-435-4348,W,F,D,230,06/30/2012,07/01/2008,Ms. Johnson -Assessor ,,6552 Main St.,,Winnsboro,LA,71295,318-435-5390,FRANKLIN,"""Rod"" Elrod",293 Russell Lane,,Winnsboro,LA,71295,318-435-9928,W,M,D,235,12/31/2012,01/01/2009,Mr. Elrod -Coroner ,,P.O. Box 1350,,Winnsboro,LA,71295,318-435-7333,FRANKLIN,Joel G. Eldridge,425 Hwy 577,,Winnsboro,LA,71295,318-722-3759,W,M,D,240,03/25/2012,03/24/2008,Mr. Eldridge -Police Juror,District 1,6558 Main St.,,Winnsboro,LA,71295,318-435-9429,FRANKLIN,"""Ricky"" Campbell",418 Herrington Rd.,,Winnsboro,LA,71295,318-435-7164,W,M,,245,01/08/2012,01/14/2008,Mr. Campbell -Police Juror ,District 2 ,6558 Main St.,,Winnsboro,LA,71295,318-435-9429,FRANKLIN,"K. W. ""Buddy"" Parks",229 Hwy 618,,Winnsboro,LA,71295,318-435-5889,W,M,D,245,01/08/2012,01/14/2008,Mr. Parks -Police Juror ,District 3 ,6558 Main St.,,Winnsboro,LA,71295,318-435-9429,FRANKLIN,"James Harris, ",6558 Main St.,,Winnsboro,LA,71295,,,,,245,,12/17/2009,Mr. Harris -Police Juror ,District 4 ,6558 Main St.,,Winnsboro,LA,71295,318-435-9429,FRANKLIN,Troy Hendry,151 Artie Carter Rd.,,Winnsboro,LA,71295,318-722-3336,W,M,D,245,01/08/2012,01/14/2008,Mr. Hendry -Police Juror ,District 5 ,6558 Main St.,,Winnsboro,LA,71295,318-435-9429,FRANKLIN,"Leroy ""Roy"" Scott",2105 Caston St.,,Winnsboro,LA,71295,318-435-9391,B,M,D,245,01/08/2012,01/14/2008,Mr. Scott -Police Juror ,District 6 ,6558 Main St.,,Winnsboro,LA,71295,318-435-9429,FRANKLIN,Harvey Guimbellot,239 Dobber Glass Rd.,,Baskin,LA,71219,318-439-0284,W,M,,245,01/08/2012,01/14/2008,Mr. Guimbellot -Police Juror ,District 7 ,6558 Main St.,,Winnsboro,LA,71295,318-435-9429,FRANKLIN,Jackie Johnson,1514 Maple St.,,Winnsboro,LA,71295,318-435-5558,B,M,D,245,01/08/2012,01/14/2008,Mr. Johnson -City Judge ,"City Court, City of Winnsboro ",1308 Cornell St.,,Winnsboro,LA,71295,318-435-4508,FRANKLIN,Ann B. McIntyre,P.O. Box 428,,Winnsboro,LA,71295,318-435-3201,W,F,D,250,12/31/2010,01/01/2005,Ms. McIntyre -City Marshal ,"City Court, City of Winnsboro ",1308 Cornell St.,,Winnsboro,LA,71295,318-435-4508,FRANKLIN,Bruce McCarthy,820 Rogers Dr.,,Winnsboro,LA,71295,318-435-4047,W,M,D,250,12/31/2010,01/01/2005,Mr. McCarthy -Member of School Board ,District 1 ,7293 Prairie Rd.,,Winnsboro,LA,71295,318-435-9046,FRANKLIN,"Edwin Ray Bryan, Jr.",795 Ross Rd.,,Winnsboro,LA,71295,318-723-4405,W,M,D,255,12/31/2010,01/01/2007,Mr. Bryan -Member of School Board ,District 2 ,7293 Prairie Rd.,,Winnsboro,LA,71295,318-435-9046,FRANKLIN,"""Ronnie"" Hatton",2327 Hwy. 135,,Winnsboro,LA,71295,318-435-6840,W,M,,255,12/31/2010,01/01/2007,Mr. Hatton -Member of School Board ,District 3 ,7293 Prairie Rd.,,Winnsboro,LA,71295,318-435-9046,FRANKLIN,Jesse Young,P.O. Box 86,,Wisner,LA,71378,318-724-7333,,M,R,255,12/31/2010,01/01/2007,Mr. Young -Member of School Board ,District 4 ,7293 Prairie Rd.,,Winnsboro,LA,71295,318-435-9046,FRANKLIN,Richard Kelly,168 Lawson Rd.,,Winnsboro,LA,71295,318-722-0109,W,M,,255,12/31/2010,01/01/2007,Mr. Kelly -Member of School Board ,District 5 ,7293 Prairie Rd.,,Winnsboro,LA,71295,318-435-9046,FRANKLIN,Louise J. Johnson,212 Willow St.,,Winnsboro,LA,71295,318-435-7347,,F,,255,12/31/2010,01/01/2007,Ms. Johnson -Member of School Board ,District 6 ,7293 Prairie Rd.,,Winnsboro,LA,71295,318-435-9046,FRANKLIN,Tim Eubanks,1259 Hwy. 857,,Baskin,LA,71219,318-248-2125,W,M,D,255,12/31/2010,01/01/2007,Mr. Eubanks -Member of School Board ,District 7 ,7293 Prairie Rd.,,Winnsboro,LA,71295,318-435-9046,FRANKLIN,Dorothy W. Brown,1207 Maple St.,,Winnsboro,LA,71219,318-435-6422,B,F,D,255,12/31/2010,01/01/2007,Ms. Brown -Justice of the Peace ,Justice of the Peace District 1 ,1971 WPA Rd.,,Delhi,LA,71232,318-878-5436,FRANKLIN,"John W. ""Moose"" Ogden",2328 Hwy. 17,,Delhi,LA,71232,318-878-9713,W,M,D,265,12/31/2014,01/01/2009,Mr. Ogden -Justice of the Peace ,Justice of the Peace District 2 ,171 Arvel Linder Rd.,,Winnsboro,LA,71295,318-435-7723,FRANKLIN,"Carl Williams, Jr.",171 Arvel Linder Rd.,,Winnsboro,LA,71295,318-435-7723,W,M,,265,12/31/2014,01/01/2009,Mr. Williams -Justice of the Peace ,Justice of the Peace District 3 ,140 Glynn Day Rd.,,Winnsboro,LA,71295,318-435-9875,FRANKLIN,Sharon T. Boone,775 Lishman Rd.,,Winnsboro,LA,71295,318-435-9543,W,F,D,265,12/31/2014,02/23/2009,Ms. Boone -Justice of the Peace ,Justice of the Peace District 5 ,271 First St.,,Gilbert,LA,71336,318-435-6062,FRANKLIN,R. V. Arnold,P.O. Box 724,,Gilbert,LA,71336,318-435-3192,W,M,R,265,12/31/2014,01/01/2009,Mr. Arnold -Justice of the Peace ,Justice of the Peace District 6 ,P. O. Box 929,,Wisner,LA,71378,318-724-6448,FRANKLIN,"""Bill"" Carroll",P.O. Box 36,,Wisner,LA,71378,318-724-6627,W,M,,265,12/31/2014,01/01/2009,Mr. Carroll -Justice of the Peace ,Justice of the Peace District 7 ,404 Blue Roberts Rd.,,Wisner,LA,71378,318-724-7693,FRANKLIN,Lawrence Roberts,235 Roberts Rd.,,Wisner,LA,71378,318-724-7774,W,M,R,265,12/31/2014,01/01/2009,Mr. Roberts -Justice of the Peace ,Justice of the Peace District 8 ,992 Hwy. 135,,Winnsboro,LA,71295,318-435-5960,FRANKLIN,"Jimmie R. Spears, Sr.",992 Hwy. 135,,Winnsboro,LA,71295,318-435-5960,B,M,D,265,12/31/2014,01/01/2009,Mr. Spears -Constable ,Justice of the Peace District 1 ,P.O. Box 22,,Crowville,LA,71232,318-722-3752,FRANKLIN,Johnnie Marshall,P.O. Box 22,,Crowville,LA,71230,318-722-3752,W,M,D,267,12/31/2014,01/01/2009,Mr. Marshall -Constable ,Justice of the Peace District 2 ,192 Dobber Glass Rd.,,Baskin,LA,71219,318-248-3163,FRANKLIN,"Carl ""Trey"" Williams",230 Arvel Linder Rd.,,Winnsboro,LA,71295,318-435-0955,W,M,,267,12/31/2014,01/01/2009,Mr. Williams -Constable ,Justice of the Peace District 3 ,P.O. Box 274,,Winnsboro,LA,71295,318-435-5808,FRANKLIN,Glynn R. Day,131 Glynn Day Rd.,,Winnsboro,LA,71295,318-435-5808,W,M,D,267,12/31/2014,01/01/2009,Mr. Day -Constable ,Justice of the Peace District 5 ,P.O. Box 491,,Gilbert,LA,71336,318-435-5740,FRANKLIN,"""Don"" R. Beaube",P.O. Box 541,,Gilbert,LA,71336,318-412-9738,W,M,,267,12/31/2014,01/01/2009,Mr. Beaube -Constable ,Justice of the Peace District 6 ,P.O. Box 661,,Wisner,LA,71378,318-724-7455,FRANKLIN,Danny Richardson,P.O. Box 661,,Wisner,LA,71378,318-724-7455,W,M,,267,12/31/2014,01/01/2009,Mr. Richardson -Constable ,Justice of the Peace District 7 ,404 Blue Roberts Rd.,,Wisner,LA,71378,318-723-7693,FRANKLIN,Dale Mason,404 Blue Roberts Rd.,,Wisner,LA,71378,318-724-7693,W,M,,267,12/31/2014,01/01/2009,Mr. Mason -Constable ,Justice of the Peace District 8 ,1814 Hwy. 135,,Winnsboro,LA,71295,318-435-9616,FRANKLIN,Timothy Washington,1052 Hwy. 135,,Winnsboro,LA,71295,318-435-4467,B,M,D,267,12/31/2014,01/01/2009,Mr. Washington -Mayor ,City of Winnsboro ,P.O. Box 250,,Winnsboro,LA,,318-435-9087,FRANKLIN,Jack Hammons,P.O. Box 100,,Winnsboro,LA,71295,318-435-9363,W,M,D,300,06/30/2010,07/01/2006,Mayor Hammons -Mayor ,Town of Wisner ,P.O. Box 290,,Wisner,LA,,318-724-6568,FRANKLIN,Allyn Jean Luckett,P.O. Box 57,,Wisner,LA,71378,318-724-6604,B,F,D,300,12/31/2010,02/20/2008,Mayor Luckett -Mayor,Village of Baskin,P. O. Box 359,,Baskin,LA,71219,318-248-3700,FRANKLIN,Billy Joe Cupp,1719 Hwy. 857,,Baskin,LA,71219,318-248-3346,W,M,,300,12/31/2010,09/14/2007,Mayor Cupp -Mayor ,Village of Gilbert ,P. O. Box 600,,Gilbert,LA,,318-435-6506,FRANKLIN,"""Mike"" Stephens",P.O. Box 511,,Gilbert,LA,71336,318-412-8473,W,M,,300,12/31/2010,01/01/2007,Mr. Stephens -Chief of Police ,City of Winnsboro ,P.O. Box 250,,Winnsboro,LA,71295,318-435-9087,FRANKLIN,Lester Thomas,2608 Baldwin Dr.,,Winnsboro,LA,71295,318-435-4918,B,M,D,305,06/30/2010,07/01/2006,Mr. Thomas -Chief of Police ,Town of Wisner ,P.O. Box 290,,Wisner,LA,71378,318-274-6568,FRANKLIN,Billy Cureington,P.O. Box 158,,Wisner,LA,71378,318-724-6322,W,M,D,305,12/31/2010,01/01/2007,Chief Cureington -Chief of Police ,Village of Baskin ,P. O. Box 359,,Baskin,LA,71219,318-248-3700,FRANKLIN,Danny Barber,182 Seymore Rd.,,Baskin,LA,71219,,W,M,,305,12/31/2010,06/09/2009,Chief Barber -Chief of Police ,Village of Gilbert ,P. O. Box 600,,Gilbert,LA,71336,318-435-6506,FRANKLIN,Ty Britt,P.O. Box 764,,Gilbert,LA,71336,318-435-9809,W,M,,305,12/31/2010,01/01/2007,Mr. Britt -Alderman ,Town of Wisner ,P.O. Box 290,,Wisner,LA,71378,318-724-6568,FRANKLIN,Nettie B. Brown,P.O. Box 53,,Wisner,LA,71378,318-724-6255,B,F,D,310,12/31/2010,01/01/2007,Ms. Brown -Alderman ,Town of Wisner ,P.O. Box 290,,Wisner,LA,71378,318-724-6568,FRANKLIN,"Mike Caldwell, ",P.O. Box 290,,Wisner,LA,71378,,,,,310,,11/05/2009,Mr. Caldwell -Alderman ,Town of Wisner ,P.O. Box 290,,Wisner,LA,71378,318-724-6568,FRANKLIN,Thomas Lemle,P.O. Box 275,,Wisner,LA,71378,318-724-6521,B,M,D,310,12/31/2010,07/21/2008,Mr. Lemle -Alderman ,Town of Wisner ,P.O. Box 290,,Wisner,LA,71378,318-724-6568,FRANKLIN,Marc McCarty,P.O. Box 298,,Wisner,LA,71378,318-724-6570,W,M,R,310,12/31/2010,01/01/2007,Mr. McCarty -Alderman ,Town of Wisner ,P.O. Box 290,,Wisner,LA,71378,318-724-6568,FRANKLIN,Thomas W. Moore,P.O. Box 6,,Wisner,LA,71378,318-724-6615,W,M,,310,12/31/2010,01/01/2007,Mr. Moore -Alderman ,Village of Baskin ,P. O. Box 359,,Baskin,LA,71219,318-248-3700,FRANKLIN,"""Mike"" Ballard",P.O. Box 614,,Baskin,LA,71219,318-614-1061,W,M,,310,12/31/2010,10/30/2007,Mr. Ballard -Alderman ,Village of Baskin ,P. O. Box 359,,Baskin,LA,71219,318-248-3700,FRANKLIN,Larry Robert LaBorde,245 Dobber Glass Rd.,,Baskin,LA,71219,318-248-3957,W,M,,310,12/31/2010,01/01/2007,Mr. LaBorde -Alderman ,Village of Baskin ,P. O. Box 359,,Baskin,LA,71219,318-248-3700,FRANKLIN,Wanda Lilly,P.O. Box 1246,,Winnsboro,LA,71295,318-248-3377,W,F,,310,12/31/2010,07/21/2008,Ms. Lilly -Alderman ,Village of Gilbert ,P. O. Box 600,,Gilbert,LA,71336,318-435-6506,FRANKLIN,Kathleen Dunaway,419 Old Hwy. 15,,Gilbert,LA,71336,318-435-5840,W,F,,310,12/31/2010,07/21/2008,Ms. Dunaway -Alderman ,Village of Gilbert ,P. O. Box 600,,Gilbert,LA,71336,318-435-6506,FRANKLIN,Marcus Louis Ezell,P.O. Box 648,,Gilbert,LA,71336,318-435-4975,W,M,D,310,12/31/2010,07/21/2008,Mr. Ezell -Alderman ,Village of Gilbert ,P. O. Box 600,,Gilbert,LA,71336,318-435-6506,FRANKLIN,Leo Miller,P.O. Box 765,,Gilbert,LA,71336,318-435-8685,W,M,,310,12/31/2010,01/01/2007,Mr. Miller -Councilman ,"District 1, City of Winnsboro ",P.O. Box 250,,Winnsboro,LA,71295,318-435-9087,FRANKLIN,Richard Mahoney,P.O. Box 369,,Winnsboro,LA,71295,318-435-7400,W,M,,310,06/30/2010,07/01/2006,Mr. Mahoney -Councilman ,"District 1, City of Winnsboro ",P.O. Box 250,,Winnsboro,LA,71295,318-435-9087,FRANKLIN,"Richard Mahoney, ",130 Carolyn St.,,Winnsboro,LA,71295,318-498-1002,W,M,N,310 -Councilman ,"District 2, City of Winnsboro ",P.O. Box 250,,Winnsboro,LA,71295,318-435-9087,FRANKLIN,"John ""Sonny"" Dumas",P.O. Box 334,,Winnsboro,LA,71295,318-435-6276,B,M,D,310,06/30/2010,07/01/2006,Mr. Dumas -Councilman ,"District 3, City of Winnsboro ",P.O. Box 250,,Winnsboro,LA,71295,318-435-9087,FRANKLIN,Betty Johnson,3106 Earl Dr.,,Winnsboro,LA,71295,318-435-4496,B,F,D,310,06/30/2010,07/01/2006,Ms. Johnson -Councilman ,"District 3, City of Winnsboro ",P.O. Box 250,,Winnsboro,LA,71295,318-435-9087,FRANKLIN,"Betty Johnson, ",3106 Earle Dr.,,Winnsboro,LA,71295-4036,318-435-4496,B,F,D,310 -Councilman ,"District 4, City of Winnsboro ",P.O. Box 250,,Winnsboro,LA,71295,318-435-9087,FRANKLIN,Craig Gill,P.O. Box 46,,Winnsboro,LA,71295-0046 ,318-435-4565,W,M,R,310,06/30/2010,07/01/2006,Mr. Gill -Councilman ,"District 4, City of Winnsboro ",P.O. Box 250,,Winnsboro,LA,71295,318-435-9087,FRANKLIN,"Craig G. Gill, ",6637 Main St.,,Winnsboro,LA,71295-2763,318-435-4565,W,M,R,310 -Councilman ,"District 5, City of Winnsboro ",P.O. Box 250,,Winnsboro,LA,71295,315-435-9087,FRANKLIN,Rex McCarthy,2016 Roland Rd.,,Winnsboro,LA,71295,318-435-9330,B,M,D,310,06/30/2010,07/01/2006,Mr. McCarthy -Councilman ,"District 5, City of Winnsboro ",P.O. Box 250,,Winnsboro,LA,71295,315-435-9087,FRANKLIN,"Rex McCarthy, ",2016 Roland St.,,Winnsboro,LA,71295-3859,318-535-7111,B,M,D,310 -DPEC Member ,at Large ,,,,LA,,,GRANT,J. ElRay Lemoine,2157 Hwy 122,,Montgomery,LA,71454,318-646-3420,W,M,D,054,02/20/2012,02/20/2008,Mr. Lemoine -DPEC Member ,at Large ,,,,LA,,,GRANT,"""Connie"" Youngblood",303 Oak St.,,Colfax,LA,71417,318-627-5890,W,F,D,054,02/20/2012,02/20/2008,Ms. Youngblood -DPEC Member ,District 1 ,,,,LA,,,GRANT,,,,,,,,,,,056 -DPEC Member ,District 2 ,,,,LA,,,GRANT,Brandon H. Henderson,208 Birch St.,,Colfax,LA,71417,318-627-5447,W,M,D,056,02/20/2012,02/20/2008,Mr. Henderson -DPEC Member ,District 3 ,,,,LA,,,GRANT,,,,,,,,,,,056 -DPEC Member ,District 4 ,,,,LA,,,GRANT,,,,,,,,,,,056 -DPEC Member ,District 5 ,,,,LA,,,GRANT,,,,,,,,,,,056 -DPEC Member ,District 6 ,,,,LA,,,GRANT,,,,,,,,,,,056 -DPEC Member ,District 7 ,,,,LA,,,GRANT,,,,,,,,,,,056 -DPEC Member ,District 8 ,,,,LA,,,GRANT,,,,,,,,,,,056 -RPEC Member ,at Large ,,,,LA,,,GRANT,Sam Brimer,811 Springhill Loop,,Pollock,LA,71467,318-640-9791,W,M,R,064,02/20/2012,02/20/2008,Mr. Brimer -RPEC Member ,at Large ,,,,LA,,,GRANT,Alice M. Bryant,134 Overstreet Rd.,,Bentley,LA,71407,,,,,064,,08/15/2008,Ms. Bryant -RPEC Member ,at Large ,,,,LA,,,GRANT,Trevor S. Fry,136 Red Oak Ln.,,Dry Prong,LA,71423,318-229-1632,,,,064,,06/19/2008,Mr. Fry -RPEC Member ,at Large ,,,,LA,,,GRANT,Glynn K. Maxwell,916 Grove St.,,Dry Prong,LA,71423,318-899-5257,W,M,R,064,,10/17/2008,Mr. Maxwell -RPEC Member ,at Large ,,,,LA,,,GRANT,Ira A. Preuett,303 Hardwater Lake Rd.,,Pollock,LA,71467,318-765-7453,,,,064,,08/15/2008,Mr. Preuett -RPEC Member ,District 1 ,,,,LA,,,GRANT,Tony Lavespere,143 Bryant Rd.,,Montgomery,LA,71454-5427,318-646-2830,,,,066,,09/24/2008,Mr. Lavespere -RPEC Member ,District 2 ,,,,LA,,,GRANT,"C. ""Todd"" Vallee",1073 Hwy 158,,Colfax,LA,71417-5506,318-627-3527,,M,R,066,,10/21/2008,Mr. Vallee -RPEC Member ,District 3 ,,,,LA,,,GRANT,Alice S. Pharis,15306 Hwy. 8,,Colfax,LA,71417,318-793-8590,,,,066,,09/17/2008,Ms. Pharis -RPEC Member ,District 4 ,,,,LA,,,GRANT,Yvie Edwards Fry,136 Red Oak Ln.,,Dry Prong,LA,71423,318-229-1632,,,,066,,08/15/2008,Ms. Fry -RPEC Member ,District 5 ,,,,LA,,,GRANT,Jeremy C. Cedars,20620 Hwy. 167,,Dry Prong,LA,71423,318-899-1739,,,,066,,08/15/2008,Mr. Cedars -RPEC Member ,District 6 ,,,,LA,,,GRANT,"Charles E. ""Chuck"" Thomas, Jr.",664 Crawford Loop,,Pollock,LA,71467,318-765-9510,,,,066,,08/15/2008,Mr. Thomas -RPEC Member ,District 7 ,,,,LA,,,GRANT,Robbie C. Maxwell,916 Grove St.,,Dry Prong,LA,71423,318-899-5257,,,,066,,08/15/2008,Mr. Maxwell -RPEC Member ,District 8 ,,,,LA,,,GRANT,Donnell Spurgeon,4358 LA Hwy. 500,,Gerogetown,LA,71432,318-827-5490,,,,066,,09/24/2008,Mr. Spurgeon -Sheriff ,,P. O. Box 187,,Colfax,LA,71417,318-627-3261,GRANT,Baxter W. Welch,P.O. Box 61,,Bentley,LA,71407,318-640-2888,W,M,D,225,06/30/2012,07/01/2008,Sheriff Welch -Clerk of Court ,,P. O. Box 263,,Colfax,LA,71417,318-627-3246,GRANT,J. ElRay Lemoine,P.O. Box 263,,Colfax,LA,71417,318-646-3420,W,M,D,230,06/30/2012,07/01/2008,Mr. Lemoine -Assessor ,,200 Main St.,,Colfax,LA,71417,318-627-5471,GRANT,Walker Wright,1115 Walker Dr.,,Dry Prong,LA,71423,318-899-1824,W,M,D,235,12/31/2012,01/01/2009,Mr. Wright -Coroner ,,P.O. Box 399,,Colfax,LA,71417,318-627-3114,GRANT,Roy Dean Nugent,P.O. Box 400,,Colfax,LA,71417,318-627-5185,W,M,R,240,03/25/2012,03/24/2008,Mr. Nugent -Police Juror ,District 1 ,200 Main Street,,Colfax,LA,,318-627-3157,GRANT,Garland McCracken,1245 Highway 1240,,Montgomery,LA,71454,318-646-3764,W,M,,245,01/08/2012,01/14/2008,Mr. McCracken -Police Juror ,District 2 ,200 Main Street,,Colfax,LA,71417,318-627-3157,GRANT,Jimmy Bryant,310 Richardson Road,,Colfax,LA,71417,318-627-5603,W,M,D,245,01/08/2012,01/14/2008,Mr. Brryant -Police Juror ,District 3 ,200 Main Street,,Colfax,LA,71417,318-627-3157,GRANT,"Tom Hamilton, Jr.",452 Lake Street,,Colfax,LA,71417,318-627-5731,,,D,245,01/08/2012,01/14/2008,"Mr,. Hamilton " -Police Juror ,District 4 ,200 Main Street,,Colfax,LA,71417,318-627-3157,GRANT,Arnold R. Murrell,161 Bob Johnson Road,,Dry Prong,LA,71423,318-640-2375,W,M,D,245,01/08/2012,01/14/2008,Mr. Murrell -Police Juror ,District 5 ,200 Main Street,,Colfax,LA,71417,318-627-3157,GRANT,Donnie Brown,1094 Hudson Creek Road,,Dry Prong,LA,71423,318-640-7089,W,M,,245,01/08/2012,01/14/2008,Mr. Brown -Police Juror ,District 6 ,200 Main Street,,Colfax,LA,71417,318-627-3157,GRANT,Lloyd J. Kirtland,P.O. Box 122,,Pollock,LA,71467,318-765-9566,W,M,D,245,01/08/2012,01/14/2008,Mr. Kirkland -Police Juror ,District 7 ,200 Main Street,,Colfax,LA,71417,318-627-3157,GRANT,Lucas LaCour,17399 Hwy 167,,Dry Prong,LA,71423,318-899-5561,W,M,R,245,01/08/2012,01/14/2008,Mr. LaCour -Police Juror ,District 8 ,200 Main Street,,Colfax,LA,71417,318-627-3157,GRANT,Roy G. Edwards,404 Edwards Road,,Georgetown,LA,71432,318-827-5271,W,M,D,245,01/08/2012,01/14/2008,Mr. Edwards -Member of School Board ,District 1 ,P. O. Box 208,,Colfax,LA,71417,318-627-3274,GRANT,"A. J. ""Tony"" Lavespere",145 Bryant Rd.,,Montgomery,LA,71454,318-646-2830,W,M,R,255,12/31/2010,01/01/2007,Mr. Lavespere -Member of School Board ,District 2 ,P. O. Box 208,,Colfax,LA,71417,318-627-3274,GRANT,Marvin P. DeLong,138 Fred DeLong Rd.,,Colfax,LA,71417,318-627-5485,W,M,D,255,12/31/2010,01/01/2007,Mr. DeLong -Member of School Board ,District 3 ,P. O. Box 208,,Colfax,LA,71417,318-627-3274,GRANT,Karen Y. Layton,P.O. Box 607,,Colfax,LA,71417,318-627-5762,B,F,D,255,12/31/2010,01/01/2007,Ms. Layton -Member of School Board ,District 4 ,P. O. Box 208,,Colfax,LA,71417,318-627-3274,GRANT,Eddie E. Baxley,152 Red Oak,,Dry Prong,LA,71423,318-641-0948,W,M,D,255,12/31/2010,01/01/2007,Mr. Baxley -Member of School Board ,District 5 ,P. O. Box 208,,Colfax,LA,71417,318-627-3274,GRANT,"""Randy"" Browning",142 Roger Dr.,,Dry Prong,LA,71423,318-640-0681,W,M,R,255,12/31/2010,01/01/2007,Mr. Browning -Member of School Board ,District 6 ,P. O. Box 208,,Colfax,LA,71417,318-627-3274,GRANT,A. D. Futrell,P.O. Box 39,,Pollock,LA,71467,318-765-9626,W,M,D,255,12/31/2010,01/01/2007,Mr. Futrell -Member of School Board ,District 7 ,P. O. Box 208,,Colfax,LA,71417,318-627-3274,GRANT,Craig McCain,311 Kisatchie Dr.,,Dry Prong,LA,71423,318-899-3311,W,M,R,255,12/31/2010,01/01/2007,Mr. McCain -Member of School Board ,District 8 ,P. O. Box 208,,Colfax,LA,71417,318-627-3274,GRANT,Terry W. Oliver,P.O. Box 245,,Georgetown,LA,71432,318-827-5391,W,M,D,255,12/31/2010,01/01/2007,Mr. Oliver -Justice of the Peace ,Justice of the Peace District A ,962 Hwy. 122,,Montgomery,LA,71454,318-646-3831,GRANT,"Tony L. ""Bo"" Vets, II",116 Second St.,,Colfax,LA,71417,318-419-2235,W,M,R,265,12/31/2014,01/01/2009,Mr. Vets -Justice of the Peace ,Justice of the Peace District B ,12220 Hwy 8,,Colfax,LA,71417,318-627-3759,GRANT,"Larry Parker, Sr.",12220 Hwy. 8,,Colfax,LA,71417,318-627-3759,W,M,R,265,12/31/2014,01/01/2009,Mr. Parker -Justice of the Peace ,Justice of the Peace District C ,21139 Hwy. 167,,Dry Prong,LA,71423,318-640-2210,GRANT,Karen Holston Edwards,21139 Hwy. 167,,Dry Prong,LA,71423,318-640-2210,W,F,D,265,12/31/2014,01/01/2009,Ms. Edwards -Justice of the Peace ,Justice of the Peace District D ,P. O. Box 610,,Pollock,LA,71467,318-765-3997,GRANT,Judy Guynes Brimer,811 Springhill Loop,,Pollock,LA,71467,318-640-9791,W,F,R,265,12/31/2014,01/01/2009,Ms. Brimer -Justice of the Peace ,Justice of the Peace District E ,3540 Hwy. 472,,Dry Prong,LA,71423,318-899-3732,GRANT,"Charles E. ""Chuck"" Evans",3540 Hwy. 472,,Dry Prong,LA,71423,318-899-3732,W,M,R,265,12/31/2014,01/01/2009,Mr. Evans -Constable ,Justice of the Peace District A ,P.O. Box 356,,Montgomery,LA,71454,318-646-2224,GRANT,"John Timothy ""Tim"" Coolman",P. O. Box 356,,Montgomery,LA,71454,318-646-2224,W,M,D,267,12/31/2014,01/01/2009,Mr. Coolman -Constable ,Justice of the Peace District B ,P.O. Box 638,,Colfax,LA,71417,318-627-5990,GRANT,Willie R. Peavy,P. O. Box 638 .,,Colfax,LA,71417,318-740-7104,W,M,D,267,12/31/2014,01/01/2009,Mr. Peavy -Constable ,Justice of the Peace District C ,154 AJ's Ln.,,Pollock,LA,71467,318-641-9031,GRANT,Joey E. Fuller,298 Hwy. 1241,,Colfax,LA,71417,318-308-8102,W,M,R,267,12/31/2014,01/01/2009,Mr. Fuller -Constable ,Justice of the Peace District D ,141 Wainwright Rd.,,Pollock,LA,71467,318-765-3423,GRANT,"B. E. Gene Durand, Jr.",141 Wainwright Rd.,,Pollock,LA,71467,318-765-3423,W,M,O,267,12/31/2014,01/01/2009,Mr. Durand -Constable ,Justice of the Peace District E ,1177 Willett Rd.,,Dry Prong,LA,71423,318-899-3870,GRANT,"F. H. ""Bubba"" Dykes",1177 Willett Rd.,,Dry Prong,LA,71423,318-899-3870,W,M,R,267,12/31/2014,01/01/2009,Mr. Dykes -Mayor ,Town of Colfax ,P. O. Box 310,,Colfax,LA,,318-627-3711,GRANT,Gerald Hamilton,449 Lake St.,,Colfax,LA,71417,318-627-3197,B,M,D,300,06/30/2010,07/01/2006,Mayor Hamilton -Mayor ,Town of Colfax ,P. O. Box 310,,Colfax,LA,,318-627-3711,GRANT,"Gerald Hamilton, ",449 Lake St.,,Colfax,LA,71417-1213,318-627-3197,B,M,D,300 -Mayor ,Town of Montgomery ,P. O. Box 99,,Montgomery,LA,,318-646-3110,GRANT,Stephen Lee Gunn,P.O. Box 229,,Montgomery,LA,71454,318-646-3374,W,M,,300,12/31/2010,01/01/2007,Mr. Gunn -Mayor ,Town of Pollock ,P. O. Box 189,,Pollock,LA,,318-765-3796,GRANT,Jerome F. Scott,P.O. Box 305,,Pollock,LA,71467,318-765-9024,W,M,D,300,12/31/2010,01/01/2007,Mr. Scott -Mayor ,Village of Creola ,241 Gray's Creek Rd.,,Dry Prong,LA,71423,318-641-0430,GRANT,R. Wayne Nugent,21428 Hwy. 167,,Dry Prong,LA,71423,318-447-2371,W,M,R,300,06/30/2011,07/01/2007,Mayor Nugent -Mayor ,Village of Dry Prong ,607 Russell Hataway St.,,Dry Prong,LA,,318-899-5341,GRANT,John Landry,P.O. Box 10,,Dry Prong,LA,71423,318-481-2581,W,M,D,300,06/30/2012,08/24/2009,Mayor Landry -Mayor ,Village of Georgetown ,P. O. Box 220,,Georgetown,LA,,318-827-5527,GRANT,Danny C. Olden,297 Hwy. 502,,Georgetown,LA,71432,318-827-5576,W,M,O,300,12/31/2012,01/01/2009,Mayor Olden -Chief of Police,Town of Colfax,P. O. Box 310,,Colfax,LA,71417,318-627-3711,GRANT,Kraig D. Fussell,131 Gore Rd.,,Bentley,LA,71407,,,,,305,,05/29/2009,Chief Fussell -Chief of Police ,Town of Pollock ,P. O. Box 189,,Pollock,LA,71467,318-765-3796,GRANT,"Christopher ""Chris"" Paul",P. O. Box 118,,Pollock,LA,71467,318-765-9915,W,M,D,305,12/31/2010,10/14/2008,Chief Paul -Chief of Police ,Village of Creola ,241 Gray's Creek Rd.,,Dry Prong,LA,71423,318-641-0430,GRANT,Preston H. Mosley,21428 Hwy 167,,Dry Prong,LA,71423,318-201-6680,W,M,D,305,06/30/2011,02/23/2009,Chief Mosley -Chief of Police ,Village of Georgetown ,P. O. Box 220,,Georgetown,LA,71432,318-827-5527,GRANT,"Billy Ray Prince, III",P.O. Box 96,,Georgetown,LA,71432,318-715-5134,W,M,R,305,12/31/2012,02/23/2009,Chief Prince -Alderman ,Town of Colfax ,P. O. Box 310,,Colfax,LA,71417,318-627-3711,GRANT,Alan D. Futrell,506 Seventh St.,,Colfax,LA,71417,318-627-5842,W,M,D,310,06/30/2010,07/01/2006,Mr. Futrell -Alderman ,Town of Colfax ,P. O. Box 310,,Colfax,LA,71417,318-627-3711,GRANT,Lourain C. LaCour,1204 Ash St.,,Colfax,LA,71417,318-627-5928,B,F,D,310,06/30/2010,07/01/2006,Ms. LaCour -Alderman ,Town of Colfax ,P. O. Box 310,,Colfax,LA,71417,318-627-3711,GRANT,Cora Reed,101 Hud Loop,,Colfax,LA,71417,318-627-9932,B,F,D,310,06/30/2010,07/01/2006,Ms. Reed -Alderman ,Town of Colfax ,P. O. Box 310,,Colfax,LA,71417,318-627-3711,GRANT,Lorraine G. Sapp,416 Eleanor St.,,Colfax,LA,71417,318-627-2851,B,F,D,310,06/30/2010,07/01/2006,Ms. Sapp -Alderman ,Town of Colfax ,P. O. Box 310,,Colfax,LA,71417,318-627-3711,GRANT,"Gayle ""Sonny"" Tyler",507 Foulk St.,,Colfax,LA,71417,318-627-3048,W,M,R,310,06/30/2010,07/01/2006,Mr. Tyler -Alderman ,Village of Creola ,241 Gray's Creek Rd.,,Dry Prong,LA,71423,318-641-0430,GRANT,Shannon Basco,241 Gray's Creek Rd.,,Dry Prong,LA,71423,318-641-0430,,,,310,,10/12/2009,Ms. Basco -Alderman ,Village of Creola ,241 Gray's Creek Rd.,,Dry Prong,LA,71423,318-641-0430,GRANT,Lisa M. Butchee,21430 Hwy. 167,,Dry Prong,LA,71423,318-641-1356,W,F,,310,06/30/2011,07/01/2007,Ms. Butchee -Alderman ,Village of Creola ,241 Gray's Creek Rd.,,Dry Prong,LA,71423,318-641-0430,GRANT,Sharon Fisher-Basco,132 Flagon Rd.,,Dry Prong,LA,71423,318-641-1326,W,F,,310,06/30/2011,07/01/2007,Ms. Fisher -Alderman ,Village of Dry Prong ,607 Russell Hataway St.,,Dry Prong,LA,71423,318-899-5341,GRANT,"Roger Davis, ",P.O. Box 327,,Dry Prong,LA,71423,318-443-9284,,,,310,,11/16/2009,Mr Davis -Alderman ,Village of Dry Prong ,607 Russell Hataway St.,,Dry Prong,LA,71423,318-899-5341,GRANT,"Roger E. Davis, ",1108 Walker Dr.,,Dry Prong,LA,71423-9306,318-899-5245,W,M,D,310,,02/15/2010 -Alderman ,Village of Dry Prong ,607 Russell Hataway St.,,Dry Prong,LA,71423,318-899-5341,GRANT,Jerry G. Edwards,P.O. Box 189,,Dry Prong,LA,71423,318-899-5320,W,M,D,310,06/30/2012,08/24/2009,Mr. Edwards -Alderman ,Village of Dry Prong ,607 Russell Hataway St.,,Dry Prong,LA,71423,318-899-5341,GRANT,Belinda L. Gauthier,P.O. Box 136,,Dry Prong,LA,71423,318-899-5913,W,F,D,310,06/30/2012,07/01/2008,Ms. Gauthier -Alderman ,Village of Georgetown ,P. O. Box 220,,Georgetown,LA,71432,318-827-5527,GRANT,"""Jim"" Bradford",P. O. Box 192,,Georgetown,LA,71432,318-827-5587,W,M,,310,12/31/2012,01/01/2009,Mr. Bradford -Alderman ,Village of Georgetown ,P. O. Box 220,,Georgetown,LA,71432,318-827-5527,GRANT,Robert K. Sanders,P.O. Box 176,,Georgetown,LA,71432,318-827-5839,W,M,O,310,12/31/2012,01/01/2009,Mr. Sanders -Alderman ,Village of Georgetown ,P. O. Box 220,,Georgetown,LA,71432,318-827-5527,GRANT,"Ray Williamson, Jr.",P.O. Box 132,,Georgetown,LA,71432,318-827-9649,W,M,,310,12/31/2012,02/23/2009,Mr. Williamson -Council Member ,Town of Montgomery ,P. O. Box 99,,Montgomery,LA,71454,318-646-3110,GRANT,James C. Carter,P.O. Box 121,,Montgomery,LA,71454,318-646-3467,W,M,D,310,12/31/2010,01/01/2007,Mr. Carter -Council Member ,Town of Montgomery ,P. O. Box 99,,Montgomery,LA,71454,318-646-3110,GRANT,Velma Fletcher,P.O. Box 874,,Montgomery,LA,71454,318-646-2605,W,F,,310,12/31/2010,01/01/2007,Ms. Fletcher -Council Member ,Town of Montgomery ,P. O. Box 99,,Montgomery,LA,71454,318-646-3110,GRANT,Joann B. Lary,P.O. Box 536,,Montgomery,LA,71454,318-646-3457,W,F,R,310,12/31/2010,01/01/2007,Ms. Lary -Council Member ,Town of Montgomery ,P. O. Box 99,,Montgomery,LA,71454,318-646-3110,GRANT,Denise Pearson,P.O. Box 287,,Montgomery,LA,71454,318-646-9226,B,F,D,310,12/31/2010,01/01/2007,Ms. Pearson -Council Member ,Town of Montgomery ,P. O. Box 99,,Montgomery,LA,71454,318-646-3110,GRANT,John Savant,P.O. Box 387,,Montgomery,LA,71454,318-646-8469,W,M,,310,12/31/2010,01/01/2007,Mr. Savant -Councilmen ,Town of Pollock ,P. O. Box 189,,Pollock,LA,71467,318-765-3796,GRANT,"Charles ""Eddie"" Butterfield, Jr.",4106 Hwy. 8,,Pollock,LA,71467,318-229-5066,W,M,O,310,12/31/2010,11/14/2008,Mr. Butterfield -Councilmen ,Town of Pollock ,P. O. Box 189,,Pollock,LA,71467,318-765-3796,GRANT,Faye Mayeaux,P.O. Box 576,,Pollack,LA,71467,318-765-9067,W,F,D,310,12/31/2010,01/01/2007,Ms. Mayeaux -Councilmen ,Town of Pollock ,P. O. Box 189,,Pollock,LA,71467,318-765-3796,GRANT,Winnie Nichols,1640 Willett St.,,Pollock,LA,71467,318-765-0973,W,F,D,310,12/31/2010,01/01/2007,Ms. Nichols -Councilmen ,Town of Pollock ,P. O. Box 189,,Pollock,LA,71467,318-765-3796,GRANT,"""Ron"" Wilkins",132 Durham Rd.,,Pollock,LA,71467,318-765-3856,W,M,O,310,12/31/2010,04/14/2009,Mr. Wilkins -Councilmen ,Town of Pollock ,P. O. Box 189,,Pollock,LA,71467,318-765-3796,GRANT,Sharon Lincecum Zeh,1911 Hickory St.,,Pollock,LA,71467,,W,F,D,310,12/31/2010,01/01/2007,Ms. Zeh -DPEC Member ,at Large ,,,,LA,,,IBERIA,Perry Segura,P.O Box 13410,,New Iberia,LA,70562,337-367-7785,W,M,D,054,02/20/2012,02/20/2008,Mr. Segura -DPEC Member ,District 1 ,,,,LA,,,IBERIA,,,,,,,,,,,056 -DPEC Member ,District 2 ,,,,LA,,,IBERIA,,,,,,,,,,,056 -DPEC Member ,District 3 ,,,,LA,,,IBERIA,,,,,,,,,,,056 -DPEC Member ,District 4 ,,,,LA,,,IBERIA,,,,,,,,,,,056 -DPEC Member ,District 5 ,,,,LA,,,IBERIA,,,,,,,,,,,056 -DPEC Member ,District 6 ,,,,LA,,,IBERIA,Stephen I. Etienne,1304 Southport Blvd.,,New Iberia,LA,70560,337-365-6195,B,M,D,056,02/20/2012,02/20/2008,Mr. Etienne -DPEC Member ,District 7 ,,,,LA,,,IBERIA,,,,,,,,,,,056 -DPEC Member ,District 8 ,,,,LA,,,IBERIA,,,,,,,,,,,056 -DPEC Member ,District 9 ,,,,LA,,,IBERIA,,,,,,,,,,,056 -DPEC Member ,District 10 ,,,,LA,,,IBERIA,,,,,,,,,,,056 -DPEC Member ,District 11 ,,,,LA,,,IBERIA,,,,,,,,,,,056 -DPEC Member ,District 12 ,,,,LA,,,IBERIA,,,,,,,,,,,056 -DPEC Member ,District 13 ,,,,LA,,,IBERIA,,,,,,,,,,,056 -DPEC Member ,District 14 ,,,,LA,,,IBERIA,,,,,,,,,,,056 -RPEC Member ,at Large ,,,,LA,,,IBERIA,Anne B. Caffery,1001 Loreauville Rd.,,New Iberia,LA,70563,337-365-3617,W,F,R,064,02/20/2012,02/20/2008,Ms. Caffery -RPEC Member ,at Large ,,,,LA,,,IBERIA,Jeffery Martin Landry,101 Arbor Ln.,,New Iberia,LA,70563,,,,,064,,11/09/2009,Ms. Landry -RPEC Member ,at Large ,,,,LA,,,IBERIA,Shelley Greer Rankin,129 Center St.,,New Iberia,LA,70560,,,,,064,,11/09/2009,Ms. Rankin -RPEC Member ,District 1 ,,,,LA,,,IBERIA,,,,,,,,,,,066 -RPEC Member ,District 2 ,,,,LA,,,IBERIA,,,,,,,,,,,066 -RPEC Member ,District 3 ,,,,LA,,,IBERIA,,,,,,,,,,,066 -RPEC Member ,District 4 ,,,,LA,,,IBERIA,,,,,,,,,,,066 -RPEC Member ,District 5 ,,,,LA,,,IBERIA,"James Wright Wyche, III",703 Julia St.,,New Iberia,LA,70563,,,,,066,,11/09/2009,Mr. Wyche -RPEC Member ,District 6 ,,,,LA,,,IBERIA,,,,,,,,,,,066 -RPEC Member ,District 7 ,,,,LA,,,IBERIA,Christopher John Gary,933 Myra St.,,New Iberia,LA,70563,,,,,066,,11/09/2009,Mr. Gary -RPEC Member ,District 8 ,,,,LA,,,IBERIA,"Roger Paul Hamilton, Jr.",105 Janice Avnue,,New Iberia,LA,70563,,,,,066,,11/09/2009,Mr. Hamilton -RPEC Member ,District 9 ,,,,LA,,,IBERIA,,,,,,,,,,,066 -RPEC Member ,District 10 ,,,,LA,,,IBERIA,,,,,,,,,,,066 -RPEC Member ,District 11 ,,,,LA,,,IBERIA,Rebecca Motty Allain,1933 Main St.,,Jeanerette,LA,70544,,,,,066,,11/09/2009 -RPEC Member ,District 12 ,,,,LA,,,IBERIA,,,,,,,,,,,066 -RPEC Member ,District 13 ,,,,LA,,,IBERIA,,,,,,,,,,,066 -RPEC Member ,District 14 ,,,,LA,,,IBERIA,,,,,,,,,,,066 -Sheriff ,,"300 Iberia St., Ste. 120",,New Iberia,LA,70560-4584,318-369-3714,IBERIA,Louis Ackal,"300 Iberia St., Ste. 120",,New Iberia,LA,70560-4584,337-367-0782,W,M,R,225,06/30/2012,07/01/2008,Sheriff Ackal -Clerk of Court ,,P. O. Drawer 12010,,New Iberia,LA,70562-2010,337-365-7282,IBERIA,"""Mike"" Thibodeaux",P.O. Drawer 12010,,New Iberia,LA,70562-2010,337-365-7282,W,M,D,230,06/30/2012,07/01/2008,Mr. Thibodeaux -Assessor ,,"300 Iberia St., Ste. B-100",,New Iberia,LA,70560,337-369-4415,IBERIA,Rickey Huval,2013 Alligator Alley,,New Iberia,LA,70560,337-364-7313,W,M,D,235,12/31/2012,01/01/2009,Mr. Huval -Coroner ,,P.O. Box 590,,Jeanerette,LA,70544,337-276-6374,IBERIA,"James B. Falterman, Sr.",P.O. Box 590,,Jeanerette,LA,70544,337-276-6374,W,M,D,240,03/25/2012,03/24/2008,Mr. Falterman -Parish President ,,"300 Iberia St., Ste. 410",,New Iberia,LA,70560-4543,337-365-8246,IBERIA,Ernest Freyou,2601 Freyou Rd.,,New Iberia,LA,70560,337-364-5633,W,M,R,243,01/09/2012,01/14/2008,Mr. Freyou -Councilman,District 1,"300 Iberia St., Ste. 410",,New Iberia,LA,70560-4543,337-365-8246,IBERIA,Maggie F. Daniels,309 Emery Lewis Ave.,,New Iberia,LA,70560,337-369-4477,B,F,D,245,01/09/2012,01/14/2008,Ms. Daniels -Councilman ,District 2 ,"300 Iberia St., Ste. 410",,New Iberia,LA,70560-4543,337-365-8246,IBERIA,"Curtis ""Joe"" Boudoin",1511 Eden St.,,New Iberia,LA,70560,337-365-4144,W,M,D,245,01/09/2012,01/14/2008,Mr. Boudoin -Councilman ,District 3 ,"300 Iberia St., Ste. 410",,New Iberia,LA,70560-4543,337-365-8246,IBERIA,Thomas J. Landry,3304 W. Old Spanish Trail,,New Iberia,LA,70560,337-367-3533,W,M,R,245,01/09/2012,01/14/2008,Mr. Landry -Councilman ,District 4 ,"300 Iberia St., Ste. 410",,New Iberia,LA,70560-4543,337-365-8246,IBERIA,Lloyd Brown,813 Francis St.,,New Iberia,LA,70560,337-365-4298,B,M,D,245,01/09/2012,01/14/2008,Mr. Brown -Councilman ,District 5 ,"300 Iberia St., Ste. 410",,New Iberia,LA,70560-4543,337-365-8246,IBERIA,Troy Comeaux,1609 Southwood Dr.,,New Iberia,LA,70560,337-369-6812,W,M,,245,01/09/2012,01/14/2008,Mr. Comeaux -Councilman ,District 6 ,"300 Iberia St., Ste. 410",,New Iberia,LA,70560-4543,337-365-8246,IBERIA,Bernard E. Broussard,703 Jefferson Terrace,,New Iberia,LA,70560,337-364-3433,W,M,R,245,01/09/2012,01/14/2008,Mr. Broussard -Councilman ,District 7 ,"300 Iberia St., Ste. 410",,New Iberia,LA,70560-4543,337-365-8246,IBERIA,John Berard,205 Pollard Ave.,,New Iberia,LA,70563,337-367-9286,W,M,,245,01/09/2012,01/14/2008,Mr. Berard -Councilman ,District 8 ,"300 Iberia St., Ste. 410",,New Iberia,LA,70560-4543,337-365-8246,IBERIA,Barry Verret,1704 Daspit Rd.,,New Iberia,LA,70560,337-365-6168,W,M,,245,01/09/2012,01/14/2008,Mr. Verret -Councilman ,District 9 ,"300 Iberia St., Ste. 410",,New Iberia,LA,70560-4543,337-365-8246,IBERIA,Glenn P. Romero,5919 Loreauville Rd.,,New Iberia,LA,70563,337-229-6529,W,M,D,245,01/09/2012,01/14/2008,Mr. Romero -Councilman ,District 10 ,"300 Iberia St., Ste. 410",,New Iberia,LA,70560-4543,337-365-8246,IBERIA,Roger Duncan,4016 Coco Miquel Dr.,,New Iberia,LA,70560,337-369-9507,W,M,,245,01/09/2012,01/14/2008,Mr. Duncan -Councilman ,District 11 ,"300 Iberia St., Ste. 410",,New Iberia,LA,70560-4543,337-365-8246,IBERIA,Jerome W. Fitch,9305 Old Jeanerette Rd.,,Jeanerette,LA,70544,337-276-4398,W,M,D,245,01/09/2012,01/14/2008,Mr. Fitch -Councilman ,District 12 ,"300 Iberia St., Ste. 410",,New Iberia,LA,70560-4543,337-365-8246,IBERIA,"Charles ""Charlie Brown"" Williams",809 Morris Charles,,Jeanerette,LA,70544,337-276-3526,B,M,D,245,01/09/2012,01/14/2008,Mr. Brown -Councilman ,District 13 ,"300 Iberia St., Ste. 410",,New Iberia,LA,70560-4543,337-365-8246,IBERIA,M. Larry Richard,3113 Avery Island Rd.,,New Iberia,LA,70560,337-365-0025,B,M,,245,01/09/2012,01/14/2008,Mr. Richard -Councilman ,District 14 ,"300 Iberia St., Ste. 410",,New Iberia,LA,70560-4543,337-365-8246,IBERIA,Naray Hulin,6211 Fremin Rd.,,New Iberia,LA,70560,337-367-1871,W,M,D,245,01/09/2012,01/14/2008,Mr. Hulin -City Judge ,"City Court, City of Jeanerette ",P. O. Box 268,,Jeanerette,LA,70544,337-276-5603,IBERIA,Cameron B. Simmons,P.O. Box 232,,Jeanerette,LA,70544,337-276-6034,W,M,D,250,12/31/2014,01/01/2009,Judge Simmons -City Judge ,"City Court, City of New Iberia ","457 E. Main St., Rm. 206",,New Iberia,LA,70560-3700,318-369-2334,IBERIA,Robert L. Segura,135 Plantation Dr.,,New Iberia,LA,70563,337-365-7103,W,M,D,250,12/31/2014,01/01/2009,Judge Segura -City Marshal ,"City Court, City of Jeanerette ",P. O. Box 268,,Jeanerette,LA,70544,337-276-5603,IBERIA,"Fernest ""Pacman"" Martin",1505 Martin Luther King Dr.,,Jeanerette,LA,70544,,B,M,D,250,12/31/2014,01/01/2009,Marshal Martin -City Marshal ,"City Court, City of New Iberia ","457 E. Main St., Rm. 206",,New Iberia,LA,70560-3700,318-369-2332,IBERIA,"Victor ""Vic"" Delcambre",149 Plantation Dr.,,New Iberia,LA,70563,337-364-7984,W,M,D,250,12/31/2014,01/01/2009,Marshal Delcambre -Member of School Board ,District 1 ,P. O. Box 200,,New Iberia,LA,70562-0200 ,337-365-2341,IBERIA,Clara Degay Carrier,717 Elizabeth St.,,New Iberia,LA,70560,337-364-2049,B,F,D,255,12/31/2010,01/01/2007,Ms. Carrier -Member of School Board ,District 2 ,P. O. Box 200,,New Iberia,LA,70562-0200 ,337-365-2341,IBERIA,"Elvin ""Dee"" Pradia",1717 S. Gibbs Ln.,,New Iberia,LA,70560,337-369-3246,B,M,D,255,12/31/2010,01/01/2007,Mr. Pradia -Member of School Board ,District 3 ,P. O. Box 200,,New Iberia,LA,70562-0200 ,337-365-2341,IBERIA,"""Jay"" McDonald",107 W. Tampico St.,,New Iberia,LA,70563,337-365-2223,W,M,,255,12/31/2010,01/01/2007,Mr. McDonald -Member of School Board ,District 4 ,P. O. Box 200,,New Iberia,LA,70562-0200 ,337-365-2341,IBERIA,"Mary Batiste ""Mel"" Davis",P.O.Box 12101,,New Iberia,LA,70562,337-365-1374,B,F,D,255,12/31/2010,01/01/2007,Ms. Davis -Member of School Board ,District 5 ,P. O. Box 200,,New Iberia,LA,70562-0200 ,337-365-2341,IBERIA,Robbie J. LeBlanc,912 Sydney St.,,New Iberia,LA,70560,337-365-7632,W,M,,255,12/31/2010,01/01/2007,Mr. LeBlanc -Member of School Board ,District 6 ,P. O. Box 200,,New Iberia,LA,70562-0200 ,337-365-2341,IBERIA,"Richard L. Denison, Jr.",120 Lee St.,,New Iberia,LA,70560,337-519-6550,W,M,R,255,12/31/2010,01/01/2007,Mr. Denison -Member of School Board ,District 7 ,P. O. Box 200,,New Iberia,LA,70562-0200 ,337-365-2341,IBERIA,"Dan LeBlanc, Sr.",203 Everette St.,,New Iberia,LA,70563,337-365-6537,W,M,R,255,12/31/2010,01/01/2007,Mr. LeBlanc -Member of School Board ,District 8 ,P. O. Box 200,,New Iberia,LA,70562-0200 ,337-365-2341,IBERIA,"""Ed"" Buford",700 Terrell Crt.,,New Iberia,LA,70563,337-365-2852,W,M,D,255,12/31/2010,01/01/2007,Mr. Buford -Member of School Board ,District 9 ,P. O. Box 200,,New Iberia,LA,70562-0200 ,337-365-2341,IBERIA,Joel J. Dugas,117 Ed Provost Rd.,,New Iberia,LA,70563,337-229-4896,W,M,R,255,12/31/2010,01/01/2007,Mr. Dugas -Member of School Board ,District 10 ,P. O. Box 200,,New Iberia,LA,70562-0200 ,337-365-2341,IBERIA,Blaine Meche,P.O. Box 126,,Lydia,LA,70569,337-369-1634,W,M,,255,12/31/2010,01/01/2007,Mr. Meche -Member of School Board ,District 11 ,P. O. Box 200,,New Iberia,LA,70562-0200 ,337-365-2341,IBERIA,Mary Fay Lapeyrouse Freshley,1708 Main St.,,Jeanerette,LA,70544,337-276-4213,W,F,D,255,12/31/2010,01/01/2007,Ms. Freshley -Member of School Board ,District 12 ,P. O. Box 200,,New Iberia,LA,70562-0200 ,337-365-2341,IBERIA,Arthur L. Alexander,11308 E. Admiral Doyle Dr.,,Jeanerette,LA,70544,337-276-5713,B,M,D,255,12/31/2010,01/01/2007,Mr. Alexander -Member of School Board ,District 13 ,P. O. Box 200,,New Iberia,LA,70562-0200 ,337-365-2341,IBERIA,Danny D. Segura,5810 Derouen Rd.,,New Iberia,LA,70560,337-365-5823,W,M,,255,12/31/2010,01/01/2007,Mr. Segura -Member of School Board ,District 14 ,P. O. Box 200,,New Iberia,LA,70562-0200 ,337-365-2341,IBERIA,"Kenric ""Mushy"" Fremin",5711 Fremin Rd.,,New Iberia,LA,70560,337-365-6004,W,M,D,255,12/31/2010,05/12/2009,Mr. Fremin -Justice of the Peace ,Justice of the Peace Ward 1 ,114 Migues Rd.,,New Iberia,LA,70560,337-364-4409,IBERIA,"John N. ""Johnny"" Hebert",P.O. Box 12024,,New Iberia,LA,70562,337-364-4409,W,M,,265,12/31/2014,01/01/2009,Mr. Hebert -Justice of the Peace ,Justice of the Peace Ward 2 ,4918 Freyou Rd.,,New IberIA,LA,70560,337-364-3662,IBERIA,Henry Charpentier,4918 Freyou Rd.,,New Iberia,LA,70560,337-364-3662,W,M,D,265,12/31/2014,01/01/2009,Mr. Charpentier -Justice of the Peace ,Justice of the Peace Ward 3 ,5201 Loreauville Rd.,,New Iberia,LA,70563,337-229-4925,IBERIA,Veronica B. Ferry,3304 Sugarmill Rd.,,New Iberia,LA,70563,337-376-6199,W,F,R,265,12/31/2014,01/01/2009,Mr. Ferry -Constable ,Justice of the Peace Ward 1 ,7708 Coteau Rd.,,New Iberia,LA,70560,337-367-3515,IBERIA,Lynn P. Guillotte,7708 Coteau Rd.,,New Iberia,LA,70560,337-367-3515,W,M,R,267,12/31/2014,01/01/2009,Mr. Guillotte -Constable ,Justice of the Peace Ward 2 ,5018 Freyou Rd.,,New Iberia,LA,70560,337-365-1019,IBERIA,Mark Charpentier,5018 Freyou Rd.,,New Iberia,LA,70560,337-365-1019,W,M,D,267,12/31/2014,01/01/2009,Mr. Charpentier -Constable ,Justice of the Peace Ward 3 ,7512 Loreauville Rd.,,New Iberia,LA,70563,337-229-4995,IBERIA,Benjamin J. Hoffpauir,7119 Loreauville Rd.,,New Iberia,LA,70563,337-229-4506,W,M,D,267,12/31/2014,01/01/2009,Mr. Hoffpauir -Mayor ,City of Jeanerette ,P. O. Box 209,,Jeanerette,LA,,337-276-4587,IBERIA,Arthur L. Verret,2121 Deslatte St.,,Jeanerette,LA,70544,337-276-5883,W,M,D,300,06/30/2011,07/01/2007,Mayor Verret -Mayor ,City of New Iberia ,"457 E. Main St., Ste.300",,New Iberia,LA,,337-369-2300,IBERIA,"""Hilda"" Daigre-Curry",370 Hilltop Cr.,,New Iberia,LA,70563,337-369-3133,W,F,D,300,12/31/2012,01/01/2009,Mayor Daigre-Curry -Mayor ,Village of Loreauville ,P. O. Box 336,,Loreauville,LA,,337-229-8306,IBERIA,"Albert A. Broussard, Jr.",P.O. Box 52,,Loreauville,LA,70552,337-229-6768,W,M,R,300,12/31/2012,01/01/2009,Mr. Broussard -Alderman at Large ,City of Jeanerette ,P. O. Box 209,,Jeanerette,LA,70544,337-276-4587,IBERIA,Aprill Foulcard,637 Hebert St.,,Jeanerette,LA,70544,337-519-5378,B,F,D,308,06/30/2011,07/01/2007,Ms. Foulcard -Council Member ,"At Large, City of New Iberia ","457 E. Main St., Ste.300",,New Iberia,LA,70560-3700,337-369-2300,IBERIA,"Frederick H. ""Freddie"" DeCourt, Jr.",403 Loreauville Rd.,,New Iberia,LA,70563,337-364-3616,W,M,R,308,12/31/2012,01/01/2009,Mr. DeCourt -Alderman ,Village of Loreauville ,P. O. Box 336,,Loreauville,LA,70552,337-229-8306,IBERIA,Tony Broussard,P.O. Box 818,,Loreauville,LA,70552,337-229-9295,W,M,,310,12/31/2012,01/01/2009,Mr. Broussard -Alderman ,Village of Loreauville ,P. O. Box 336,,Loreauville,LA,70552,337-229-8306,IBERIA,Mark Landry,P. O. Box 564,,Loreauville,LA,70552,337-229-8425,W,M,R,310,12/31/2012,01/01/2009,Mr. Landry -Alderman ,Village of Loreauville ,P. O. Box 336,,Loreauville,LA,70552,337-229-8306,IBERIA,Sandy J. Sonnier,P.O. Box 230,,Loreauville,LA,70552,337-229-4491,W,M,R,310,12/31/2012,01/01/2009,Ms. Sonnier -Alderman ,"Ward 1, City of Jeanerette ",P. O. Box 209,,Jeanerette,LA,70544,337-276-4587,IBERIA,Betty M. Bouie,605 Martin Luther King Dr.,,Jeanerette,LA,70544,337-276-5508,B,F,D,310,06/30/2011,07/01/2007,Ms. Bouie -Alderman ,"Ward 2, City of Jeanerette ",P. O. Box 209,,Jeanerette,LA,70544,337-276-4587,IBERIA,Vernell Mitchell,P.O. Box 622,,Jeanerette,LA,70544,337-276-5648,B,F,D,310,06/30/2011,07/01/2007,Mr. Mitchell -Alderman ,"Ward 3, City of Jeanerette ",P. O. Box 209,,Jeanerette,LA,70544,337-276-4587,IBERIA,"Sanders ""Sandy"" Derise",220 Main St.,,Jeanerette,LA,70544,337-276-4017,W,M,D,310,06/30/2011,07/01/2007,Ms. Derise -Alderman ,"Ward 4, City of Jeanerette ",P. O. Box 209,,Jeanerette,LA,70544,337-276-4587,IBERIA,Kenneth Kern,515 Louisiana St.,,Jeanerette,LA,70544,337-276-4389,W,M,R,310,06/30/2011,07/01/2007,Mr. Kern -Council Member ,"District 1, City of New Iberia ","457 E. Main St., Ste.300",,New Iberia,LA,70560-3700,337-369-2300,IBERIA,Therese M. Segura,709 Darby Ln.,,New Iberia,LA,70560,337-367-5118,W,F,D,310,12/31/2012,01/01/2009,Mr. Segura -Council Member ,"District 2, City of New Iberia ","457 E. Main St., Ste.300",,New Iberia,LA,70560-3700,337-369-2300,IBERIA,Peggy L. Gerac,624 Hebert St.,,New Iberia,LA,70560,337-364-0357,B,F,D,310,12/31/2012,01/01/2009,Ms. Gerac -Council Member ,"District 3, City of New Iberia ","457 E. Main St., Ste.300",,New Iberia,LA,70560-3700,337-369-2300,IBERIA,Robert J. Suire,302 E. Dale St.,,New Iberia,LA,70560,337-367-1185,W,M,D,310,12/31/2012,01/01/2009,Mr. Suire -Council Member ,"District 4, City of New Iberia ","457 E. Main St., Ste.300",,New Iberia,LA,70560-3700,337-369-2300,IBERIA,David Merrill,301 Caroline St.,,New Iberia,LA,70560,337-251-3400,B,M,D,310,12/31/2012,01/01/2009,Mr. Merrill -Council Member ,"District 5, City of New Iberia ","457 E. Main St., Ste.300",,New Iberia,LA,70560-3700,337-369-2300,IBERIA,"Raymond ""Shoe-Do"" Lewis",1230 Angie St.,,New Iberia,LA,70560,337-365-7695,B,M,D,310,12/31/2012,01/01/2009,Mr. Lewis -Council Member ,"District 6, City of New Iberia ","457 E. Main St., Ste.300",,New Iberia,LA,70560-3700,337-369-2300,IBERIA,Calvin Begnaud,605 Astor Place Dr.,,New Iberia,LA,70563,337-364-4976,W,M,D,310,12/31/2012,01/01/2009,Mr. Begnaud -DPEC Member ,at Large ,,,,LA,,,IBERVILLE,"Kevin ""Butchie"" Ambeau",P.O. Box 33,,Carville,LA,70721,225-642-0444,B,M,D,054,02/20/2012,02/20/2008,Mr. Ambeau -DPEC Member ,at Large ,,,,LA,,,IBERVILLE,"Michael ""Chief"" Barbee",58110 LaBauve Ave.,,Plaquemine,LA,70764,225-687-5310,W,M,D,054,02/20/2012,02/20/2008,Mr. Barbee -DPEC Member ,at Large ,,,,LA,,,IBERVILLE,"Edward ""Lucky"" Songy, Jr.",P.O. Box 148,,Plaquemine,LA,70765,225-687-2644,W,M,D,054,02/20/2012,02/20/2008,Mr. Songy -DPEC Member ,at Large ,,,,LA,,,IBERVILLE,Peggy Young,P.O. Box 662,,Plaquemine,LA,70765,225-659-2834,B,F,D,054,02/20/2012,02/20/2008,Ms. Young -DPEC Member ,District 1 ,,,,LA,,,IBERVILLE,,,,,,,,,,,056 -DPEC Member ,District 2 ,,,,LA,,,IBERVILLE,,,,,,,,,,,056 -DPEC Member ,District 3 ,,,,LA,,,IBERVILLE,,,,,,,,,,,056 -DPEC Member ,District 4 ,,,,LA,,,IBERVILLE,,,,,,,,,,,056 -DPEC Member ,District 5 ,,,,LA,,,IBERVILLE,,,,,,,,,,,056 -DPEC Member ,District 6 ,,,,LA,,,IBERVILLE,,,,,,,,,,,056 -DPEC Member ,District 7 ,,,,LA,,,IBERVILLE,"Brandon ""Troy"" Mellieon",58475 Nats Aly,,Plaquemine,LA,70764,225-685-1091,B,M,D,056,02/20/2012,02/20/2008,Mr. Mellieon -DPEC Member ,District 8 ,,,,LA,,,IBERVILLE,Daryl Tempanaro,57988 Borruano Dr.,,Plaquemine,LA,70764,225-687-9413,W,M,D,056,02/20/2012,02/20/2008,Mr. Tempanaro -DPEC Member ,District 9 ,,,,LA,,,IBERVILLE,"J. G. ""Jade"" Dupont, III",20340 Sallie Dr.,,Plaquemine,LA,70764,225-687-7891,W,M,D,056,02/20/2012,02/20/2008,Mr. Dupont -DPEC Member ,District 10 ,,,,LA,,,IBERVILLE,,,,,,,,,,,056 -DPEC Member ,District 11 ,,,,LA,,,IBERVILLE,,,,,,,,,,,056 -DPEC Member ,District 12 ,,,,LA,,,IBERVILLE,,,,,,,,,,,056 -DPEC Member ,District 13 ,,,,LA,,,IBERVILLE,,,,,,,,,,,056 -RPEC Member ,at Large ,,,,LA,,,IBERVILLE,Karen Fitzgerald,21960 Talbot Dr.,,Plaquemine,LA,70764,225-687-8453,W,F,R,064,02/20/2012,02/20/2008 -RPEC Member ,at Large ,,,,LA,,,IBERVILLE,Vanessa Banta Moore,22560 Talbot Dr.,,Plaquemine,LA,70764,225-687-8584,W,F,R,064,02/20/2012,02/20/2008,Ms. Moore -RPEC Member ,District 1 ,,,,LA,,,IBERVILLE,,,,,,,,,,,066 -RPEC Member ,District 2 ,,,,LA,,,IBERVILLE,,,,,,,,,,,066 -RPEC Member ,District 3 ,,,,LA,,,IBERVILLE,,,,,,,,,,,066 -RPEC Member ,District 4 ,,,,LA,,,IBERVILLE,,,,,,,,,,,066 -RPEC Member ,District 5 ,,,,LA,,,IBERVILLE,,,,,,,,,,,066 -RPEC Member ,District 6 ,,,,LA,,,IBERVILLE,,,,,,,,,,,066 -RPEC Member ,District 7 ,,,,LA,,,IBERVILLE,,,,,,,,,,,066 -RPEC Member ,District 8 ,,,,LA,,,IBERVILLE,,,,,,,,,,,066 -RPEC Member ,District 9 ,,,,LA,,,IBERVILLE,,,,,,,,,,,066 -RPEC Member ,District 10 ,,,,LA,,,IBERVILLE,,,,,,,,,,,066 -RPEC Member ,District 11 ,,,,LA,,,IBERVILLE,,,,,,,,,,,066 -RPEC Member ,District 12 ,,,,LA,,,IBERVILLE,,,,,,,,,,,066 -RPEC Member ,District 13 ,,,,LA,,,IBERVILLE,,,,,,,,,,,066 -Sheriff ,,P. O. Box 231,,Plaquemine,LA,70765,225-687-5100,IBERVILLE,Brent Allain,P.O. Box 231,,Plaquemine,LA,70765,225-687-3747,W,M,D,225,06/30/2012,07/01/2008,Sheriff Allain -Clerk of Court ,,P. O. Box 423,,Plaquemine,LA,70765,225-687-5160,IBERVILLE,"J. G.""Bubbie"" Dupont, Jr.",P.O. Box 423,,Plaquemine,LA,70765,225-687-7891,W,M,D,230,06/30/2012,07/01/2008,Mr. Dupont -Assessor ,,58050 Meriam St.,,Plaquemine,LA,70765,225-687-3568,IBERVILLE,"""Randy"" Sexton",P.O. Box 419,,Rosedale,LA,70772,225-648-2392,W,M,D,235,12/31/2012,01/01/2009,Mr. Sexton -Coroner ,,58038 Fort Street,,Plaquemine,LA,70764,225-687-8555,IBERVILLE,Steven E. Lee,P.O. Box 927,,Plaquemine,LA,70765,225-978-1265,W,M,D,240,03/25/2012,03/24/2008,Mr. Lee -Parish President ,,P.O. Box 389,,Plaquemine,LA,70765-0389 ,225-687-3257,IBERVILLE,"Jessel ""Mitchell"" Ourso, Jr.",24070 Kirtley Dr.,,Plaquemine,LA,70764,225-659-7143,W,M,D,243,01/09/2012,01/14/2008,Mr. Ourso -Council Member ,District 1 ,P. O. Box 389,,Plaquemine,LA,,225-687-3257,IBERVILLE,"Warren ""T-Notchie"" Taylor",32250 Bowie Street,,White Castle,LA,70788,225-545-3197,B,M,D,245,01/09/2012,01/14/2008,Mr. Taylor -Council Member ,District 2 ,P. O. Box 389,,Plaquemine,LA,70765-0389 ,225-687-3257,IBERVILLE,Mitchel J. Ourso,56950 Ourso Road,,White Castle,LA,70788,225-545-2422,W,M,D,245,01/09/2012,01/14/2008,Mr. Ourso -Council Member ,District 3 ,P. O. Box 389,,Plaquemine,LA,70765-0389 ,225-687-3257,IBERVILLE,"Henry ""Bucket"" Scott",P.O. Box 151,,White Castle,LA,70788,225-413-1438,B,M,D,245,01/09/2012,01/14/2008,Mr. Scott -Council Member ,District 4 ,P. O. Box 389,,Plaquemine,LA,70765-0389 ,225-687-3257,IBERVILLE,"Leonard ""Buck"" Jackson",P.O. Box 124,,Carville,LA,70721,225-776-1753,B,M,D,245,01/09/2012,01/14/2008,Mr. Jackson -Council Member ,District 5 ,P. O. Box 389,,Plaquemine,LA,70765-0389 ,225-687-3257,IBERVILLE,"Edwin M. ""Ed"" Reeves, Jr.",58680 St. Clement Ave.,,Plaquemine,LA,70764,225-687-9073,W,M,D,245,01/09/2012,01/14/2008,Mr. Reeves -Council Member ,District 6 ,P. O. Box 389,,Plaquemine,LA,70765-0389 ,225-687-3257,IBERVILLE,"Salaris ""Sal"" Butler",24710 Hwy. #1,,Plaquemine,LA,70764,225-776-1811,B,M,D,245,01/09/2012,01/14/2008,Ms. Butler -Council Member ,District 7 ,P. O. Box 389,,Plaquemine,LA,70765-0389 ,225-687-3257,IBERVILLE,"Howard Oubre, Jr.",58886 Allen St.,,Plaquemine,LA,70764,225-776-5500,B,M,D,245,01/09/2012,01/14/2008,Mr. Oubre -Council Member ,District 8 ,P. O. Box 389,,Plaquemine,LA,70765-0389 ,225-687-3257,IBERVILLE,"Eugene P. Stevens, Jr.",57973 Borruano Dr.,,Plaquemine,LA,70764,225-687-1724,W,M,D,245,01/09/2012,01/14/2008,Mr. Stevens -Council Member ,District 9 ,P. O. Box 389,,Plaquemine,LA,70765-0389 ,225-687-3257,IBERVILLE,Terry J. Bradford,24520 Kirtley Dr.,,Plaquemine,LA,70764,225-603-4802,W,M,D,245,01/09/2012,01/14/2008,Mr. Bradford -Council Member ,District 10 ,P. O. Box 389,,Plaquemine,LA,70765-0389 ,225-687-3257,IBERVILLE,"Louis ""Pete"" Kelley, Jr.",65785 J.R. Drive,,Plaquemine,LA,70764,225-659-7790,W,M,D,245,01/09/2012,01/14/2008,Mr. Kelley -Council Member ,District 11 ,P. O. Box 389,,Plaquemine,LA,70765-0389 ,225-687-3257,IBERVILLE,"""Tim"" Vallet",77290 McBay Dr.,,Grosse Tete,LA,70740,225-648-2784,W,M,D,245,01/09/2012,01/14/2008,Mr. Vallet -Council Member ,District 12 ,P. O. Box 389,,Plaquemine,LA,70765-0389 ,225-687-3257,IBERVILLE,"""Matt"" Jewell",P.O. Box 596,,Maringouin,LA,70757,225-324-6951,W,M,D,245,01/09/2012,01/14/2008,Mr. Jewell -Council Member ,District 13 ,P. O. Box 389,,Plaquemine,LA,70765-0389 ,225-687-3257,IBERVILLE,Wayne M. Roy,6995 Bayou Paul Rd.,,St. Gabriel,LA,70776,225-642-9724,W,M,D,245,01/09/2012,01/14/2008,Mr. Roy -City Judge ,"City Court, City of Plaquemine ",P. O. Box 1017,,Plaquemine,LA,70764,225-687-7236,IBERVILLE,"Michael M. Distefano, Sr.",P.O. Box 361,,Plaquemine,LA,70765,225-385-4477,W,M,D,250,12/31/2014,01/01/2009,Judge Distefano -City Marshal ,"City Court, City of Plaquemine ",P. O. Box 1017,,Plaquemine,LA,70764,225-687-7236,IBERVILLE,"S.J. ""Bronco"" Wilbert",P.O. Box 1029,,Plaquemine,LA,70765,225-687-2514,W,M,D,250,12/31/2014,01/01/2009,Marshal Wilbert -Member of School Board ,District A ,P. O. Box 151,,Plaquemine,LA,70765-0151 ,225-687-4341,IBERVILLE,Stanley Washington,P.O. Box 524,,Maringouin,LA,70757,225-625-3004,B,M,D,255,12/31/2010,01/01/2007,Mr. Washington -Member of School Board ,District B ,P. O. Box 151,,Plaquemine,LA,70765-0151 ,225-687-4341,IBERVILLE,"David ""Worm"" Daigle",77505 Wille Dr.,,Grosse Tete,LA,70740,225-648-3149,W,M,D,255,12/31/2010,01/01/2007,Mr. Daigle -Member of School Board ,District C ,P. O. Box 151,,Plaquemine,LA,70765-0151 ,225-687-4341,IBERVILLE,Glyna Mendoza Kelley,65785 JR Dr.,,Plaquemine,LA,70764,225-659-7790,W,F,D,255,12/31/2010,01/01/2007,Ms. Kelley -Member of School Board ,District D ,P. O. Box 151,,Plaquemine,LA,70765-0151 ,225-687-4341,IBERVILLE,"Michael J. Hebert, Jr.",25320 Hwy. #77,,Plaquemine,LA,70764,225-659-1240,W,M,D,255,12/31/2010,01/01/2007,Mr. Hebert -Member of School Board ,District E ,P. O. Box 151,,Plaquemine,LA,70765-0151 ,225-687-4341,IBERVILLE,Paul Distefano,P.O. Box 361,,Plaquemine,LA,70764,225-687-9229,W,M,D,255,12/31/2010,01/01/2007,Mr. Distefano -Member of School Board ,District F ,P. O. Box 151,,Plaquemine,LA,70765-0151 ,225-687-4341,IBERVILLE,"Michael ""Chief"" Barbee",58110 LaBauve Ave.,,Plaquemine,LA,70764,225-687-5310,O,M,D,255,12/31/2010,01/01/2007,Mr. Barbee -Member of School Board ,District G ,P. O. Box 151,,Plaquemine,LA,70765-0151 ,225-687-4341,IBERVILLE,"Thomas ""Tom"" Delahaye",58425 St. Clement Ave.,,Plaquemine,LA,70764,225-687-8924,W,M,D,255,12/31/2010,01/01/2007,Mr. Delahaye -Member of School Board ,District H ,P. O. Box 151,,Plaquemine,LA,70765-0151 ,225-687-4341,IBERVILLE,Dorothy R. Sansoni,23730 Cypress St.,,Plaquemine,LA,70764,225-687-4068,B,F,D,255,12/31/2010,01/01/2007,Ms. Sansoni -Member of School Board ,District I ,P. O. Box 151,,Plaquemine,LA,70765-0151 ,225-687-4341,IBERVILLE,Yolanda Butler Laws,24705 Hebert St.,,Plaquemine,LA,70764,225-802-2022,B,F,D,255,12/31/2010,01/01/2007,Ms. Laws -Member of School Board ,District J ,P. O. Box 151,,Plaquemine,LA,70765-0151 ,225-687-4341,IBERVILLE,Brian Willis,59590-B Belleview Rd.,,Plaquemine,LA,70764,225-687-2535,W,M,D,255,12/31/2010,01/01/2007,Mr. Willis -Member of School Board ,District K ,P. O. Box 151,,Plaquemine,LA,70765-0151 ,225-687-4341,IBERVILLE,Nancy T. Broussard,610 Pecan Dr.,,St. Gabriel,LA,70776,225-642-8622,W,F,,255,12/31/2010,01/01/2007,Ms. Broussard -Member of School Board ,District L ,P. O. Box 151,,Plaquemine,LA,70765-0151 ,225-687-4341,IBERVILLE,"Freddie ""Sam"" Molden, III",P.O. Box 266,,White Castle,LA,70788,225-545-8116,B,M,D,255,12/31/2010,01/01/2007,Mr. Molden -Member of School Board ,District M ,P. O. Box 151,,Plaquemine,LA,70765-0151 ,225-687-4341,IBERVILLE,Melvin Lodge,3665 Grenada Dr.,,St. Gabriel,LA,70776,225-642-5184,B,M,D,255,12/31/2010,01/01/2007,Mr. Lodge -Member of School Board ,District N ,P. O. Box 151,,Plaquemine,LA,70765-0151 ,225-687-4341,IBERVILLE,"Albertha Davis ""Alp"" Hasten",32365 Doc Dean St.,,White Castle,LA,70788,225-545-5520,B,F,D,255,12/31/2010,01/01/2007,Ms. Hasten -Member of School Board ,District O ,P. O. Box 151,,Plaquemine,LA,70765-0151 ,225-687-4341,IBERVILLE,Darlene M. Ourso,57030 Ourso Rd.,,White Castle,LA,70788,225-545-8961,W,F,D,255,12/31/2010,01/01/2007,Ms. Ourso -Justice of the Peace ,Justice of the Peace Ward 1 ,34000 Bowie St.,,White Castle,LA,70788,225-545-3034,IBERVILLE,"Roland ""Roach"" Fremin",34000 Bowie St.,,White Castle,LA,70788,225-545-3034,W,M,D,265,12/31/2014,01/01/2009,Mr. Fremin -Justice of the Peace ,Justice of the Peace Ward 2 ,P. O. Box 35,,Carville,LA,70721,225-642-9692,IBERVILLE,"Jimmy Green, III",P.O. Box 451,,Carville,LA,70721,225-319-7101,B,M,,265,12/31/2014,01/01/2009,Mr. Green -Justice of the Peace ,Justice of the Peace Ward 3 ,24100 Sebastian St.,,Plaquemine,LA,70764,225-687-1235,IBERVILLE,"Steve C. ""Pine"" Smith",24100 Sebastian St.,,Plaquemine,LA,70764,225-687-1235,W,M,D,265,12/31/2014,01/01/2009,Mr. Smith -Justice of the Peace ,Justice of the Peace Ward 4 ,P. O. Box 1272,,Plaquemine,LA,70765,225-776-3053,IBERVILLE,Mark Migliacio,58465 Island Dr.,,Plaquemine,LA,70764,225-776-3053,W,M,D,265,12/31/2014,01/01/2009,Mr. Migliacio -Justice of the Peace ,Justice of the Peace Ward 5 ,25245 Patreau Lane,,Plaquemine,LA,70764,225-659-2272,IBERVILLE,Justin Kane Mendoza,61660 Bayou Rd.,,Plaquemine,LA,70764,225-776-5171,W,M,D,265,12/31/2014,01/01/2009,Mr. Mendoza -Justice of the Peace ,Justice of the Peace Ward 6 ,P.O. Box 703,,Maringouin,LA,70757,225-625-2383,IBERVILLE,"""Jackie"" Wesley",P.O. Box 185,,Maringouin,LA,70757,225-625-2383,B,F,D,265,12/31/2014,01/01/2009,Ms. Wesley -Constable ,Justice of the Peace Ward 1 ,58720 Hymel St.,,White Castle,LA,70788,225-545-8597,IBERVILLE,"Joseph ""Joe"" Richard",32590 Graham St.,,White Castle,LA,70788,225-545-2463,W,M,D,267,12/31/2014,01/01/2009,Mr. Richard -Constable ,Justice of the Peace Ward 2 ,P.O. Box 542,,Sunshine,LA,70780,225-642-0031,IBERVILLE,"Lloyd ""Big Red"" Snowten",P.O. Box 573,,St. Gabriel,LA,70776,225-642-8546,B,M,D,267,12/31/2014,01/01/2009,Mr. Snowten -Constable ,Justice of the Peace Ward 3 ,59055 Darby Ave.,,Plaquemine,LA,70764,225-687-9568,IBERVILLE,"""Tommy"" Tucker",57935 Desobry St.,,Plaquemine,LA,70764,225-687-9521,W,M,D,267,12/31/2014,01/01/2009,Mr. Tucker -Constable ,Justice of the Peace Ward 4 ,23462 Eden St.,,Plaquemine,LA,70764,225-687-5252,IBERVILLE,"John ""JB"" Barker",23462 Eden St.,,Plaquemine,LA,70764,225-776-0050,W,M,D,267,12/31/2014,01/01/2009,Mr. Barker -Constable ,Justice of the Peace Ward 5 ,66285 Spur 75,,Plaquemine,LA,70764,225-569-7049,IBERVILLE,"Ronald ""Ronnie"" Hebert",66285 Spur 75,,Plaquemine,LA,70764,225-659-7049,W,M,D,267,12/31/2014,01/01/2009,Mr. Hebert -Constable ,Justice of the Peace Ward 6 ,21655 Hwy. 77,,Grosse Tete,LA,70740,225-648-2766,IBERVILLE,Larry Johnson,13615 Hwy. 411,,Maringouin,LA,70757,225-625-3213,B,M,D,267,12/31/2014,01/01/2009,Mr. Johnson -Mayor ,City of Plaquemine ,P. O. Box 675,,Plaquemine,LA,,225-687-3661,IBERVILLE,"Mark ""Tony"" Gulotta",24020 Eden St.,,Plaquemine,LA,70764,225-687-0113,W,M,D,300,12/31/2012,01/01/2009,Mayor Gulotta -Mayor ,City of St. Gabriel ,5035 Iberville St.,,St. Gabriel,LA,,225-642-9600,IBERVILLE,"George L. Grace, Sr.",1625 Besson Ln.,,Sunshine,LA,70780,225-615-5913,B,M,D,300,06/30/2011,07/01/2007,Mayor -Mayor ,Town of Maringouin ,P. O. Box 10,,Maringouin,LA,,225-625-2630,IBERVILLE,John F. Overton,P.O. Box 624,,Maringouin,LA,70757,225-625-3785,B,M,D,300,12/31/2010,01/01/2007,Mr. Overton -Mayor ,Town of White Castle ,P. O. Box 488,,White Castle,LA,,225-545-3012,IBERVILLE,"Maurice ""Big Moe"" Brown",32330 Chairmonte St.,,White Castle,LA,70788,225-545-8448,B,M,D,300,12/31/2010,01/01/2007,Mayor -Mayor ,Village of Grosse Tete ,P. O. Box 98,,Grosse Tete,LA,,225-648-2131,IBERVILLE,"Michael D. Chauffe, Sr.",P.O. Box 151,,Grosse Tete,LA,70740,225-648-2431,W,M,D,300,12/31/2012,01/01/2009,Mayor Chauffe -Mayor ,Village of Rosedale ,P. O. Box 167,,Rosedale,LA,,225-648-2333,IBERVILLE,"Lawrence ""Football"" Badeaux",P.O. Box 276,,Rosedale,LA,70772,225-776-7032,W,M,D,300,12/31/2012,01/01/2009,Mayor Badeaux -Chief of Police ,City of St. Gabriel ,5035 Iberville St.,,St. Gabriel,LA,70776,225-642-9600,IBERVILLE,"Kevin ""Butchie"" Ambeau",P.O. Box 33,,Carville,LA,70721,225-642-0444,B,M,D,305,06/30/2011,07/01/2007,Chief Ambeau -Chief of Police ,Town of Maringouin ,P. O. Box 10,,Maringouin,LA,70757-0010 ,225-625-2630,IBERVILLE,"John ""Big John"" Simien",P.O. Box 202,,Maringouin,LA,70757,225-892-6409,B,M,D,305,12/31/2010,01/01/2007,Mr. Simien -Chief of Police ,Town of White Castle ,P. O. Box 488,,White Castle,LA,70788,225-545-3012,IBERVILLE,Mario D. Brown,P.O. Box 279,,White Castle,LA,70788,225-545-8844,B,M,D,305,12/31/2010,01/01/2007,Mr. Brown -Chief of Police ,Village of Grosse Tete ,P. O. Box 98,,Grosse Tete,LA,70740,225-648-2131,IBERVILLE,"""Tommy"" Dardenne",18070 Bayou Rd.,,Grosse Tete,LA,70740,225-648-2148,W,M,D,305,12/31/2012,01/01/2009,Chief Dardenne -Chief of Police ,Village of Rosedale ,P. O. Box 167,,Rosedale,LA,70772,225-648-2333,IBERVILLE,"""Mike"" Sparks",P.O. Box 411,,Rosedale,LA,70772,225-648-2815,W,M,D,305,12/31/2012,01/01/2009,Chief Sparks -Marshal ,City of Plaquemine ,P. O. Box 675,,Plaquemine,LA,70765,225-687-3661,IBERVILLE,Orian Gulotta,58040 Main St.,,Plaquemine,LA,70764,225-687-4943,W,M,D,305,12/31/2012,01/01/2009,Mr. Gulotta -Alderman ,"Division A, Village of Rosedale ",P. O. Box 167,,Rosedale,LA,70772,225-648-2333,IBERVILLE,Kevin Gantt,16345 Sidney Rd.,,Rosedale,LA,70772,225-648-2374,W,M,D,310,12/31/2012,01/01/2009,Mr. Gantt -Alderman ,"Division B, Village of Rosedale ",P. O. Box 167,,Rosedale,LA,70772,225-648-2333,IBERVILLE,"Randel ""Panco"" Badeaux",P.O. Box 322,,Rosedale,LA,70772,225-485-3444,W,M,D,310,12/31/2012,01/01/2009,Mr. Badeaux -Alderman ,"Division C, Village of Rosedale ",P. O. Box 167,,Rosedale,LA,70772,225-648-2333,IBERVILLE,Dana Nereaux Alexander,16195 Deer Buck Run,,Rosedale,LA,70772,225-343-0759,W,F,O,310,12/31/2012,01/01/2009,Ms. Alexander -Alderman ,Town of Maringouin ,P. O. Box 10,,Maringouin,LA,70757-0010 ,225-625-2630,IBERVILLE,"Kirkland Anderson, Sr.",P.O. Box 684,,Maringouin,LA,70757,225-625-3530,B,M,D,310,12/31/2010,01/01/2007,Mr. Anderson -Alderman ,Town of Maringouin ,P. O. Box 10,,Maringouin,LA,70757-0010 ,225-625-2630,IBERVILLE,"Samuel C. ""Sammy"" Collura",P.O. Box 413,,Maringouin,LA,70757,225-625-2159,W,M,D,310,12/31/2010,01/01/2007,Mr. Collura -Alderman ,Town of Maringouin ,P. O. Box 10,,Maringouin,LA,70757-0010 ,225-625-2630,IBERVILLE,"Edward James, Jr.",P.O. Box 103,,Maringouin,LA,70757,225-405-8021,B,M,D,310,12/31/2010,01/01/2007,Mr. James -Alderman ,Town of Maringouin ,P. O. Box 10,,Maringouin,LA,70757-0010 ,225-625-2630,IBERVILLE,Demi Vorise,P.O. Box 697,,Maringouin,LA,70757,225-625-2057,B,F,D,310,12/31/2010,01/01/2007,Ms. Vorise -Alderman ,Town of Maringouin ,P. O. Box 10,,Maringouin,LA,70757-0010 ,225-625-2630,IBERVILLE,Charles E. Wright,P.O. Box 403,,Maringouin,LA,70757,225-625-3433,B,M,D,310,12/31/2010,01/01/2007,Mr. Wright -Alderman ,Town of White Castle ,P. O. Box 488,,White Castle,LA,70788,225-545-3012,IBERVILLE,"John ""Plug"" Barlow",32565 Willow St.,,White Castle,LA,70788,225-545-4017,W,M,D,310,12/31/2010,01/01/2007,Mr. Barlow -Alderman ,Town of White Castle ,P. O. Box 488,,White Castle,LA,70788,225-545-3012,IBERVILLE,"Erick ""Duck"" Batiste",32415 Doc Dean St.,,White Castle,LA,70788,225-545-3307,B,M,,310,12/31/2010,01/01/2007,Mr. Batiste -Alderman ,Town of White Castle ,P. O. Box 488,,White Castle,LA,70788,225-545-3012,IBERVILLE,"Jonathan ""Jon-Kris"" Greene",32345 Ray St.,,White Castle,LA,70788,225-328-5099,B,M,D,310,12/31/2010,01/01/2007,Mr. Greene -Alderman ,Town of White Castle ,P. O. Box 488,,White Castle,LA,70788,225-545-3012,IBERVILLE,"Gerald ""Jermarr"" Williams",32750 Bowie St.,,White Castle,LA,70788,225-776-2265,B,M,D,310,12/31/2010,01/01/2007,Mr. Williams -Alderman ,Town of White Castle ,P. O. Box 488,,White Castle,LA,70788,225-545-3012,IBERVILLE,Garnell Young,P.O. Box 353,,White Castle,LA,70788,225-545-8623,B,M,D,310,12/31/2010,01/01/2007,Mr. Young -Alderman ,Village of Grosse Tete ,P. O. Box 98,,Grosse Tete,LA,70740,225-648-2131,IBERVILLE,Kyle Booksh,P.O. Box 325,,Grosse Tete,LA,70740,225-648-2974,W,M,R,310,12/31/2012,01/01/2009,Mr. Booksh -Alderman ,Village of Grosse Tete ,P. O. Box 98,,Grosse Tete,LA,70740,225-648-2131,IBERVILLE,C. Richard David,18005 Sidney Rd.,,Grosse Tete,LA,70740,225-648-2977,W,M,R,310,12/31/2012,01/01/2009,Mr. David -Alderman ,Village of Grosse Tete ,P. O. Box 98,,Grosse Tete,LA,70740,225-648-2131,IBERVILLE,Juanita J. Hill,P.O. Box 223,,Grosse Tete,LA,70740,225-648-2443,B,F,D,310,12/31/2012,01/01/2009,Ms. Hill -Council Member,City of St. Gabriel,P. O. Box 389,,Plaquemine,LA,70765,225-642-9600,IBERVILLE,"Deborah R. ""Debbie"" Alexander",P.O. Box 562,,St. Gabriel,LA,70776,225-642-0391,B,F,D,310,06/30/2011,07/01/2007,Ms. Alexander -Council Member,City of St. Gabriel,P. O. Box 389,,Plaquemine,LA,70765,225-642-9600,IBERVILLE,Flora J. Danielfield,4975 Maryland St.,,St. Gabriel,LA,70776,225-319-2192,B,F,D,310,06/30/2011,07/01/2007,Ms. Danielfield -Council Member,City of St. Gabriel,P. O. Box 389,,Plaquemine,LA,70765,225-642-9600,IBERVILLE,"Freddie ""Carl"" Frazier, Sr.",P.O. Box 42,,St. Gabriel,LA,70776,225-642-0037,B,M,D,310,06/30/2011,07/01/2007,Mr. Frazier -Council Member,City of St. Gabriel,P. O. Box 389,,Plaquemine,LA,70765,225-642-9600,IBERVILLE,"Melvin L. Hasten, Sr.",P.O. Box 54,,Carville,LA,70721,225-319-2244,B,M,D,310,06/30/2011,07/01/2007,Mr. Hasten -Council Member,City of St. Gabriel,P. O. Box 389,,Plaquemine,LA,70765,225-642-9600,IBERVILLE,"Ralph ""Big Guy"" Johnson",4907 Landry St.,,St. Gabriel,LA,70776,225-572-4883,B,M,D,310,06/30/2011,07/01/2007,Mr. Johnson -Selectman ,"District I, City of Plaquemine ",P. O. Box 675,,Plaquemine,LA,70765,225-687-3661,IBERVILLE,"Lindon A. ""Lin"" Rivet, Jr.",23160 Short St.,,Plaquemine,LA,70764,225-687-9417,W,M,D,310,12/31/2012,01/01/2009,Mr. Rivet -Selectman ,"District II, City of Plaquemine ",P. O. Box 675,,Plaquemine,LA,70765,225-687-3661,IBERVILLE,Oscar S. Mellion,P.O. Box 265,,Plaquemine,LA,70765,504-416-1254,B,M,D,310,12/31/2012,01/01/2009,Mr. Mellion -Selectman ,"District III, City of Plaquemine ",P. O. Box 675,,Plaquemine,LA,70765,225-687-3661,IBERVILLE,"Ralph Stassi, Jr.",58330 Elm St.,,Plaquemine,LA,70764,225-687-6231,W,M,D,310,12/31/2012,01/01/2009,Mr. Stassi -Selectman ,"District IV, City of Plaquemine ",P. O. Box 675,,Plaquemine,LA,70765,225-687-3661,IBERVILLE,"Michael ""Mickey"" Rivet",58455 Canal St.,,Plaquemine,LA,70764,225-954-6462,W,M,D,310,12/31/2012,01/01/2009,Mr. Rivet -Selectman ,"District V, City of Plaquemine ",P. O. Box 675,,Plaquemine,LA,70765,225-687-3661,IBERVILLE,"Timothy L. ""Timmy"" Martinez",59115 Laurstin Ln.,,Plaquemine,LA,70764,225-687-6648,W,M,D,310,12/31/2012,01/01/2009,Mr. Martinez -Selectman ,"District VI, City of Plaquemine ",P. O. Box 675,,Plaquemine,LA,70765,225-687-3661,IBERVILLE,"Jimmie ""Fatboy"" Randle",23920 Baytown St.,,Plaquemine,LA,70764,225-687-4814,B,M,D,310,12/31/2012,01/01/2009,Mr. Randle -DPEC Member ,at Large ,,,,LA,,,JACKSON,Bobby L. Culpepper,4500 Walker Rd.,,Jonesboro,LA,71251,318-259-4184,W,M,D,054,02/20/2012,02/20/2008,Mr. Culpepper -DPEC Member ,District 1 ,,,,LA,,,JACKSON,,,,,,,,,,,056 -DPEC Member ,District 2 ,,,,LA,,,JACKSON,,,,,,,,,,,056 -DPEC Member ,District 3 ,,,,LA,,,JACKSON,,,,,,,,,,,056 -DPEC Member ,District 4 ,,,,LA,,,JACKSON,,,,,,,,,,,056 -DPEC Member ,District 5 ,,,,LA,,,JACKSON,,,,,,,,,,,056 -DPEC Member ,District 6 ,,,,LA,,,JACKSON,,,,,,,,,,,056 -DPEC Member ,District 7 ,,,,LA,,,JACKSON,,,,,,,,,,,056 -RPEC Member ,at Large ,,,,LA,,,JACKSON,"""Dusty"" Hampton",116 Ave. B,,Jonesboro,LA,71251,318-259-6677,W,M,R,064,02/20/2012,02/20/2008,Mr. Hampton -RPEC Member ,at Large ,,,,LA,,,JACKSON,Robin Potts,257 Firewood Rd.,,Jonesboro,LA,71251,318-259-2245,W,F,R,064,02/20/2012,02/20/2008,Mr. Potts -RPEC Member ,at Large ,,,,LA,,,JACKSON,"Benton ""Ben"" Young",1300 E. Main St.,,Jonesboro,LA,71251,318-259-8323,W,M,R,064,02/20/2012,02/20/2008,Mr. Young -RPEC Member ,Ward 1 ,,,,LA,,,JACKSON,,,,,,,,,,,066 -RPEC Member ,Ward 2 ,,,,LA,,,JACKSON,,,,,,,,,,,066 -RPEC Member ,Ward 3 ,,,,LA,,,JACKSON,,,,,,,,,,,066 -RPEC Member ,Ward 4 ,,,,LA,,,JACKSON,,,,,,,,,,,066 -RPEC Member ,Ward 5 ,,,,LA,,,JACKSON,Roger Young,114 Southeastern Dr.,,Jonesboro,LA,71251,318-395-2211,W,M,R,066,02/20/2012,02/20/2008,Mr. Young -RPEC Member ,Ward 6 ,,,,LA,,,JACKSON,,,,,,,,,,,066 -RPEC Member ,Ward 7 ,,,,LA,,,JACKSON,Robert Rubens,110 Michigan Ave.,,Jonesboro,LA,71251,318-259-4186,W,M,R,066,02/20/2012,02/20/2008,Mr. Rubens -Sheriff ,,"500 E. Court St., Rm. 100",,Jonesboro,LA,71251,318-259-9021,JACKSON,"""Andy"" Brown","500 E. Court St., Rm. 100",,Jonesboro,LA,71251,318-259-8758,W,M,D,225,06/30/2012,07/01/2008,Sheriff Brown -Clerk of Court ,,P. O. Box 730,,Jonesboro,LA,71251,318-259-2424,JACKSON,Ann B. Walsworth,P.O. Box 730,,Jonesboro,LA,71251,318-259-3561,W,F,D,230,06/30/2012,07/01/2008,Ms. Walsworth -Assessor ,,"500 E. Court, Rm. 101",,Jonesboro,LA,71251,318-259-2151,JACKSON,Eddie G. Gatlin,1231 Hwy 813-3,,Jonesboro,LA,71251,318-259-7461,W,M,D,235,12/31/2012,01/01/2009,Mr. Gatlin -Coroner ,,236 Hwy. 505,,Jonesboro,LA,71251,318-259-4106,JACKSON,"""Bill"" Staples",236 Hwy 505,,Jonesboro,LA,71251,318-259-2764,W,M,D,240,03/25/2012,03/24/2008,Mr. Staples -Police Juror ,Ward 1 ,"500 East Court Street, Rm. 301",,Jonesboro,LA,,318-259-2361,JACKSON,"""Tom"" Goss",P.O. Box 341,,Quitman,LA,71268,318-259-8091,W,M,R,245,01/08/2012,01/14/2008,Mr. Goss -Police Juror ,Ward 2 ,"500 East Court Street, Rm. 301",,Jonesboro,LA,71251,318-259-2361,JACKSON,Eddie Langston,770 Taylor Rd.,,Jonesboro,LA,71251,318-259-7448,W,M,D,245,01/08/2012,01/14/2008,Mr. Langston -Police Juror ,Ward 3 ,"500 East Court Street, Rm. 301",,Jonesboro,LA,71251,318-259-2361,JACKSON,Kent Hightower,275 Hickory Ln.,,,LA,71251,318-259-8340,W,M,,245,01/08/2012,01/14/2008,Mr. Hightower -Police Juror ,Ward 4 ,"500 East Court Street, Rm. 301",,Jonesboro,LA,71251,318-259-2361,JACKSON,"Nathaniel Zeno, Jr.",1407 Leon Dr.,,Jonesboro,LA,71251,318-259-4741,B,M,D,245,01/08/2012,01/14/2008,Mr. Zeno -Police Juror ,Ward 5 ,"500 East Court Street, Rm. 301",,Jonesboro,LA,71251,318-259-2361,JACKSON,Maxie Faye Monroe,802 Leon Dr.,,Jonesboro,LA,71251,318-259-7948,B,F,D,245,01/08/2012,01/14/2008,Ms. Monroe -Police Juror ,Ward 6 ,"500 East Court Street, Rm. 301",,Jonesboro,LA,71251,318-259-2361,JACKSON,"Ray Duck, Jr.",256 Traina Rd.,,Jonesboro,LA,71251,318-395-2056,W,M,D,245,01/08/2012,01/14/2008,Mr. Duck -Police Juror ,Ward 7 ,"500 East Court Street, Rm. 301",,Jonesboro,LA,71251,318-259-2361,JACKSON,Troy L. Smith,P.O. Box 793,,Hodge,LA,71247,318-259-8753,W,M,D,245,01/08/2012,01/14/2008,Mr. Smith -Member of School Board ,District 1 ,P. O. Box 705,,Jonesboro,LA,71251,318-259-4456,JACKSON,"""Bart"" Waggoner",2274 Hwy. 548,,Eros,LA,71238,318-249-2261,W,M,D,255,12/31/2010,01/01/2007,Mr. Waggoner -Member of School Board ,District 2 ,P. O. Box 705,,Jonesboro,LA,71251,318-259-4456,JACKSON,Melissa Watts Perry,699 Taylor Rd.,,Jonesboro,LA,71251,318-259-3599,W,F,R,255,12/31/2010,01/01/2007,Ms. Perry -Member of School Board ,District 3 ,P. O. Box 705,,Jonesboro,LA,71251,318-259-4456,JACKSON,"Mary ""May"" Saulters",240 Country Ln.,,Quitman,LA,71268,318-395-9562,W,F,R,255,12/31/2010,01/01/2007,Ms. Saulters -Member of School Board ,District 4 ,P. O. Box 705,,Jonesboro,LA,71251,318-259-4456,JACKSON,Gerry Mims,P.O. Box 1008,,Hodge,LA,71247,318-259-4229,B,M,D,255,12/31/2010,01/01/2007,Mr. Mims -Member of School Board ,District 5 ,P. O. Box 705,,Jonesboro,LA,71251,318-259-4456,JACKSON,Harvey T. Robinson,321 Morocco St.,,Jonesboro,LA,71251,318-259-3880,B,M,D,255,12/31/2010,01/01/2007,Mr. Robinson -Member of School Board ,District 6 ,P. O. Box 705,,Jonesboro,LA,71251,318-259-4456,JACKSON,Dennis Clary,156 Pine Hill Rd.,,Quitman,LA,71268,318-259-6330,W,M,R,255,12/31/2010,01/01/2007,Mr. Clary -Member of School Board ,District 7 ,P. O. Box 705,,Jonesboro,LA,71251,318-259-4456,JACKSON,Wade McBride,213 Jan Circle,,Jonesboro,LA,71251,318-259-9695,W,M,D,255,12/31/2010,10/27/2009,Mr. McBride -Justice of the Peace ,Justice of the Peace District A ,884 N. Antioch,,Quitman,LA,71268,318-259-7492,JACKSON,David Smith,884 North Antioch Rd.,,Quitman,LA,71268,318-259-7492,W,M,D,265,12/31/2014,01/01/2009,Mr. Smith -Justice of the Peace ,Justice of the Peace District B ,1138 Rosco Rd.,,Quitman,LA,71268,318-259-9442,JACKSON,Milton S. Bryant,1138 Roscoe Rd.,,Quitman,LA,71268,318-259-9442,B,M,,265,12/31/2014,01/01/2009,Mr. Bryant -Justice of the Peace ,Justice of the Peace District C ,P. O. Box 148,,Chatham,LA,71226,318-249-2200,JACKSON,Martha Chambless,6665 Hwy. 34,,Chatham,LA,71226,318-249-2200,W,F,D,265,12/31/2014,01/01/2009,Ms. Chambless -Justice of the Peace ,Justice of the Peace District D ,P. O. Box 880,,Hodge,LA,71247,318-259-8773,JACKSON,Buiel L. Magee,P. O. Box 880,,Hodge,LA,71247,318-259-8773,W,M,R,265,12/31/2014,01/01/2009,Mr. Magee -Justice of the Peace ,Justice of the Peace District E ,227 Talbot St.,,Jonesboro,LA,71251,318-259-7772,JACKSON,Sharon L. Satcher,P. O. Box 585,,Jonesboro,LA,71251,318-259-9736,B,F,D,265,12/31/2014,01/01/2009,Ms. Satcher -Constable ,Justice of the Peace District A ,6126 Beech Springs Rd.,,Quitman,LA,71268,318-259-9286,JACKSON,Claude McMillan,6126 Beech Springs Rd.,,Quitman,LA,71268,318-259-9286,W,M,D,267,12/31/2014,01/01/2009,Mr. McMillan -Constable ,Justice of the Peace District B ,2037 Vernon Eros Rd.,,Ruston,LA,71270,318-249-4158,JACKSON,Emma Jones,2037 Vernon-Eros Rd.,,Ruston,LA,71270,318-249-4158,W,F,R,267,12/31/2014,01/01/2009,Ms. Jones -Constable ,Justice of the Peace District C ,P.O. Box 148,,Chatham,LA,71226,318-249-2200,JACKSON,Wayne Mosley,P. O. Box 244,,Chatham,LA,71226,318-249-2402,W,M,R,267,12/31/2014,01/01/2009,Mr. Mosley -Constable ,Justice of the Peace District D ,210 Jan Cir.,,Jonesboro,LA,71251,318-259-3278,JACKSON,Wilfred Foster,210 Jans Cir.,,Jonesboro,LA,71251,318-259-3278,W,M,R,267,12/31/2014,01/01/2009,Mr. Foster -Constable ,Justice of the Peace District E ,1200 Maple St.,,Jonesboro,LA,71251,318-259-7867,JACKSON,John R. Williams,1200 Maple St.,,Jonesboro,LA,71251,318-259-7867,B,M,D,267,12/31/2014,01/01/2009,Mr. Williams -Mayor ,Town of Chatham ,P. O. Box 7,,Chatham,LA,,318-249-2541,JACKSON,Herman Lenard,P. O. Box 159,,Chatham,LA,71226,318-249-4619,W,M,D,300,12/31/2012,01/01/2009,Mayor Lenard -Mayor,Town of Eros,P. O. Drawer 200,,Eros,LA,71238,318-249-2183,JACKSON,"Candace ""Candy"" Myers",P. O. Box 14,,Eros,LA,71238,318-249-2236,W,F,,300,12/31/2012,01/01/2009,Ms. Myers -Mayor ,Town of Jonesboro ,P. O. Box 610,,Jonesboro,LA,,318-259-2385,JACKSON,Leslie Thompson,101 Holly Dr.,,Jonesboro,LA,71251,318-259-4772,B,M,D,300,12/31/2010,01/01/2007,Ms. Thompson -Mayor ,Village of East Hodge ,P. O. Drawer 10,,East Hodge,LA,,318-259-9127,JACKSON,Fred Ford,P.O. Box 55,,East Hodge,LA,71247,318-259-1009,B,M,D,300,12/31/2010,01/01/2007,Mr. Ford -Mayor ,Village of Hodge ,P. O. Drawer 280,,Hodge,LA,,318-259-4704,JACKSON,Quenton Causey,P.O. Box 415,,Hodge,LA,71247,318-259-7930,W,M,D,300,12/31/2010,01/01/2007,Mr. Causey -Mayor ,Village of North Hodge ,P. O. Box 520,,North Hodge,LA,,318-259-4272,JACKSON,Geraldine Causey,P.O. Box 492,,Hodge,LA,71247,318-259-9144,W,F,D,300,12/31/2010,01/01/2007,Ms. Causey -Mayor ,Village of Quitman ,P. O. Box 35,,Quitman,LA,,318-259-8014,JACKSON,Joe Vail,P.O. Box 103,,Quitman,LA,71268,318-259-9193,W,M,D,300,12/31/2010,01/01/2007,Mayor Vail -Chief of Police ,Town of Chatham ,P. O. Box 7,,Chatham,LA,71226,318-249-2541,JACKSON,"""Mike"" Wilson",P. O. Box 435,,Chatham,LA,71226,318-245-0536,W,M,D,305,12/31/2012,01/01/2009,Chief Wilson -Chief of Police ,Town of Eros ,P. O. Box 200,,Eros,LA,71238,318-249-2183,JACKSON,Glen Tullos,P. O. Box 190,,Eros,LA,71238,318-376-5577,W,M,,305,12/31/2012,01/01/2009,Chief Tullos -Chief of Police ,Town of Jonesboro ,P. O. Box 610,,Jonesboro,LA,71251-0610 ,318-259-2385,JACKSON,Wesley Horton,937 Walker Rd.,,Jonesboro,LA,71251,318-259-8855,W,M,D,305,12/31/2010,01/01/2007,Mr. Horton -Chief of Police ,Village of East Hodge ,P. O. Drawer 10,,East Hodge,LA,71247,318-259-9127,JACKSON,"Simmie T. ""Slim"" Brown",P.O. Box 1745,,Hodge,LA,71247,318-259-3223,B,M,D,305,12/31/2010,01/01/2007,Mr. Brown -Chief of Police ,Village of Hodge ,P. O. Drawer 280,,Hodge,LA,71247,318-259-4704,JACKSON,Johnny Shively,P.O. Box 1636,,Hodge,LA,71247,318-395-0700,W,M,D,305,12/31/2010,01/01/2007,Mr. Shively -Chief of Police ,Village of North Hodge ,P. O. Box 632,,North Hodge,LA,71247,318-259-4272,JACKSON,Phillip Moffett,P.O. Box 865,,North Hodge,LA,71247,318-259-1431,W,M,O,305,12/31/2010,01/01/2007,Mr. Moffitt -Chief of Police ,Village of Quitman ,P. O. Box 35,,Quitman,LA,71268,318-259-8014,JACKSON,Donald E. Comer,240 Church Rd.,,Quitman,LA,71268,318-259-2921,W,M,D,305,12/31/2010,01/01/2007,Chief Comer -Alderman at Large ,Town of Jonesboro ,,,,LA,,,JACKSON,Randy Shows,128 Hickory St.,,Jonesboro,LA,71251,318-259-8490,W,M,D,308,12/31/2010,01/01/2007,Mr. Shows -Alderman ,"District A, Town of Jonesboro ",P. O. Box 610,,Jonesboro,LA,71251-0610 ,318-259-2385,JACKSON,"""Randy"" Layfield",116 Wood St.,,Jonesboro,LA,71251,318-259-9170,W,M,R,310,12/31/2010,01/01/2007,Mr. Layfield -Alderman ,"District B, Town of Jonesboro ",P. O. Box 610,,Jonesboro,LA,71251-0610 ,318-259-2385,JACKSON,Renee Stringer,P.O. Box 417,,Jonesboro,LA,71251,318-259-6281,W,F,R,310,12/31/2010,01/01/2007,Ms. Stringer -Alderman ,"District C, Town of Jonesboro ",P. O. Box 610,,Jonesboro,LA,71251-0610 ,318-259-2385,JACKSON,"Aaron ""Pete"" Stringer",712 Johnson St.,,Jonesboro,LA,71251,318-395-9176,B,M,D,310,12/31/2010,01/01/2007,Mr. Stringer -Alderman ,"District D, Town of Jonesboro ",P. O. Box 610,,Jonesboro,LA,71251-0610 ,318-259-2385,JACKSON,Terry L. Wiley,374 Terrace Hill Dr.,,Jonesboro,LA,71251,318-259-2544,B,M,D,310,12/31/2010,01/01/2007,Mr. Wiley -Alderman ,Town of Chatham ,P. O. Box 7,,Chatham,LA,71226,318-249-2541,JACKSON,Claudean M. Cartwright,12398 Hwy. 4,,Chatham,LA,71226,318-376-0736,W,F,R,310,12/31/2012,01/01/2009,Ms. Cartwright -Alderman ,Town of Chatham ,P. O. Box 7,,Chatham,LA,71226,318-249-2541,JACKSON,"""Toni"" Malone",P. O. Box 86,,Chatham,LA,71226,318-249-3693,W,F,R,310,12/31/2012,01/01/2009,Ms. Malone -Alderman ,Town of Chatham ,P. O. Box 7,,Chatham,LA,71226,318-249-2541,JACKSON,Laverne Mixon,P. O. Box 252,,Chatham,LA,71226,318-249-2796,B,F,D,310,12/31/2012,01/01/2009,Ms. Mixon -Alderman ,Town of Chatham ,P. O. Box 7,,Chatham,LA,71226,318-249-2541,JACKSON,Sue Proffer,P. O. Box 394,,Chatham,LA,71226,318-249-2667,W,F,,310,12/31/2012,01/01/2009,Ms. Proffer -Alderman ,Town of Chatham ,P. O. Box 7,,Chatham,LA,71226,318-249-2541,JACKSON,Frances B. Womack,P. O. Box 314,,Chatham,LA,71226,318-249-2327,W,F,R,310,12/31/2012,01/01/2009,Ms. Womack -Alderman ,Town of Eros ,P. O. Box 200,,Eros,LA,71238,318-249-2183,JACKSON,Elizabeth Irene Baugh,P. O. Box 11,,Eros,LA,71238,318-249-2320,W,F,O,310,12/31/2012,01/01/2009,Ms. Baugh -Alderman ,Town of Eros ,P. O. Box 200,,Eros,LA,71238,318-249-2183,JACKSON,Amy Costin,P. O. Box 147,,Eros,LA,71238,318-249-2116,W,F,O,310,12/31/2012,01/01/2009,Ms. Costin -Alderman ,Town of Eros ,P. O. Box 200,,Eros,LA,71238,318-249-2183,JACKSON,"Melba Creech, ",1107 Third St.,,Eros,LA,71238-8722,318-249-3354,W,F,N,310,,02/15/2010 -Alderman ,Town of Eros ,P. O. Box 200,,Eros,LA,71238,318-249-2183,JACKSON,"Melba Jean Creech, ",1107 Third St.,,Eros,LA,71238,318-249-3354,,,,310,,01/04/2010,Ms. Creech -Alderman ,Town of Eros ,P. O. Box 200,,Eros,LA,71238,318-249-2183,JACKSON,Glenda Tullos,P. O. Box 68,,Eros,LA,71238,318-249-2531,W,F,O,310,12/31/2012,01/01/2009,Ms. Tullos -Alderman ,Town of Eros ,P. O. Box 200,,Eros,LA,71238,318-249-2183,JACKSON,"""Bill"" Wheelis",P. O. Box 190,,Eros,LA,71238,318-249-4799,W,M,,310,12/31/2012,01/01/2009,Mr. Wheelis -Alderman ,Village of East Hodge ,P. O. Drawer 10,,East Hodge,LA,71247,318-259-9127,JACKSON,Dorothy Flowers Jones,P.O. Box 913,,East Hodge,LA,71247,318-259-7085,B,F,D,310,12/31/2010,01/01/2007,Ms. Jones -Alderman ,Village of East Hodge ,P. O. Drawer 10,,East Hodge,LA,71247,318-259-9127,JACKSON,Hal M. Mims,P.O. Box 306,,Hodge,LA,71247,318-259-1051,B,M,D,310,12/31/2010,01/01/2007,Mr. Sims -Alderman ,Village of East Hodge ,P. O. Drawer 10,,East Hodge,LA,71247,318-259-9127,JACKSON,Preston Traxler,P.O. Box 813,,East Hodge,LA,71247,318-259-2181,B,M,D,310,12/31/2010,01/01/2007,Mr. Traxler -Alderman ,Village of Hodge ,P. O. Drawer 280,,Hodge,LA,71247,318-259-4704,JACKSON,"James C. ""Jimmy"" Culpepper",P.O. Box 285,,Hodge,LA,71247,318-259-4383,W,M,D,310,12/31/2010,01/01/2007,Mr. Culpepper -Alderman ,Village of Hodge ,P. O. Drawer 280,,Hodge,LA,71247,318-259-4704,JACKSON,Randal Harrington,P.O. Box 13,,Hodge,LA,71247,318-259-3566,W,M,D,310,12/31/2010,01/01/2007,Mr. Harrington -Alderman ,Village of Hodge ,P. O. Drawer 280,,Hodge,LA,71247,318-259-4704,JACKSON,Carla Smith,P.O. Box 793,,Hodge,LA,71247,318-259-8753,W,F,R,310,12/31/2010,01/01/2007,Ms. Smith -Alderman ,Village of North Hodge ,P. O. Box 632,,North Hodge,LA,71247,318-259-4272,JACKSON,Sarah Allen Fitzpatrick,P.O. Box 58,,North Hodge,LA,71247,318-259-7736,,,O,310,12/31/2010,01/01/2007,Ms. Fitzpatrick -Alderman ,Village of North Hodge ,P. O. Box 632,,North Hodge,LA,71247,318-259-4272,JACKSON,Travis Hall,5517 Quitman Hwy.,,Hodge,LA,71247,318-259-3138,W,M,R,310,12/31/2010,01/01/2007,Mr. Hall -Alderman ,Village of North Hodge ,P. O. Box 632,,North Hodge,LA,71247,318-259-4272,JACKSON,David D. Womack,136 West Second St.,,Quitman,LA,71268,318-259-9609,W,M,R,310,12/31/2010,01/01/2007,Mr. Womack -Alderman ,Village of Quitman ,P. O. Box 35,,Quitman,LA,71268,318-259-8014,JACKSON,William Culpepper,P.O. Box 323,,Quitman,LA,71268,318-259-6268,W,M,D,310,12/31/2010,01/01/2007,Mr. Culpepper -Alderman ,Village of Quitman ,P. O. Box 35,,Quitman,LA,71268,318-259-8014,JACKSON,Sylvia J. Pagan,P.O. Box 305,,Quitman,LA,71268,318-259-7785,W,F,D,310,12/31/2010,01/01/2007,Ms. Pagan -Alderman ,Village of Quitman ,P. O. Box 35,,Quitman,LA,71268,318-259-8014,JACKSON,James H. Trull,246 Church Rd.,,Quitman,LA,71268,318-259-3090,W,M,,310,12/31/2010,01/01/2007,Mr. Trull -DPEC Member ,at Large ,,,,LA,,,JEFFERSON,Leonard M. Berins,3944 Uri St.,,Metairie,LA,70002,504-455-9544,W,M,D,054,02/20/2012,02/20/2008,Mr. Berins -DPEC Member ,at Large ,,,,LA,,,JEFFERSON,R. Stephen Johnson,928 Champagne Dr.,,Kenner,LA,70065,504-390-2677,,,D,054,02/20/2012,02/20/2008,Mr. Johnson -DPEC Member ,at Large ,,,,LA,,,JEFFERSON,Brent A. Klibert,1809 Elizabeth Ave.,,Metairie,LA,70005,504-451-4777,W,M,D,054,02/20/2012,02/20/2008,Mr. Klibert -DPEC Member ,at Large ,,,,LA,,,JEFFERSON,David Quidd,6220 Riverside Dr. Unit 588,,Metairie,LA,70003,504-722-8537,W,M,D,054,02/20/2012,02/20/2008,Mr. Quidd -DPEC Member ,at Large ,,,,LA,,,JEFFERSON,Arleeta Terrell,7801 Nevada St.,,Metairie,LA,70003,,B,F,D,054,02/20/2012,02/20/2008,Ms. Terrell -DPEC Member ,District 1 ,,,,LA,,,JEFFERSON,Leatrice Hollis,3021 Hampton Dr.,,Harvey,LA,70058,,,,,056,,08/19/2008 -DPEC Member ,District 1 ,,,,LA,,,JEFFERSON,Paul Pearson,4029 Briant Dr.,,Marrero,LA,70072,,,,,056,,03/17/2009,Mr. Pearson -DPEC Member ,District 2 ,,,,LA,,,JEFFERSON,Anthony Behan,424 Stratford Dr.,,Harahan,LA,70123,,,,,056,,03/17/2009,Mr. Behan -DPEC Member ,District 2 ,,,,LA,,,JEFFERSON,Glenn Green,218 Ave. A,,Westwego,LA,70094,504-328-7043,,,D,056,02/20/2012,02/20/2008,Mr. Green -DPEC Member ,District 2 ,,,,LA,,,JEFFERSON,Barbara Lassalle,425 Riverdale Dr.,,Jefferson,LA,70121,,,,,056,,05/19/2008 -DPEC Member ,District 2 ,,,,LA,,,JEFFERSON,Kennith J. Lassalle,425 Riverdale Dr.,,Jefferson,LA,70121,,,,,056,,05/19/2008 -DPEC Member ,District 2 ,,,,LA,,,JEFFERSON,Robert Reed,127 Highway Dr.,,Jefferson,LA,70121,504-232-5074,W,M,D,056,02/20/2012,02/20/2008,Mr. Reed -DPEC Member ,District 3 ,,,,LA,,,JEFFERSON,Michele' P. Holmes,204 Chapel Ln.,,Avondale,LA,70094,,,,,056,,07/15/2008 -DPEC Member ,District 3 ,,,,LA,,,JEFFERSON,Wilma W. Irvin,715 Daniel St.,,Kenner,LA,70062,,,,,056,,03/17/2009,Ms. Irvin -DPEC Member ,District 3 ,,,,LA,,,JEFFERSON,Paul Johnson,4057 S. Windmere St.,,Harvey,LA,70058,,,,,056,,08/19/2008 -DPEC Member ,District 3 ,,,,LA,,,JEFFERSON,Eric Thompson,916 Silver Lilly,,Marrero,LA,70072,,,,,056,,08/19/2008 -DPEC Member ,District 4 ,,,,LA,,,JEFFERSON,Donald Blum,1512 Colony Rd.,,Metairie,LA,70003,504-885-8610,W,M,D,056,02/20/2012,02/20/2008,Mr. Blum -DPEC Member ,District 4 ,,,,LA,,,JEFFERSON,Robert Marrero,4161 Cognac Dr.,,Kenner,LA,70065,504-464-6778,W,M,D,056,02/20/2012,02/20/2008,Mr. Marrero -DPEC Member ,District 4 ,,,,LA,,,JEFFERSON,"M. V. ""Vinny"" Mendoza",3510 Ole Miss Dr.,,Kenner,LA,70065,504-913-3971,O,M,D,056,02/20/2012,02/20/2008,Mr. Mendoza -DPEC Member ,District 4 ,,,,LA,,,JEFFERSON,Gilda Reed,1108 N. Starrett Rd.,,Metairie,LA,70003,,,,,056,,05/19/2008 -DPEC Member ,District 5 ,,,,LA,,,JEFFERSON,Michael M. Davis,P.O. Box 6764,,Metairie,LA,70009,504-835-2114,W,M,D,056,02/20/2012,02/20/2008,Mr. Davis -DPEC Member ,District 5 ,,,,LA,,,JEFFERSON,David Gereighty,2932 Ridgeway Dr.,,Metairie,LA,70002,504-831-9576,W,M,D,056,02/20/2012,02/20/2008,Mr. Gereighty -DPEC Member ,District 5 ,,,,LA,,,JEFFERSON,"Fred ""Ed"" Matthew",310 Metairie Heights Ave.,,Metairie,LA,70002,504-450-7666,W,M,D,056,02/20/2012,02/20/2008,Mr. Matthew -DPEC Member ,District 5 ,,,,LA,,,JEFFERSON,Jenny Nee,1341 Wisteria Dr.,,Metairie,LA,70005,504-259-0031,W,F,D,056,02/20/2012,02/20/2008,Ms. Nee -DPEC Member ,District 5 ,,,,LA,,,JEFFERSON,"Raymond ""Ray"" Waguespack",1908 Division St.,,Metairie,LA,70001,504-723-5402,W,M,D,056,02/20/2012,02/20/2008,Mr. Waguespack -DPEC Member ,District 6 ,,,,LA,,,JEFFERSON,,,,,,,,,,,056 -RPEC Member ,at Large ,,,,LA,,,JEFFERSON,Betty Bonura,1009 Chateau Lafitte Dr.,,Kenner,LA,70065,504-467-7402,W,F,R,064,02/20/2012,02/20/2008,Ms. Bonura -RPEC Member ,at Large ,,,,LA,,,JEFFERSON,"""Bob"" DeViney",3730 Jean Place,,Metairie,LA,70002,504-258-9373,W,M,R,064,02/20/2012,02/20/2008,Mr. Deviney -RPEC Member ,at Large ,,,,LA,,,JEFFERSON,John F. LaBruzzo,1427 Choctaw Ave.,,Metairie,LA,70005,504-838-4449,W,M,R,064,02/20/2012,02/20/2008,Mr. LaBruzzo -RPEC Member ,at Large ,,,,LA,,,JEFFERSON,"""Polly"" Thomas",3230 Metairie Crt.,,Metairie,LA,70002,504-833-7727,W,F,R,064,02/20/2012,02/20/2008,Ms. Thomas -RPEC Member ,at Large ,,,,LA,,,JEFFERSON,John S. Treen,112 Charleston Park,,Metairie,LA,70005,504-835-6636,W,M,R,064,02/20/2012,02/20/2008,Mr. Treen -RPEC Member ,District 1 ,,,,LA,,,JEFFERSON,"""Billy"" Arnold",2283 S. Von Braun Ct.,,Harvey,LA,70058,504-368-4292,W,M,R,066,02/20/2012,02/20/2008 -RPEC Member ,District 1 ,,,,LA,,,JEFFERSON,"Frank J. Borne, Jr.",2685 Highland Dr. West,,Gretna,LA,70056,504-394-0321,W,M,R,066,02/20/2012,02/20/2008,Mr. Borne: -RPEC Member ,District 1 ,,,,LA,,,JEFFERSON,Cherreen H. Gegenheimer,440 Timberlane Dr.,,Gretna,LA,70056,504-361-5366,W,F,R,066,02/20/2012,02/20/2008,Ms. Gegenheimer -RPEC Member ,District 1 ,,,,LA,,,JEFFERSON,Stephen Leonard,1916 Carol Sue Ave.,,Terrytown,LA,70056,,W,M,R,066,02/20/2012,02/20/2008,Mr. Leonard -RPEC Member ,District 1 ,,,,LA,,,JEFFERSON,"James A. ""Tripp"" Rabalais",328 Fairfield Ave.,,Gretna,LA,70056,504-368-7363,W,M,R,066,02/20/2012,02/20/2008,Mr. Rabalais -RPEC Member ,District 2 ,,,,LA,,,JEFFERSON,Howard Bennett,9811 Elm Pl.,,River Ridge,LA,70123,504-737-1471,W,M,R,066,02/20/2012,02/20/2008,Mr. Bennett -RPEC Member ,District 2 ,,,,LA,,,JEFFERSON,Paul D. Johnston,525 Kenmore Dr.,,Harahan,LA,70123,504-737-4345,W,M,R,066,02/20/2012,02/20/2008,Mr. Johnston -RPEC Member ,District 2 ,,,,LA,,,JEFFERSON,"""Bert"" Leblanc",1220 Orchid Dr.,,Harvey,LA,70058,504-340-5267,W,M,R,066,02/20/2012,02/20/2008,Mr. LeBlanc -RPEC Member ,District 2 ,,,,LA,,,JEFFERSON,"Provino ""Vinny"" Mosca",7212 Stoneleigh Dr.,,Harahan,LA,70123,504-738-3994,W,M,R,066,02/20/2012,02/20/2008,Mr. Mosca -RPEC Member ,District 2 ,,,,LA,,,JEFFERSON,"""Tim"" Walker",30 West Imperial Dr.,,Harahan,LA,70123,504-737-7327,W,M,R,066,02/20/2012,02/20/2008,Mr. Walker -RPEC Member ,District 3 ,,,,LA,,,JEFFERSON,"Matthew M. Cervini, Sr.",49 Aster Ln.,,Waggaman,LA,70094,504-628-3329,W,M,R,066,02/20/2012,02/20/2008 -RPEC Member ,District 3 ,,,,LA,,,JEFFERSON,"Louis J. Duffourc, Sr.",339 Buttercup Dr.,,Waggaman,LA,70094,,W,M,R,066,02/20/2012,02/20/2008 -RPEC Member ,District 3 ,,,,LA,,,JEFFERSON,Charles Gennaro,6535 River Rd.,,Waggaman,LA,70094,504-436-3959,W,M,R,066,02/20/2012,02/20/2008,Mr. Gennaro -RPEC Member ,District 3 ,,,,LA,,,JEFFERSON,Nicholas Muniz,3720 Burntwood Dr.,,Harvey,LA,70058,504-347-2516,W,M,R,066,02/20/2012,02/20/2008,Mr. Muniz -RPEC Member ,District 3 ,,,,LA,,,JEFFERSON,"James H. ""Jimmy"" Stevens, Jr.",100 Stevens Pl.,,River Ridge,LA,70123,504,W,M,R,066,02/20/2012,02/20/2008,Mr. Stevens -RPEC Member ,District 4 ,,,,LA,,,JEFFERSON,Vincent J. Bruno,729 Champaigne Dr.,,Kenner,LA,70065,504-319-7262,W,M,R,066,02/20/2012,02/20/2008,Mr. Bruno -RPEC Member ,District 4 ,,,,LA,,,JEFFERSON,"Philip L. ""Phil"" Capitano",4041 Teche Dr.,,Kenner,LA,70065,504-466-5767,W,M,R,066,02/20/2012,02/20/2008,Mr. Capitano -RPEC Member ,District 4 ,,,,LA,,,JEFFERSON,Marie M. Clesi,1100 Vintage Dr.,,Kenner,LA,70065,504-469-4268,W,F,R,066,02/20/2012,02/20/2008,Ms. Clesi -RPEC Member ,District 4 ,,,,LA,,,JEFFERSON,Kevin S. Delahoussaye,7 Traminer Dr.,,Kenner,LA,70065,504-465-9069,W,M,R,066,02/20/2012,02/20/2008,Mr. Delahoussaye -RPEC Member ,District 4 ,,,,LA,,,JEFFERSON,Jack Rizzuto,4525 Rebecca Dr.,,Metairie,LA,70002,504-888-4125,W,M,R,066,02/20/2012,02/20/2008,Mr. Rizzuto -RPEC Member ,District 5 ,,,,LA,,,JEFFERSON,Daniel I. Caplan,4712 N. Turnbull Dr.,,Metairie,LA,70002,504-888-5050,W,M,R,066,02/20/2012,02/20/2008,Mr. Caplan -RPEC Member ,District 5 ,,,,LA,,,JEFFERSON,"William B. Faust, III",4205 N. Turnbull Dr.,,Metairie,LA,70002,504-455-2834,W,M,R,066,02/20/2012,02/20/2008,Mr. Faust -RPEC Member ,District 5 ,,,,LA,,,JEFFERSON,"""Ray"" Muniz",4212 Caldwell St.,,Metairie,LA,70001,504-455-1527,W,M,R,066,02/20/2012,02/20/2008,Mr. Muniz -RPEC Member ,District 5 ,,,,LA,,,JEFFERSON,Eric Skrmetta,P.O. Box 55896,,Metairie,LA,70055,504-650-0642,W,M,R,066,02/20/2012,02/20/2008,Mr. Skrmetta -RPEC Member ,District 5 ,,,,LA,,,JEFFERSON,"Robert ""Coach Bob"" Stevens",3716 North Woodlawn Ave.,,Metairie,LA,70006,504-454-3421,W,M,R,066,02/20/2012,02/20/2008,Mr. Stevens -RPEC Member ,District 6 ,,,,LA,,,JEFFERSON,,,,,,,,,,,066 -Judge ,"1st Parish Court, Division A ",924 David Dr.,,Metairie,LA,70003,504-736-8913,JEFFERSON,Rebecca M. Olivier,7920 Ferrara Dr.,,Harahan,LA,70123,504-739-9933,W,F,R,220,12/31/2014,01/01/2009,Judge Olivier -Judge ,"1st Parish Court, Division B ",924 David Dr.,,Metairie,LA,70003,504-736-8977,JEFFERSON,George W. Giacobbe,5513 David Dr.,,Kenner,LA,70065,504-889-2476,W,M,R,220,12/31/2014,01/01/2009,Judge Giacobbe -Judge ,"2nd Parish Court, Division A ",100 Huey P. Long Ave.,,Gretna,LA,70053,504-364-2800,JEFFERSON,Roy M. Cascio,73 Marie Dr.,,Gretna,LA,70053,504-637-5577,W,M,D,220,12/31/2014,01/01/2009,Judge Cascio -Judge ,"2nd Parish Court, Division B ",100 Huey P. Long Ave.,,Gretna,LA,70053,504-364-2800,JEFFERSON,"Stephen ""Steve"" Grefer",29 Derbes Dr.,,Gretna,LA,70053,504-304-6648,W,M,R,220,12/31/2014,01/01/2009,Judge Grefer -Judge ,"Juvenile Court, Section A ",P. O. Box 1900,,Harvey,LA,70059,504-367-3500,JEFFERSON,Ann Murry Keller,P.O. Box 1900,,Harvey,LA,70059,504-367-3500,W,F,R,220,12/31/2014,01/01/2009,Judge Keller -Judge ,"Juvenile Court, Section B ",P. O. Box 1900,,Harvey,LA,70059,504-367-3500,JEFFERSON,Andrea Price Janzen,302 Southern Rd.,,River Ridge,LA,70123,504-737-0244,W,F,R,220,12/31/2014,01/01/2009,Judge Janzen -Judge ,"Juvenile Court, Section C ",P. O. Box 1900,,Harvey,LA,70059,504-367-3500,JEFFERSON,Nancy Amato Konrad,333 Rue St. Ann,,Metairie,LA,70005,504-835-2909,W,F,R,220,12/31/2014,01/01/2009,Judge Konrad -Sheriff ,,P. O. Box 327,,Gretna,LA,70054,504-363-5701,JEFFERSON,Newell D. Normand,P.O. Box 327,,Gretna,LA,70054,504-363-5725,W,M,R,225,06/30/2012,07/01/2008,Sheriff Normand -Clerk of Court ,,P. O. Box 10,,Gretna,LA,70054,504-364-2900,JEFFERSON,Jon A. Gegenheimer,P.O. Box 10,,Gretna,LA,70054,504-361-5366,W,M,R,230,06/30/2012,07/01/2008,Mr. Gegenheimer -Assessor ,,"200 Derbigny, Ste. 1100",,Gretna,LA,70053,504-362-4100,JEFFERSON,Lawrence E. Chehardy,183 Sauve Rd.,,River Ridge,LA,70123,504-737-9692,W,M,R,235,12/31/2012,01/01/2009,Mr. Chehardy -Coroner ,,2018 8th Street,,Harvey,LA,70058,504-365-9100,JEFFERSON,Robert E. Treuting,33 Waverly Place,,Metairie,LA,70003,504-455-1117,W,M,D,240,03/25/2012,03/24/2008,Mr. Treuting -Parish President ,,P.O. Box 9,,Gretna,LA,70054,504-364-2626,JEFFERSON,"Steve J. Theriot, ",P.O. Box 9,,Gretna,LA,70054,,,,,243,,01/13/2010,Mr. Theriot -Councilman at Large ,Division A ,P. O. Box 9,,Gretna,LA,70054,504-364-2626,JEFFERSON,"John F. Young, Jr.","609 Metairie Rd., #300",,Metairie,LA,70005,504-352-8855,W,M,R,244,01/03/2012,01/09/2008,Mr. Young -Councilman at Large ,Division B ,P. O. Box 9,,Gretna,LA,70054,504-364-2626,JEFFERSON,Thomas J. Capella,4928 Jasper St.,,Metairie,LA,70006,504-885-9883,W,M,R,244,01/03/2012,01/09/2008,Mr. Capella -Councilman ,District 1 ,P. O. Box 9,,Gretna,LA,,504-364-2626,JEFFERSON,"""Chris"" Roberts",2149 Hyde Park Ave. East,,Harvey,LA,70058,504-263-0530,W,M,D,245,01/03/2012,01/09/2008,Mr. Roberts -Councilman ,District 2 ,P. O. Box 9,,Gretna,LA,70054,504-364-2626,JEFFERSON,Elton Manard Lagasse,"200 Derbigny St., Ste. 6300",,Gretna,LA,70053,504-364-3446,W,M,R,245,01/03/2012,01/10/2008,Mr. Legasse -Councilman ,District 3 ,P. O. Box 9,,Gretna,LA,70054,504-364-2626,JEFFERSON,Byron Lee,40 Gainswood Dr. E.,,Marrero,LA,70072,504-364-2603,B,M,D,245,01/03/2012,01/09/2008,Mr. Lee -Councilman ,District 4 ,P. O. Box 9,,Gretna,LA,70054,504-364-2626,JEFFERSON,Louis J. Congemi,21 Palmetto,,Kenner,LA,70065,504-464-7017,W,M,R,245,01/03/2012,01/09/2008,Mr. Congemi -Councilman ,District 5 ,P. O. Box 9,,Gretna,LA,70054,504-364-2626,JEFFERSON,Cynthia Lee-Sheng,1405 Hesper Ave.,,Metairie,LA,70003,504-828-9746,O,F,R,245,01/03/2012,04/14/2009,Ms. Lee-Sheng -Member of School Board ,District 1 ,501 Manhattan Blvd.,,Harvey,LA,70058,504-349-7802,JEFFERSON,Mark C. Morgan,1106 Amelia St.,,Gretna,LA,70053,504-231-9238,W,M,D,255,12/31/2010,01/01/2007,Mr. Morgan -Member of School Board ,District 2 ,4600 River Road,,Marrero,LA,70072,504-349-7802,JEFFERSON,Etta S. Licciardi,5602 A Jean Lafitte Blvd.,,Lafitte,LA,70067,504-233-1200,W,F,R,255,12/31/2010,01/01/2007,Ms. Licciardi -Member of School Board ,District 3 ,4600 River Road,,Marrero,LA,70072,504-349-7802,JEFFERSON,Raymond R. St. Pierre,2816 Villa Dr.,,Marrero,LA,70072,504-344-9115,W,M,R,255,12/31/2010,01/01/2007,Mr. St. Pierre -Member of School Board ,District 4 ,4600 River Road,,Marrero,LA,70072,504-349-7802,JEFFERSON,Glenn W. Hayes,P.O. Box 1847,,Metairie,LA,70004,504-838-8974,W,M,R,255,12/31/2010,02/23/2009,Mr. Hayes -Member of School Board ,District 5 ,4600 River Road,,Marrero,LA,70072,504-349-7802,JEFFERSON,Cedric Floyd,P.O. Box 141,,Kenner,LA,70063,504-464-7011,B,M,D,255,12/31/2010,10/14/2008,Mr. Floyd -Member of School Board ,District 6 ,4600 River Road,,Marrero,LA,70072,504-349-7802,JEFFERSON,Martin B. Marino,1321 Pecan Ave.,,Metairie,LA,70001,504-455-2436,W,M,R,255,12/31/2010,01/01/2007,Mr. Marino -Member of School Board ,District 7 ,4600 River Road,,Marrero,LA,70072,504-349-7802,JEFFERSON,"""Libby"" L. Moran",8917 Belle Grove Pl.,,River Ridge,LA,70123,504-737-8050,W,F,R,255,12/31/2010,01/01/2007,Ms. Moran -Member of School Board ,District 8 ,4600 River Road,,Marrero,LA,70072,504-349-7802,JEFFERSON,Judy M. Colgan,4905 Elmwood Pkwy.,,Metairie,LA,70003,504-885-4982,W,F,R,255,12/31/2010,01/01/2007,Ms. Colgan -Member of School Board ,District 9 ,4600 River Road,,Marrero,LA,70072,504-349-7802,JEFFERSON,"Eugene R. ""Gene"" Katsanis",8 Chateau Magdelaine Dr.,,Kenner,LA,70065,,W,M,R,255,12/31/2010,01/01/2007,Mr. Katsanis -Justice of the Peace ,1st Justice Court ,941 Marlene Dr.,,Gretna,LA,70056,504-393-0032,JEFFERSON,"Vernon J. Wilty, III",941 Marlene Dr.,,Gretna,LA,70056,504-393-0032,W,M,D,265,12/31/2014,01/01/2009,Mr. Wilty -Justice of the Peace ,2nd Justice Court ,2701 Cedar Lawn Dr.,,Marrero,LA,70072,504-340-7458,JEFFERSON,Patrick DeJean,1637 Gulizo Dr.,,Marrero,LA,70072,504-324-3442,W,M,D,265,12/31/2014,01/01/2009,Mr. DeJean -Justice of the Peace ,3rd Justice Court ,P. O. Box 444,,Lafitte,LA,70067,504-689-4106,JEFFERSON,Charlie R. Kerner,P.O. Box 444,,Lafitte,LA,70067,504-689-4106,W,M,D,265,12/31/2014,01/01/2009,Mr. Kerner -Justice of the Peace ,4th Justice Court ,P. O. Box 812,,Grand Isle,LA,70358,985-787-2301,JEFFERSON,"Leon F. Bradberry, Jr.",P.O. Box 121,,Grand Isle,LA,70358,985-787-4767,W,M,,265,12/31/2014,01/01/2009,Mr. Bradberry -Justice of the Peace ,5th Justice Court ,2111 Harvard Ave.,,Metairie,LA,70001,504-838-4295,JEFFERSON,"Charles V. ""Chuck"" Cusimano, II",3705 N. Labarre Rd.,,Metairie,LA,70002,504-834-2630,W,M,R,265,12/31/2014,01/01/2009,Mr. Cusimano -Justice of the Peace ,6th Justice Court ,3016 Texas Ave.,,Kenner,LA,70065,504-466-7984,JEFFERSON,Kevin J. Centanni,3016 Texas Ave.,,Kenner,LA,70065,504-443-3238,W,M,R,265,12/31/2014,01/01/2009,Mr. Centanni -Justice of the Peace ,7th Justice Court ,405 George St.,,Avondale,LA,70094,504-436-3133,JEFFERSON,Eugene Fitchue,405 George St.,,Avondale,LA,70094,504-436-3133,B,M,D,265,12/31/2014,01/01/2009,Mr. Fitchue -Justice of the Peace ,8th Justice Court ,9014 Rousseau St.,,Kenner,LA,70065,,JEFFERSON,"Roscoe W. Lewis, Sr.",9014 Rousseau St.,,Kenner,LA,70062,504-466-5931,B,M,D,265,12/31/2014,01/01/2009,Mr. Lewis -Constable ,1st Justice Court ,1809 Cooper Rd.,,Terrytown,LA,70056,504-367-3491,JEFFERSON,Jonathan Liberto,300-D Terry Pkwy.,,Terrytown,LA,70056,504-339-7012,W,M,D,267,12/31/2014,01/01/2009,Mr. Liberto -Constable ,2nd Justice Court ,31 Shadows Court,,Marrero,LA,70072,504-347-1206,JEFFERSON,"Antoine J. ""Tony"" Thomassie",4116 Barataria Blvd.,,Marrero,LA,70072,504-347-1206,W,M,D,267,12/31/2014,01/01/2009,Mr. Thomassie -Constable ,3rd Justice Court ,2884 Privateer Blvd.,,Barataria,LA,70036,504-689-3179,JEFFERSON,"Albert T. Creppel, Sr.",2884 Privateer Blvd.,,Barataria,LA,70036,504-689-3179,W,M,D,267,12/31/2014,01/01/2009,Mr. Creppel -Constable ,4th Justice Court ,P.O. Box 356,,Grand Isle,LA,70358,504-787-2272,JEFFERSON,"Leon F. Bradberry, Sr.",P.O. Box 356,,Grand Isle,LA,70358,985-787-2273,W,M,,267,12/31/2014,01/01/2009,Mr. Bradberry -Constable ,5th Justice Court ,212 Atherton Dr.,,Metairie,LA,70005,504-833-9290,JEFFERSON,Dan E. Civello,212 Atherton Dr.,,Metairie,LA,70005,504-833-9290,W,M,R,267,12/31/2014,01/01/2009,Mr. Civello -Constable ,6th Justice Court ,312 Sophia St.,,River Ridge,LA,70123,504-737-9196,JEFFERSON,"E.J. ""Joe"" Bourgeois",312 Sophia St.,,River Ridge,LA,70123,504-737-9196,W,M,R,267,12/31/2014,01/01/2009,Mr. Bourgeois -Constable ,7th Justice Court ,105 Prairie View Court,,Avondale,LA,70094,504-436-7494,JEFFERSON,"James D. Cooper, Sr.",105 Prairieview Ct.,,Avondale,LA,70094,504-436-7494,B,M,D,267,12/31/2014,01/01/2009,Mr. Cooper -Constable ,8th Justice Court ,3139 Augusta St.,,Kenner,LA,70065,504-469-6760,JEFFERSON,Charles Wilson,3033 Ohio St.,,Kenner,LA,70065,504-512-1426,B,M,D,267,12/31/2014,01/01/2009,Mr. Wilson -Mayor ,City of Gretna ,P. O. Box 404,,Gretna,LA,,504-363-1500,JEFFERSON,Ronnie C. Harris,210 Lafayette St.,,Gretna,LA,70053,504-366-8747,W,M,D,300,06/30/2013,07/01/2009,Mayor Harris -Mayor ,City of Harahan ,6437 Jefferson Hwy.,,Harahan,LA,,504-737-6383,JEFFERSON,Paul D. Johnston,525 Kenmore Dr.,,Harahan,LA,70123,504-737-4345,W,M,R,300,12/31/2010,01/01/2007,Mr. Johnston -Mayor ,City of Kenner ,1801 Williams Blvd.,,Kenner,LA,,504-468-7254,JEFFERSON,"Edmond J. ""Ed"" Muniz",58 Chateau Latour Dr.,,Kenner,LA,70065,504-466-5958,W,M,R,300,06/30/2010,07/01/2006,Mayor Muniz -Mayor ,City of Westwego ,419 Avenue A,,Westwego,LA,,504-341-3424,JEFFERSON,"John I. ""Johnny"" Shaddinger, Jr.",312 Avenue B,,Westwego,LA,70094,504-348-4021,W,M,D,300,06/30/2013,07/01/2009,Mayor Shaddinger -Mayor ,Town of Grand Isle ,P. O. Box 200,,Grand Isle,LA,,985-787-3196,JEFFERSON,David Camardelle,P.O. Box 215,,Grand Isle,LA,70358,504-382-3573,W,M,D,300,06/30/2012,07/01/2008,Mayor Camardelle -Mayor ,Town of Jean Lafitte ,2654 Jean Lafitte Blvd.,,Lafitte,LA,,504-689-2208,JEFFERSON,Timothy P. Kerner,1156 Jean Lafitte Blvd.,,Lafitte,LA,70067,504-689-3540,W,M,D,300,06/30/2011,07/01/2007,Mayor Kerner -Chief of Police ,City of Gretna ,P. O. Box 404,,Gretna,LA,70054,504-363-1500,JEFFERSON,"Arthur S. Lawson, Jr.",20 Derbes Dr.,,Gretna,LA,70053,504-363-1700,W,M,D,305,06/30/2013,07/01/2009,Chief Lawson -Chief of Police ,City of Harahan ,6437 Jefferson Hwy.,,Harahan,LA,70123,504-737-6383,JEFFERSON,Peter Dale,7813 Seventh St.,,Harahan,LA,70123,504-736-2608,W,M,R,305,12/31/2010,01/01/2007,Mr. Dale -Chief of Police ,City of Kenner ,1801 Williams Blvd.,,Kenner,LA,70062,504-468-7254,JEFFERSON,"""Steve"" Caraway",705 Carmenere Dr.,,Kenner,LA,70065,504-466-2617,W,M,R,305,06/30/2010,07/01/2006,Mr. Caraway -Chief of Police ,City of Kenner ,1801 Williams Blvd.,,Kenner,LA,70062,504-468-7254,JEFFERSON,"""Steve"" Caraway, ",705 Carmenere Dr.,,Kenner,LA,70065-1109,504-466-2617,W,M,R,305 -Chief of Police ,City of Westwego ,419 Avenue A,,Westwego,LA,70094,504-341-3424,JEFFERSON,"Dwayne ""Poncho"" Munch",1257 Barbe Dr.,,Westwego,LA,70094,504-324-5903,W,M,R,305,06/30/2013,07/01/2009,Chief Munch -Chief of Police ,Town of Grand Isle ,P. O. Box 200,,Grand Isle,LA,70358,985-787-3196,JEFFERSON,Euris DuBois,1036 Hwy. 1,,Grand Isle,LA,70358,985-787-2324,W,M,D,305,06/30/2012,07/01/2008,Chief DuBois -Chief of Police ,Town of Jean Lafitte ,2654 Jean Lafitte Blvd.,,Lafitte,LA,70067,504-689-2208,JEFFERSON,Mary Jo Hargis,4971 Evelynn Dr.,,Lafitte,LA,70067,504-689-3408,W,F,D,305,06/30/2011,07/01/2007,Chief Hargis -Councilman at Large ,"Division A, City of Kenner ",1801 Williams Blvd.,,Kenner,LA,70062,504-468-7254,JEFFERSON,Michele P. Branigan,126 W. Esplanade Ave.,,Kenner,LA,70065,504-467-2979,W,F,R,308,06/30/2010,07/01/2006,Mr. Branigan -Councilman at Large ,"Division B, City of Kenner ",1801 Williams Blvd.,,Kenner,LA,70062,504-468-7254,JEFFERSON,"""Jeannie"" M. Black",3624 Lake Trail Dr.,,Kenner,LA,70065,504-455-1980,W,F,R,308,06/30/2010,07/01/2006,Ms. Black -Councilman at Large ,"Division B, City of Kenner ",1801 Williams Blvd.,,Kenner,LA,70062,504-468-7254,JEFFERSON,"""Jeannie"" M. Black, ",3624 Lake Trail Dr.,,Kenner,LA,70065-3312,504-455-1980,W,F,R,308 -Council Member ,"District 1, City of Westwego ",419 Avenue A,,Westwego,LA,70094,504-341-3424,JEFFERSON,Glenn Green,218 Avenue A,,Westwego,LA,70094,504-259-3694,B,M,D,310,06/30/2013,07/01/2009,Mr. Green -Council Member ,"District 2, City of Gretna ",P. O. Box 404,,Gretna,LA,70054,504-363-1500,JEFFERSON,"Belinda Cambre Constant, ",720 Huey P. Long Ave.,,Gretna,LA,70053-6126,504-382-8023,W,F,D,310,,02/15/2010 -Council Member ,"District 2, City of Westwego ",419 Avenue A,,Westwego,LA,70094,504-341-3424,JEFFERSON,Ted J. Munch,611 Chipley St.,,Westwego,LA,70094,504-442-1199,W,M,D,310,,07/01/2009,Mr. Munch -Council Member ,"District 3, City of Gretna ",P. O. Box 404,,Gretna,LA,70054,504-363-1500,JEFFERSON,"Vincent E. Cox, III",82 Mason Ave.,,Gretna,LA,70053-7025,504-361-0810,W,M,D,310,,02/15/2010 -Council Member ,"District 3, City of Westwego ",419 Avenue A,,Westwego,LA,70094,504-341-3424,JEFFERSON,Ivy Rogers,1101 Barbe Dr.,,Westwego,LA,70094,504-347-1368,W,M,D,310,06/30/2013,07/01/2009,Mr. Rogers -Council Member ,"District 4, City of Gretna ",P. O. Box 404,,Gretna,LA,70054,504-363-1500,JEFFERSON,"Raylyn Beevers, ",155 Linda Ct.,,Gretna,LA,70053-4959,504-361-4287,W,F,D,310,,02/15/2010 -Council Member ,"District 4, City of Westwego ",419 Avenue A,,Westwego,LA,70094,504-341-3424,JEFFERSON,Melvin Guidry,1161 Avenue C,,Westwego,LA,70094,504-347-6020,W,M,D,310,,07/01/2009,Mr. Guidry -Council Member ,"District 5, City of Westwego ",419 Avenue A,,Westwego,LA,70094,504-341-3424,JEFFERSON,Larry J. Warino,808 Avenue H,,Westwego,LA,70094,504-340-4638,W,M,,310,06/30/2013,07/01/2009,Mr. Warino -Council Member ,"Seat A, Town of Grand Isle ",P. O. Box 200,,Grand Isle,LA,70358,985-787-3196,JEFFERSON,Ray A. Santiny,P.O. Box 325,,Grand Isle,LA,70358,985-787-3211,W,M,D,310,06/30/2012,07/01/2008,Mr. Santiny -Council Member ,"Seat B, Town of Grand Isle ",P. O. Box 200,,Grand Isle,LA,70358,985-787-3196,JEFFERSON,"""Jay"" Lafont",P.O. Box 27,,Grand Isle,LA,70358,985-787-2641,W,M,D,310,06/30/2012,07/01/2008,Mr. Lafont -Council Member ,"Seat C, Town of Grand Isle ",P. O. Box 200,,Grand Isle,LA,70358,985-787-3196,JEFFERSON,"Clifford ""Dixie"" Santiny",3679 Highway 1,,Grand Isle,LA,70358,504-382-8602,W,M,R,310,06/30/2012,07/01/2008,Mr. Santiny -Council Member ,"Seat D, Town of Grand Isle ",P. O. Box 200,,Grand Isle,LA,70358,985-787-3196,JEFFERSON,"Stephen ""Scooter"" Resweber",P.O. Box 665,,Grand Isle,LA,70358,985-637-8056,W,M,D,310,06/30/2012,07/01/2008,Mr. Resweber -Council Member ,"Seat E, Town of Grand Isle ",P. O. Box 200,,Grand Isle,LA,70358,985-787-3196,JEFFERSON,Leoda Bladsacker,P.O. Box 881,,Grand Isle,LA,70358,985-787-2999,W,F,D,310,06/30/2012,07/01/2008,Ms. Bladsacker -Council Member at Large ,City of Gretna ,P. O. Box 404,,Gretna,LA,70054,504-363-1500,JEFFERSON,Wayne A. Rau,936 Lafayette St.,,Gretna,LA,70053,504-366-3893,W,M,D,310,06/30/2013,07/01/2009,Mr. Rau -Councilman ,City of Harahan ,6437 Jefferson Hwy.,,Harahan,LA,70123,504-737-6383,JEFFERSON,Timothy Baudier,184 Oakland Ave.,,Harahan,LA,70123,504-734-3278,W,M,R,310,12/31/2010,10/14/2008,Mr. Baudier -Councilman ,City of Harahan ,6437 Jefferson Hwy.,,Harahan,LA,70123,504-737-6383,JEFFERSON,Lawrence Landry,#11 Colonial Club Dr.,,Harahan,LA,70123,504-738-9677,W,M,R,310,12/31/2010,01/01/2007,Mr. Landry -Councilman ,City of Harahan ,6437 Jefferson Hwy.,,Harahan,LA,70123,504-737-6383,JEFFERSON,"Provino ""Vinny"" Mosca",7212 Stoneleigh Dr.,,Harahan,LA,70123,504-738-3994,W,M,R,310,12/31/2010,01/01/2007,Mr. Mosca -Councilman ,City of Harahan ,6437 Jefferson Hwy.,,Harahan,LA,70123,504-737-6383,JEFFERSON,Cindy Murray,125 Glenwood Ave,,Harahan,LA,70123,504-737-1683,W,F,R,310,12/31/2010,01/01/2007,Ms. Murray -Councilman ,City of Harahan ,6437 Jefferson Hwy.,,Harahan,LA,70123,504-737-6383,JEFFERSON,Tiffany Scot Wilken,812 Gordon Ave.,,Harahan,LA,70123,504-738-6406,W,F,R,310,12/31/2010,01/01/2007,Ms. Wilken -Councilman ,"District 1, City of Kenner ",1801 Williams Blvd.,,Kenner,LA,70062,504-468-7254,JEFFERSON,"Gregory W. Carroll, ",1915 Short St.,,Kenner,LA,70062-7549,504-469-1376,B,M,D,310 -Councilman ,"District 1, City of Kenner ",1801 Williams Blvd.,,Kenner,LA,70062,504-468-7254,JEFFERSON,"Gregory W. Carroll, ",1915 Short St.,,Kenner,LA,70065,504-782-3404,B,M,D,310,06/30/2010,11/24/2009,Mr. Carroll -Councilman ,"District 2, City of Kenner ",1801 Williams Blvd.,,Kenner,LA,70062,504-468-7254,JEFFERSON,Joe Stagni,1700 Taylor St.,,Kenner,LA,70062,504-467-9641,,,,310,06/30/2010,07/01/2006,Mr. Stagni -Councilman ,"District 3, City of Kenner ",1801 Williams Blvd.,,Kenner,LA,70062,504-468-7254,JEFFERSON,"""Ben"" Zahn, ",4328 Colorado Ave.,,Kenner,LA,70065-1324,504-464-0793,W,M,R,310 -Councilman ,"District 3, City of Kenner ",1801 Williams Blvd.,,Kenner,LA,70062,504-468-7254,JEFFERSON,"E.B. ""Ben"" Zahn, III",4328 Colorado Ave.,,Kenner,LA,70065,504-464-0791,W,M,R,310,06/30/2010,07/01/2006 -Councilman ,"District 4, City of Kenner ",1801 Williams Blvd.,,Kenner,LA,70062,504-468-7254,JEFFERSON,Maria DeFrancesch,20 Monte Carlo Dr.,,Kenner,LA,70065,504-467-1585,W,F,R,310,06/30/2010,07/01/2006,Ms. Defrancesch -Councilman ,"District 5, City of Kenner ",1801 Williams Blvd.,,Kenner,LA,70062,504-468-7254,JEFFERSON,Kent Denapolis,1801 Williams Blvd.,,Kenner,LA,70062,504-468-7520,W,M,R,310,06/30/2010,07/01/2006,Mr. Denapolis -Councilman ,Town of Jean Lafitte ,2654 Jean Lafitte Blvd.,,Lafitte,LA,70067,504-689-2208,JEFFERSON,Barry Bartholomew,2654 Jean Lafitte Blvd.,,Lafitte,LA,70067,,,,,310,,09/09/2009,Mr. Bartholomew -Councilman ,Town of Jean Lafitte ,2654 Jean Lafitte Blvd.,,Lafitte,LA,70067,504-689-2208,JEFFERSON,"Barry D. Bartholomew, ",1940 Jean Lafitte Blvd.,,Lafitte,LA,70067-3630,504-689-4720,W,M,D,310,,02/15/2010 -Councilman ,Town of Jean Lafitte ,2654 Jean Lafitte Blvd.,,Lafitte,LA,70067,504-689-2208,JEFFERSON,Christy Creppel,5128 Matherne St.,,Lafitte,LA,70067,504-481-7179,W,F,D,310,06/30/2011,07/01/2007,Ms. Creppel -Councilman ,Town of Jean Lafitte ,2654 Jean Lafitte Blvd.,,Lafitte,LA,70067,504-689-2208,JEFFERSON,Shirley Guillie,624 Jean Lafitte Blvd.,,Lafitte,LA,70067,504-689-5432,W,F,D,310,06/30/2011,07/01/2007,Ms. Guille -Councilman ,Town of Jean Lafitte ,2654 Jean Lafitte Blvd.,,Lafitte,LA,70067,504-689-2208,JEFFERSON,"Calvin ""Butch"" Lebeau",2072 Camille Ct.,,Lafitte,LA,70067,504-689-2288,W,M,D,310,06/30/2011,07/01/2007,Mr. Lebeau -Councilman ,Town of Jean Lafitte ,2654 Jean Lafitte Blvd.,,Lafitte,LA,70067,504-689-2208,JEFFERSON,"Verna ""Teta"" Smith",2761 Couevas St.,,Lafitte,LA,70067,504-689-4521,W,F,D,310,06/30/2011,07/01/2007,Ms. Smith -DPEC Member ,at Large ,,,,LA,,,JEFFERSON DAVIS,Michael C. Cassidy,603 Lucy St.,,Jennings,LA,70546,337-824-0315,W,M,D,054,02/20/2012,02/20/2008,Mr. Cassidy -DPEC Member ,District 1 ,,,,LA,,,JEFFERSON DAVIS,,,,,,,,,,,056 -DPEC Member ,District 2 ,,,,LA,,,JEFFERSON DAVIS,,,,,,,,,,,056 -DPEC Member ,District 3 ,,,,LA,,,JEFFERSON DAVIS,,,,,,,,,,,056 -DPEC Member ,District 4 ,,,,LA,,,JEFFERSON DAVIS,,,,,,,,,,,056 -DPEC Member ,District 5 ,,,,LA,,,JEFFERSON DAVIS,,,,,,,,,,,056 -DPEC Member ,District 6 ,,,,LA,,,JEFFERSON DAVIS,,,,,,,,,,,056 -DPEC Member ,District 7 ,,,,LA,,,JEFFERSON DAVIS,,,,,,,,,,,056 -DPEC Member ,District 8 ,,,,LA,,,JEFFERSON DAVIS,,,,,,,,,,,056 -DPEC Member ,District 9 ,,,,LA,,,JEFFERSON DAVIS,,,,,,,,,,,056 -DPEC Member ,District 10 ,,,,LA,,,JEFFERSON DAVIS,,,,,,,,,,,056 -DPEC Member ,District 11 ,,,,LA,,,JEFFERSON DAVIS,,,,,,,,,,,056 -DPEC Member ,District 12 ,,,,LA,,,JEFFERSON DAVIS,,,,,,,,,,,056 -DPEC Member ,District 13 ,,,,LA,,,JEFFERSON DAVIS,,,,,,,,,,,056 -RPEC Member ,at Large ,,,,LA,,,JEFFERSON DAVIS,,,,,,,,,,,064 -RPEC Member ,District 1 ,,,,LA,,,JEFFERSON DAVIS,,,,,,,,,,,066 -RPEC Member ,District 2 ,,,,LA,,,JEFFERSON DAVIS,Fred Schlesinger,821 N. Hwy. 26,,Lake Arthur,LA,70549-3407,337-774-2213,W,M,R,066,02/20/2012,02/20/2008,Mr. Schlesinger -RPEC Member ,District 3 ,,,,LA,,,JEFFERSON DAVIS,,,,,,,,,,,066 -RPEC Member ,District 4 ,,,,LA,,,JEFFERSON DAVIS,Charles C. Achane,P. O. Box 963,,Jennings,LA,70546,337-296-8580,B,M,R,066,02/20/2012,02/20/2008,Mr. Achane -RPEC Member ,District 5 ,,,,LA,,,JEFFERSON DAVIS,,,,,,,,,,,066 -RPEC Member ,District 6 ,,,,LA,,,JEFFERSON DAVIS,,,,,,,,,,,066 -RPEC Member ,District 7 ,,,,LA,,,JEFFERSON DAVIS,,,,,,,,,,,066 -RPEC Member ,District 8 ,,,,LA,,,JEFFERSON DAVIS,,,,,,,,,,,066 -RPEC Member ,District 9 ,,,,LA,,,JEFFERSON DAVIS,,,,,,,,,,,066 -RPEC Member ,District 10 ,,,,LA,,,JEFFERSON DAVIS,,,,,,,,,,,066 -RPEC Member ,District 11 ,,,,LA,,,JEFFERSON DAVIS,,,,,,,,,,,066 -RPEC Member ,District 12 ,,,,LA,,,JEFFERSON DAVIS,,,,,,,,,,,066 -RPEC Member ,District 13 ,,,,LA,,,JEFFERSON DAVIS,,,,,,,,,,,066 -Sheriff ,,P. O. Box 1449,,Jennings,LA,70546,337-821-2100,JEFFERSON DAVIS,"Richard ""Ricky"" Edwards, Jr.",P.O. Box 1449,,Jennings,LA,70546,337-824-5124,W,M,D,225,06/30/2012,07/01/2008,Sheriff Edwards -Clerk of Court ,,P. O. Box 799,,Jennings,LA,70546,337-824-1160,JEFFERSON DAVIS,Richard M. Arceneaux,P.O. Box 243,,Welsh,LA,70591,337-734-2220,W,M,D,230,06/30/2012,07/01/2008 -Assessor ,,"Cths. Bldg., Rm. 103 300 State St.",,Jennings,LA,70546,377-824-3451,JEFFERSON DAVIS,Donald G. Kratzer,1402 N. Sherman St.,,Jennings,LA,70546,337-824-0126,W,M,D,235,12/31/2012,01/01/2009,Mr. Kratzer -Coroner ,,4153 Aaron Road,,Jennings,LA,70546,337-824-6072,JEFFERSON DAVIS,"Charles J. Deese, ",1110 E Gallaugher Rd.,,Jennings,LA,70546-3238,337-824-5226,W,M,N,240,,02/15/2010 -Police Juror,District 1,P. O. Box 1409,,Jennings,LA,70546,337-824-4792,JEFFERSON DAVIS,"""Donald"" Woods",5008 Hwy 14,,Lake Arthur,LA,70549,337-774-3413,W,M,D,245,01/08/2012,01/14/2008,Mr. Woods -Police Juror ,District 2 ,P. O. Box 1409,,Jennings,LA,70546,337-824-4792,JEFFERSON DAVIS,John Marceaux,828 N. Hwy 26,,Lake Arthur,LA,70549,337-774-3728,W,M,R,245,01/08/2012,01/14/2008,Mr. Marceaux -Police Juror ,District 3 ,P. O. Box 1409,,Jennings,LA,70546,337-824-4792,JEFFERSON DAVIS,Warren A. Woods,1507 S. Cutting Ave.,,Jennings,LA,70546,337-824-4263,B,M,D,245,01/08/2012,01/14/2008,Mr. Woods -Police Juror ,District 4 ,P. O. Box 1409,,Jennings,LA,70546,337-824-4792,JEFFERSON DAVIS,Bradley Eastman,1205 W. Division St.,,Jennings,LA,70546,337-824-6178,W,M,D,245,01/08/2012,01/14/2008,Mr. Eastman -Police Juror ,District 5 ,P. O. Box 1409,,Jennings,LA,70546,337-824-4792,JEFFERSON DAVIS,"""Tom"" Kilpatrick",827 Comfort Lane,,Jennings,LA,70546,337-224-2420,W,M,R,245,01/08/2012,01/14/2008,Mr. Kilpatrick -Police Juror ,District 6 ,P. O. Box 1409,,Jennings,LA,70546,337-824-4792,JEFFERSON DAVIS,"Melvin ""Moe"" Adams",210 E. Sumner St.,,Jennings,LA,70546,337-824-9460,B,M,D,245,01/08/2012,01/14/2008,Mr. Adams -Police Juror ,District 7 ,P. O. Box 1409,,Jennings,LA,70546,337-824-4792,JEFFERSON DAVIS,"""Steve"" Eastman",430 E. Nezpique St.,,Jennings,LA,70546,337-824-8039,W,M,D,245,01/08/2012,01/14/2008,Mr. Eastman -Police Juror ,District 8 ,P. O. Box 1409,,Jennings,LA,70546,337-824-4792,JEFFERSON DAVIS,"""Joe"" Landry",22191 Hwy. 26,,Jennings,LA,70546,337-824-4979,W,M,R,245,01/08/2012,01/14/2008,Mr. Landry -Police Juror ,District 9 ,P. O. Box 1409,,Jennings,LA,70546,337-824-4792,JEFFERSON DAVIS,Curt Guillory,27129 Picket Rd.,,Elton,LA,70532-4312,337-584-2360,W,M,D,245,01/08/2012,01/14/2008,Mr. Guillory -Police Juror ,District 10 ,P. O. Box 1409,,Jennings,LA,70546,337-824-4792,JEFFERSON DAVIS,Byron Buller,25009 Barker Rd.,,Kinder,LA,70648,337-738-5710,W,M,D,245,01/08/2012,01/14/2008,Mr. Buller -Police Juror ,District 11 ,P. O. Box 1409,,Jennings,LA,70546,337-824-4792,JEFFERSON DAVIS,Mark A. Pousson,11308 Pecan Orchard Rd.,,Welsh,LA,70591,337-734-3231,W,M,D,245,01/08/2012,10/14/2008,Mr. Pousson -Police Juror ,District 12 ,P. O. Box 1409,,Jennings,LA,70546,337-824-4792,JEFFERSON DAVIS,"""Bill"" Wild",9256 Artemond Rd.,,Welsh,LA,70591-5725,337-753-2466,W,M,D,245,01/08/2012,01/14/2008,Mr. Wild -Police Juror ,District 13 ,P. O. Box 1409,,Jennings,LA,70546,337-824-4792,JEFFERSON DAVIS,Miron Navarre,10220 Demarest Rd.,,Welsh,LA,70591-5932,337-734-4800,W,M,R,245,01/08/2012,01/14/2008,Mr. Navarre -City Judge ,"City Court, City of Jennings ",P. O. Box 609,,Jennings,LA,70546,337-821-5514,JEFFERSON DAVIS,Daniel Stretcher,703 May St.,,Jennings,LA,70546,337-824-0110,W,M,,250,12/31/2014,10/15/2008,Judge Stretcher -City Marshal ,"City Court, City of Jennings ",P. O. Box 609,,Jennings,LA,70546,337-821-5514,JEFFERSON DAVIS,"Clarence L. Cormier, Jr.",818 N. Cutting Ave.,,Jennings,LA,70546-4858,337-824-1314,W,M,D,250,12/31/2014,01/01/2009,Marshal Cormier -Member of School Board ,District 1 ,P. O. Box 640,,Jennings,LA,70546,337-824-1834,JEFFERSON DAVIS,"""Greg"" Bordelon",6173 Morgan Shores Rd.,,Lake Arthur,LA,70549-5314,337-774-2172,W,M,,255,12/31/2010,01/01/2007,Mr. Bordelon -Member of School Board ,District 2 ,P. O. Box 640,,Jennings,LA,70546,337-824-1834,JEFFERSON DAVIS,Malon Dobson,P.O. Box 261,,Lake Arthur,LA,70549,337-774-3024,W,M,D,255,12/31/2010,01/01/2007,Mr. Dobson -Member of School Board ,District 3 ,P. O. Box 640,,Jennings,LA,70546,337-824-1834,JEFFERSON DAVIS,Phillip Arceneaux,P.O. Box 445,,Jennings,LA,70546,337-824-0279,B,M,D,255,12/31/2010,02/23/2009,Mr. Arceneaux -Member of School Board ,District 4 ,P. O. Box 640,,Jennings,LA,70546,337-824-1834,JEFFERSON DAVIS,"Robert W. ""Rob"" Menard",818 W. Academy Ave.,,Jennings,LA,70546,337-824-8125,W,M,,255,12/31/2010,01/01/2007,Mr. Menard -Member of School Board ,District 5 ,P. O. Box 640,,Jennings,LA,70546,337-824-1834,JEFFERSON DAVIS,"""Donn E"" Dees",1719 N. Main St.,,Jennings,LA,70546,337-824-6005,W,M,D,255,12/31/2010,01/01/2007,Mr. Dees -Member of School Board ,District 6 ,P. O. Box 640,,Jennings,LA,70546,337-824-1834,JEFFERSON DAVIS,"David S. ""Cap's"" Capdeville",302 Mulkern St.,,Jennings,LA,70546,337-824-1495,B,M,D,255,12/31/2010,01/01/2007,Mr. Capdeville -Member of School Board ,District 7 ,P. O. Box 640,,Jennings,LA,70546,337-824-1834,JEFFERSON DAVIS,"""Jimmy"" Segura",315 Crail St.,,Jennings,LA,70546,337-824-3013,W,M,O,255,12/31/2010,01/01/2007,Mr. Segura -Member of School Board ,District 8 ,P. O. Box 640,,Jennings,LA,70546,337-824-1834,JEFFERSON DAVIS,Michael J. Heinen,21014 Dama Landry Rd.,,Jennings,LA,70546-8846,337-824-3510,W,M,O,255,12/31/2010,01/01/2007,Mr. Heinen -Member of School Board ,District 9 ,P. O. Box 640,,Jennings,LA,70546,337-824-1834,JEFFERSON DAVIS,Charles Bruchhaus,4535 Dan Buller Rd.,,Elton,LA,70532,337-584-2937,W,M,D,255,12/31/2010,01/01/2007,Mr. Bruchhaus -Member of School Board ,District 10 ,P. O. Box 640,,Jennings,LA,70546,337-824-1834,JEFFERSON DAVIS,Richard McNabb,203 East Plaquemine St.,,Jennings,LA,70546,337-756-2340,W,M,O,255,12/31/2010,01/01/2007,Mr. McNabb -Member of School Board ,District 11 ,P. O. Box 640,,Jennings,LA,70546,337-824-1834,JEFFERSON DAVIS,Mark Boudreaux,405 S. Polk St.,,Welsh,LA,70591,337-734-2470,W,M,R,255,12/31/2010,01/01/2007,Mr. Boudreaux -Member of School Board ,District 12 ,P. O. Box 640,,Jennings,LA,70546,337-824-1834,JEFFERSON DAVIS,Jason J. Bouley,P.O. Box 192,,Roanoke,LA,70581-0192 ,337-753-2370,W,M,,255,12/31/2010,01/01/2007,Mr. Bouley -Member of School Board ,District 13 ,P. O. Box 640,,Jennings,LA,70546,337-824-1834,JEFFERSON DAVIS,"Julius ""Bubba"" Caraway",13168 Hornsby Rd.,,Iowa,LA,70647-6611,337-588-4269,W,M,R,255,12/31/2010,01/01/2007,Mr. Caraway -Justice of the Peace ,Justice of the Peace Ward 1 ,413 Kellogg Ave.,,Lake Arthur,LA,70549,337-774-5263,JEFFERSON DAVIS,Debbie Abshire,413 Kellog St.,,Lake Arthur,LA,70549,337-774-5263,W,F,D,265,12/31/2014,01/01/2009,Ms. Abshire -Justice of the Peace ,Justice of the Peace Ward 2 ,P. O. Box 309,,Elton,LA,70532,337-584-2811,JEFFERSON DAVIS,Linda G. Langley,309 Johnson St.,,Elton,LA,70532,337-584-2421,W,F,D,265,12/31/2014,01/01/2009,Ms. Langley -Justice of the Peace ,Justice of the Peace Ward 3 ,4325 Luthers Rd.,,Iowa,LA,70647,337-582-1669,JEFFERSON DAVIS,Tammie Miller,4351 Luthers Rd.,,Iowa,LA,70647,337-582-1669,W,F,D,265,12/31/2014,01/01/2009,Ms. Miller -Justice of the Peace ,Justice of the Peace Ward 4 ,103 Providence Ln.,,Welsh,LA,70591,337-734-2356,JEFFERSON DAVIS,Robert B. Ramagos,609 Beaufort St.,,Welsh,LA,70591,337-734-2356,W,M,O,265,12/31/2014,01/01/2009,Mr. Ramagos -Justice of the Peace ,Justice of the Peace Ward 5 ,6075 Grand Marias Rd.,,Jennings,LA,70546,337-824-4889,JEFFERSON DAVIS,Jennifer Courville Landry,4406 Pine Island Hwy.,,Jennings,LA,70546-6530,337-824-2835,W,F,R,265,12/31/2014,01/01/2009,Ms. Landry -Justice of the Peace ,Justice of the Peace Ward 6 ,21503 Pinehill Cemetery Rd.,,Iowa,LA,70647,,JEFFERSON DAVIS,George Gotreaux,21503 Pinehill Cemetary Rd.,,Iowa,LA,70647,337-582-3170,W,M,D,265,12/31/2014,01/01/2009,Mr. Gotreaux -Constable ,Justice of the Peace Ward 1 ,P.O. Box 253,,Lake Arthur,LA,70549,337-774-3471,JEFFERSON DAVIS,"C. H. ""Brandy"" Hammond",P. O. Box 455,,Lake Arthur,LA,70549,337-774-2852,W,M,R,267,12/31/2014,01/01/2009,Mr. Hammond -Constable ,Justice of the Peace Ward 2 ,P.O. Box 547,,Elton,LA,70532,337-584-2617,JEFFERSON DAVIS,"Cursey ""Junior"" Marcantel",P. O. Box 547,,Elton,LA,70532,337-584-2617,W,M,D,267,12/31/2014,01/01/2009,Mr. Marcantel -Constable ,Justice of the Peace Ward 3 ,25136 LA Hwy. 165,,Kinder,LA,70648,337-738-5755,JEFFERSON DAVIS,Clarence Talbert,P. O. Box 465,,Fenton,LA,70640,337-263-0837,B,M,D,267,12/31/2014,01/01/2009,Mr. Talbert -Constable ,Justice of the Peace Ward 4 ,609 S. Dautel St.,,Welsh,LA,70591-4709,337-734-2580,JEFFERSON DAVIS,Robyn Leblanc,202 Rowland St.,,Welsh,LA,70591,337-387-9188,W,F,D,267,12/31/2014,01/01/2009,Ms. LeBlanc -Constable ,Justice of the Peace Ward 5 ,6326 Bryan Rd.,,Jennins,LA,70546,337-824-0822,JEFFERSON DAVIS,Joseph W. Guidry,6326 Bryan Rd.,,Jennings,LA,70546,337-824-0822,W,M,D,267,12/31/2014,01/01/2009,Mr. Guidry -Constable ,Justice of the Peace Ward 6 ,P.O. Box 85,,Lacassine,LA,70650,337-588-4485,JEFFERSON DAVIS,Lee Adam Landry,319 Romero St.,,Lacassine,LA,70650,337-588-4485,W,M,D,267,12/31/2014,01/01/2009,Mr. Landry -Mayor ,City of Jennings ,P. O. Drawer 1249,,Jennings,LA,,337-821-5500,JEFFERSON DAVIS,Terry W. Duhon,1106 Granger St.,,Jennings,LA,70546,337-824-3163,W,M,D,300,06/30/2013,07/01/2009,Mayor Duhon -Mayor ,Town of Elton ,P. O. Box 27,,Elton,LA,,337-584-2992,JEFFERSON DAVIS,"""Cathy"" Hollingsworth",P.O. Box 542,,Elton,LA,70532,337-584-2759,W,F,D,300,12/31/2010,01/01/2007,Ms. Collinsworth -Mayor ,Town of Lake Arthur ,P. O. Drawer AK,,Lake Arthur,LA,,337-774-2211,JEFFERSON DAVIS,"E. R. ""Red"" Giles",P.O. Box 832,,Lake Arthur,LA,70549,337-774-5154,W,M,D,300,12/31/2010,01/01/2007,Mr. Giles -Mayor ,Town of Welsh ,P. O. Box 786,,Welsh,LA,,337-734-2231,JEFFERSON DAVIS,Carolyn Louviere,P.O. Box 824,,Welsh,LA,70591,337-734-3983,W,F,D,300,12/31/2012,01/01/2009,Mayor Louviere -Mayor ,Village of Fenton ,P. O. Box 310,,Fenton,LA,,337-756-2321,JEFFERSON DAVIS,"Eddie B. Alfred, Jr.",P.O. Box 106,,Fenton,LA,70640,337-756-2324,B,M,D,300,12/31/2012,01/01/2009,Mayor Alfred -Chief of Police ,Town of Elton ,P. O. Box 27,,Elton,LA,70532,337-584-2992,JEFFERSON DAVIS,Chad Carrier,P.O. Box 884,,Elton,LA,70532,337-329-2627,W,M,R,305,12/31/2010,01/01/2007,Mr. Carrier -Chief of Police ,Town of Lake Arthur ,P. O. Drawer AK,,Lake Arthur,LA,70549,337-774-2211,JEFFERSON DAVIS,Cheryl Vincent,136 Grand Ave.,,Lake Arthur,LA,70549,337-224-1844,W,F,D,305,12/31/2010,01/01/2007,Mr. Vincent -Chief of Police ,Town of Welsh ,P. O. Box 786,,Welsh,LA,70591,337-734-2231,JEFFERSON DAVIS,Tommy Chaisson,P. O. Box 382,,Welsh,LA,70591,337-802-4711,W,M,,305,12/31/2012,01/01/2009,Chief Chaisson -Chief of Police ,Village of Fenton ,,,,LA,,,JEFFERSON DAVIS,"Luther ""Sam"" Alfred",318 Fifth St.,,Fenton,LA,70640,337-756-2584,B,M,,305,12/31/2012,01/01/2009,Mr. Alfred -Alderman ,Town of Welsh ,P. O. Box 786,,Welsh,LA,70591,337-734-2231,JEFFERSON DAVIS,Allen Ardoin,P. O. Box 511,,Welsh,LA,70591,337-734-4212,W,M,D,310,12/31/2012,01/01/2009,Mr. Ardoin -Alderman ,Town of Welsh ,P. O. Box 786,,Welsh,LA,70591,337-734-2231,JEFFERSON DAVIS,"""Jimmy"" Cormier",109 S. Elms St.,,Welsh,LA,70591,337-275-1147,W,M,D,310,12/31/2012,01/01/2009,Mr. Cormier -Alderman ,Town of Welsh ,P. O. Box 786,,Welsh,LA,70591,337-734-2231,JEFFERSON DAVIS,Charles Drake,316 Davis St.,,Welsh,LA,70591,337-734-4759,B,M,D,310,12/31/2012,01/01/2009,Mr. Drake -Alderman ,Town of Welsh ,P. O. Box 786,,Welsh,LA,70591,337-734-2231,JEFFERSON DAVIS,Becky Hudson,109 South St.,,Welsh,LA,70591,337-734-4584,W,F,D,310,12/31/2012,01/01/2009,Ms. Hudson -Alderman ,Town of Welsh ,P. O. Box 786,,Welsh,LA,70591,337-734-2231,JEFFERSON DAVIS,Gloria King Viney,1211 Welsh St.,,Welsh,LA,70591-4041,337-734-4977,B,F,D,310,12/31/2012,01/01/2009,Ms. Viney -Alderman ,Village of Fenton ,P. O. Box 310,,Fenton,LA,70640-0310 ,337-756-2321,JEFFERSON DAVIS,"Eddie Alfred, Sr.",P.O. Box 24,,Fenton,LA,70640,337-756-2598,B,M,D,310,12/31/2012,01/01/2009,Mr. Alfred -Alderman ,Village of Fenton ,P. O. Box 310,,Fenton,LA,70640-0310 ,337-756-2321,JEFFERSON DAVIS,"""Fred"" Arclies",P.O. Box 21,,Fenton,LA,70640,337-756-2234,B,M,O,310,12/31/2012,01/01/2009,Mr. Arclies -Alderman ,Village of Fenton ,P. O. Box 310,,Fenton,LA,70640-0310 ,337-756-2321,JEFFERSON DAVIS,Mary Jones,P. O. Box 425,,Fenton,LA,70640-0425 ,337-756-2386,B,F,D,310,12/31/2012,01/01/2009,Ms. Jones -Council Member ,Town of Elton ,P. O. Box 27,,Elton,LA,70532,337-584-2992,JEFFERSON DAVIS,Tracie Doescher,P.O. Box 8,,Elton,LA,70532,337-584-3026,W,F,,310,12/31/2010,01/01/2007,Ms. Doescher -Council Member ,Town of Elton ,P. O. Box 27,,Elton,LA,70532,337-584-2992,JEFFERSON DAVIS,"Durffey Joseph Fontenot, Jr.",P.O. Box 936,,Elton,LA,70532,337-584-2093,B,M,O,310,12/31/2010,01/01/2007,Mr. Fontenot -Council Member ,Town of Elton ,P. O. Box 27,,Elton,LA,70532,337-584-2992,JEFFERSON DAVIS,Kimberly Manuel Guidry,P.O. Box 866,,Elton,LA,70532,337-584-2481,W,F,D,310,12/31/2010,01/01/2007,Ms. Guidry -Council Member ,Town of Elton ,P. O. Box 27,,Elton,LA,70532,337-584-2992,JEFFERSON DAVIS,"Alphonse ""Kotch"" Guillory",P.O. Box 111,,Elton,LA,70532-5407,337-584-2898,W,M,D,310,12/31/2010,01/01/2007,Mr. Guillory -Council Member ,Town of Elton ,P. O. Box 27,,Elton,LA,70532,337-584-2992,JEFFERSON DAVIS,Margaret G. Langley,P.O. Box 401,,Elton,LA,70532,337-584-5105,W,F,D,310,12/31/2010,01/01/2007,Ms. Langley -Council Member ,Town of Lake Arthur ,P. O. Drawer AK,,Lake Arthur,LA,70549,337-774-2211,JEFFERSON DAVIS,Dorothy L. Charles,635 New Orleans Ave.,,Lake Arthur,LA,70549,337-774-2666,B,F,D,310,12/31/2010,01/01/2007,Ms. Charles -Council Member ,Town of Lake Arthur ,P. O. Drawer AK,,Lake Arthur,LA,70549,337-774-2211,JEFFERSON DAVIS,Kirk J. Conner,712 Arthur Ave.,,Lake Arthur,LA,70549,337-774-5563,W,M,R,310,12/31/2010,01/01/2007,Mr. Conner -Council Member ,Town of Lake Arthur ,P. O. Drawer AK,,Lake Arthur,LA,70549,337-774-2211,JEFFERSON DAVIS,Ellsworth Duhon,222 Hwy. 14,,Lake Arthur,LA,70549-4805,337-774-3675,W,M,D,310,12/31/2010,01/01/2007,Mr. Duhon -Council Member ,Town of Lake Arthur ,P. O. Drawer AK,,Lake Arthur,LA,70549,337-774-2211,JEFFERSON DAVIS,David A. Hanks,1311 State St.,,Lake Arthur,LA,70549,337-774-3902,W,M,D,310,12/31/2010,01/01/2007,Mr. Hanks -Council Member ,Town of Lake Arthur ,P. O. Drawer AK,,Lake Arthur,LA,70549,337-774-2211,JEFFERSON DAVIS,"""Cindy"" Lapoint",P.O. Box 467,,Lake Arthur,LA,70549-3301,337-774-5625,W,F,D,310,12/31/2010,01/01/2007,Ms. Lapoint -Councilman ,"District A, City of Jennings ",P. O. Drawer 1249,,Jennings,LA,70546,337-821-5500,JEFFERSON DAVIS,Rogeous Lawdins,1626 S. Main St.,,Jennings,LA,70546,337-824-5785,B,M,D,310,06/30/2013,07/01/2009,Mr. Lawdins -Councilman ,"District B, City of Jennings ",P. O. Drawer 1249,,Jennings,LA,70546,337-821-5500,JEFFERSON DAVIS,"""Johnny"" Armentor",1405 W. Division St.,,Jennings,LA,70546,337-824-8872,W,M,R,310,06/30/2013,07/01/2009,Mr. Armentor -Councilman ,"District C, City of Jennings ",P. O. Drawer 1249,,Jennings,LA,70546,337-821-5500,JEFFERSON DAVIS,Trey Myers,418 May St.,,Jennings,LA,70546,337-824-5426,W,M,,310,06/30/2013,07/01/2009,Mr. Myers -Councilman ,"District D, City of Jennings ",P. O. Drawer 1249,,Jennings,LA,70546,337-821-5500,JEFFERSON DAVIS,"Anthony Philip LeBlanc, Jr.",214 E. Sumner St.,,Jennings,LA,70546,337-824-6821,B,M,D,310,06/30/2013,07/01/2009,Mr. LeBlanc -Councilman ,"District E, City of Jennings ",P. O. Drawer 1249,,Jennings,LA,70546,337-821-5500,JEFFERSON DAVIS,"""Stevie"" VanHook",2140 E. Academy Ave.,,Jennings,LA,70546,337-824-7905,W,M,R,310,06/30/2013,07/01/2009,Mr. VanHook -DPEC Member ,at Large ,,,,LA,,,LAFAYETTE,Ann L. Ardoin,112 D Hess Rd.,,Carencro,LA,70520,337-896-8211,W,F,D,054,02/20/2012,02/20/2008,Ms. Ardoin -DPEC Member ,at Large ,,,,LA,,,LAFAYETTE,"Alfred F. Boustany, II",P.O. Box 4626,,Lafayette,LA,70502,337-237-2147,W,M,D,054,02/20/2012,02/20/2008,Mr. Boustany -DPEC Member ,at Large ,,,,LA,,,LAFAYETTE,"""Jeff"" Moss",814 S. Washington St.,,Lafayette,LA,70501,337-237-6280,W,M,D,054,02/20/2012,02/20/2008,Mr. Moss -DPEC Member ,at Large ,,,,LA,,,LAFAYETTE,Wilfred Pierre,105 Maglorie Rd.,,Lafayette,LA,70501,337-261-0044,B,M,D,054,02/20/2012,02/20/2008,Mr. Pierre -DPEC Member ,at Large ,,,,LA,,,LAFAYETTE,Mike Stagg,153 Shady Oaks Dr.,,Lafayette,LA,70506,337-261-8116,W,M,D,054,02/20/2012,02/20/2008,Mr. Stagg -DPEC Member ,District 1 ,,,,LA,,,LAFAYETTE,Susannah J. Malbreaux,305 Nashua Dr.,,Carencro,LA,70520,337-896-7489,B,F,D,056,02/20/2012,02/20/2008,Ms. Malbreaux -DPEC Member ,District 2 ,,,,LA,,,LAFAYETTE,"""Greg"" Dean",177 Greenfield,,Carencro,LA,70520,337-896-4614,W,M,D,056,02/20/2012,02/20/2008,Mr. Dean -DPEC Member ,District 3 ,,,,LA,,,LAFAYETTE,Jerilyn M. Hill,1127 W. Gilman Rd.,,Lafayette,LA,70501,337-235-7982,B,F,D,056,02/20/2012,02/20/2008,Ms. Hill -DPEC Member ,District 4 ,,,,LA,,,LAFAYETTE,Lester Gauthier,P.O. Box 3371,,Lafayette,LA,70502,337-235-1811,W,M,D,056,02/20/2012,02/20/2008,Mr. Gauthier -DPEC Member ,District 5 ,,,,LA,,,LAFAYETTE,Stephen Handwerk,205 Pinto St.,,Lafayette,LA,70506,337-991-0294,W,M,D,056,02/20/2012,02/20/2008,Mr. Handwerk -DPEC Member ,District 6 ,,,,LA,,,LAFAYETTE,John D. Bernhardt,P.O. Box 52309,,Lafayette,LA,70505,337-232-6510,W,M,D,056,02/20/2012,02/20/2008,Mr. Bernhardt -DPEC Member ,District 7 ,,,,LA,,,LAFAYETTE,"""Ken"" Bouillion",420 Lippi Blvd.,,Lafayette,LA,70508,337-234-6303,W,M,D,056,02/20/2012,02/20/2008,Mr. Bouillion -DPEC Member ,District 8 ,,,,LA,,,LAFAYETTE,Glenn Armentor,300 Stewart St.,,Lafayette,LA,70501,337-233-1471,W,M,D,056,02/20/2012,02/20/2008,Mr. Armentor -DPEC Member ,District 9 ,,,,LA,,,LAFAYETTE,Boyd F. Zeke Zitzmann,P.O. Box 1315,,Broussard,LA,70518,337-322-3555,W,M,D,056,02/20/2012,02/20/2008,Mr. Zitzmann -RPEC Member ,at Large ,,,,LA,,,LAFAYETTE,"""Ernie"" Alexander",301 Leonpacher Rd.,,Lafayette,LA,70508,337-232-9124,W,M,R,064,02/20/2012,02/20/2008,Mr. Alexander -RPEC Member ,at Large ,,,,LA,,,LAFAYETTE,"Stanley ""Tee"" Brosky",319 Marilyn Dr.,,Lafayette,LA,70503,337-981-5807,W,M,R,064,02/20/2012,02/20/2008,Mr. Brosky -RPEC Member ,at Large ,,,,LA,,,LAFAYETTE,"Ronald ""Ron"" Gomez",305 Annunciation St.,,Lafayette,LA,70508,337-981-9325,W,M,R,064,02/20/2012,02/20/2008,Mr Gomez -RPEC Member ,at Large ,,,,LA,,,LAFAYETTE,Judy F. Keller,103 Huntington Dr.,,Lafayette,LA,70508,337-984-4517,W,F,R,064,02/20/2012,02/20/2008,Ms. Keller -RPEC Member ,at Large ,,,,LA,,,LAFAYETTE,Timothy Reynolds,309 Digby Ave.,,Lafayette,LA,70508,337-988-1031,W,M,R,064,02/20/2012,02/20/2008,MR. Reynolds -RPEC Member ,District 1 ,,,,LA,,,LAFAYETTE,Michael Louis Hebert,109 Broadway Dr.,,Scott,LA,70583,337-235-0377,W,M,R,066,02/20/2012,02/20/2008,Mr. Miller -RPEC Member ,District 2 ,,,,LA,,,LAFAYETTE,Raymond Lalonde,114 Froeba Dr.,,Carencro,LA,70520,337-896-7958,W,M,R,066,02/20/2012,02/20/2008,Mr. Lalonde -RPEC Member ,District 3 ,,,,LA,,,LAFAYETTE,Peggy Castille,542 Renaud Dr.,,Lafayette,LA,70507,337-234-3922,W,F,R,066,02/20/2012,02/20/2008,Ms. Castille -RPEC Member ,District 4 ,,,,LA,,,LAFAYETTE,"W. Thomas ""Tom"" Angers",116 Teche Dr.,,Lafayette,LA,70505,337-233-3268,W,M,R,066,02/20/2012,02/20/2008,MR. Angers -RPEC Member ,District 5 ,,,,LA,,,LAFAYETTE,"""Charlie"" Buckels",202 Sommerset,,Lafayette,LA,70506,337-981-3000,W,M,R,066,02/20/2012,02/20/2008,MR. Buckels -RPEC Member ,District 6 ,,,,LA,,,LAFAYETTE,Denice C. Skinner,110 Primrose Ln.,,Lafayette,LA,70506,337-237-6019,W,F,R,066,02/20/2012,02/20/2008,Ms. Skinner -RPEC Member ,District 7 ,,,,LA,,,LAFAYETTE,C. Mark Gremillion,226 Beverly Dr.,,Lafayette,LA,70503,337-234-8564,W,M,R,066,02/20/2012,02/20/2008,Mr. Gremillion -RPEC Member ,District 8 ,,,,LA,,,LAFAYETTE,"Ross Little, Jr.",100 Harwell,,Lafayette,LA,70503,337-981-1749,W,M,R,066,02/20/2012,02/20/2008,Mr. Little -RPEC Member ,District 9 ,,,,LA,,,LAFAYETTE,,,,,,,,,,,066 -Sheriff ,,P. O. Drawer 3508,,Lafayette,LA,70502,337-232-9211,LAFAYETTE,"""Mike"" Neustrom",P.O. Drawer 3508,,Lafayette,LA,70502,337-237-0778,W,M,D,225,06/30/2012,07/01/2008,Sheriff Neustrom -Clerk of Court ,,P. O. Box 2009,,Lafayette,LA,70502,337-233-0150,LAFAYETTE,Louis J. Perret,P. O. Box 2009,,Lafayette,LA,70502,337-232-1030,W,M,R,230,06/30/2012,07/01/2008,Mr. Perret -Assessor ,,P.O. Box 3225,,Lafayette,LA,70502-3325,337-291-7080,LAFAYETTE,Conrad T. Comeaux,103 Glynnwood Ave.,,Lafayette,LA,70506,337-234-5906,W,M,R,235,12/31/2012,01/01/2009,Mr. Comeaux -Coroner ,,1006 Bertrand Drive,,Lafayette,LA,70506,337-291-7100,LAFAYETTE,Kenneth L. Odinet,304 Beverly,,Lafayette,LA,70503,337-234-8648,W,M,R,240,03/25/2012,03/24/2008,Mr. Odinet -City-Parish President ,,P.O. Box 4017-C,,Lafayette,LA,,337-291-8810,LAFAYETTE,"L. J. ""Joey"" Durel, Jr.",316 Steiner Rd.,,Lafayette,LA,70508,337-981-1094,W,M,R,243,01/02/2012,01/07/2008,Mr. Durel -Member,"City-Parish Council, District 1",P. O. Box 4017-C,,Lafayette,LA,70502,337-291-8810,LAFAYETTE,Purvis Morrison,125 Andres Rd.,,Scott,LA,70583,337-873-9634,B,M,D,245,01/02/2012,01/07/2008,Mr. Morrison -Member ,"City-Parish Council, District 2 ",P. O. Box 4017-C,,Lafayette,LA,70502,337-291-8810,LAFAYETTE,"Joseph ""Jay"" Castille, Jr.",105 St. Girons,,Lafayette,LA,70507,337-232-6125,W,M,D,245,01/02/2012,01/07/2008,Mr. Castille -Member ,"City-Parish Council, District 3 ",P. O. Box 4017-C,,Lafayette,LA,70502,337-291-8810,LAFAYETTE,Brandon Shelvin,301 Monarch Dr.,,Lafayette,LA,70506,337-264-6272,B,M,D,245,01/02/2012,01/07/2008,Mr. Shelvin -Member ,"City-Parish Council, District 4 ",P. O. Box 4017-C,,Lafayette,LA,70502,337-291-8810,LAFAYETTE,Kenneth P. Boudreaux,P.O. Box 92712,,Lafayette,LA,70509,337-237-2793,B,M,D,245,01/02/2012,01/07/2008,Mr. Boudreaux -Member ,"City-Parish Council, District 5 ",P. O. Box 4017-C,,Lafayette,LA,70502,337-291-8810,LAFAYETTE,Jared Bellard,116 Creswell Ave.,,Scott,LA,70583,337-261-5730,W,M,R,245,01/02/2012,01/07/2008,Mr. Bellard -Member ,"City-Parish Council, District 6 ",P. O. Box 4017-C,,Lafayette,LA,70502,337-291-8810,LAFAYETTE,"""Sam"" Dore",102 Federal St.,,Lafayette,LA,70506,337-989-0950,W,M,R,245,01/02/2012,05/12/2009,Mr. Dore -Member ,"City-Parish Council, District 7 ",P. O. Box 4017-C,,Lafayette,LA,70502,337-291-8810,LAFAYETTE,"Donald L. ""Don"" Bertrand",P.O. Box 81098,,Lafayette,LA,70598,337-257-9427,W,M,R,245,01/02/2012,01/07/2008,Mr. Bertrand -Member ,"City-Parish Council, District 8 ",P. O. Box 4017-C,,Lafayette,LA,70502,337-291-8810,LAFAYETTE,Keith J. Patin,636 Alonda,,Lafayette,LA,70503,337-984-4170,W,M,R,245,01/02/2012,01/07/2008,Mr. Patin -Member ,"City-Parish Council, District 9 ",P. O. Box 4017-C,,Lafayette,LA,70502,337-291-8810,LAFAYETTE,William Theriot,4949 Verot School Rd.,,Youngsville,LA,70592,337-856-9063,W,M,R,245,01/02/2012,01/07/2008,Mr. Theriot -City Judge ,"City Court, Division A, City of Lafayette ",P. O. Drawer 3344,,Lafayette,LA,70502,337-291-8777,LAFAYETTE,"""Francie"" Bouillion",P.O. Drawer 3344,,Lafayette,LA,70502,337-291-8777,W,F,,250,12/31/2014,01/01/2009,Marshal Bouillion -City Judge ,"City Court, Division B, City of Lafayette ",P. O. Drawer 3344,,Lafayette,LA,70502,337-291-8761,LAFAYETTE,Douglas J. Saloom,P.O. Box 3344,,Lafayette,LA,70502,337-291-8761,W,M,D,250,12/31/2014,01/01/2009,Judge Saloom -City Marshal ,"City Court, City of Lafayette ",P. O. Drawer 3344,,Lafayette,LA,70502,337-291-8725,LAFAYETTE,"Earl ""Nickey"" Picard",117 Martin Oaks Dr.,,Lafayette,LA,70501,337-233-3963,W,M,D,250,12/31/2014,01/01/2009,Marshal Picard -Member of School Board ,District 1 ,P. O. Drawer 2158,,Lafayette,LA,70502-2158,337-521-7000,LAFAYETTE,Mark Babineaux,528 Rue Des Babineaux,,Scott,LA,70583,337-233-7766,W,M,D,255,12/31/2010,07/21/2008,Mr. Babineaux -Member of School Board ,District 2 ,P. O. Drawer 2158,,Lafayette,LA,70502-2158,337-521-7000,LAFAYETTE,Carl LaCombe,154 Portneuf,,Carencro,LA,70520,337-896-5837,W,M,D,255,12/31/2010,01/01/2007,Mr. LaCombe -Member of School Board ,District 3 ,P. O. Drawer 2158,,Lafayette,LA,70502-2158,337-521-7000,LAFAYETTE,Shelton J. Cobb,204 Alemeda St.,,Lafayette,LA,70501,337-233-4199,B,M,D,255,12/31/2010,10/14/2008,Mr. Cobb -Member of School Board ,District 4 ,P. O. Drawer 2158,,Lafayette,LA,70502-2158,337-521-7000,LAFAYETTE,Edward J. Sam,201 Noah St.,,Lafayette,LA,70501,337-233-2871,B,M,D,255,12/31/2010,01/01/2007,Mr. Sam -Member of School Board ,District 5 ,P. O. Drawer 2158,,Lafayette,LA,70502-2158,337-521-7000,LAFAYETTE,"""Mike"" Hefner",905 Golden Grain Rd.,,Duson,LA,70529,337-873-4244,W,M,D,255,12/31/2010,01/01/2007,Mr. Hefner -Member of School Board ,District 6 ,P. O. Drawer 2158,,Lafayette,LA,70502-2158,337-521-7000,LAFAYETTE,"""Greg"" Awbrey",110 Alpha Dr.,,Lafayette,LA,70506,337-981-6955,W,M,R,255,12/31/2010,01/01/2007,Mr. Awbry -Member of School Board ,District 7 ,P. O. Drawer 2158,,Lafayette,LA,70502-2158,337-521-7000,LAFAYETTE,Mark Cockerham,"300 Lozes Ave., Apt D-3",,Lafayette,LA,70508,337-504-3586,W,M,R,255,12/31/2010,09/14/2007,Mr. Cockerham -Member of School Board ,District 8 ,P. O. Drawer 2158,,Lafayette,LA,70502-2158,337-521-7000,LAFAYETTE,Hunter Beasley,106 Phillip Ave.,,Lafayette,LA,70503,337-269-1894,W,M,,255,12/31/2010,01/01/2007,Mr. Beasley -Member of School Board ,District 9 ,P. O. Drawer 2158,,Lafayette,LA,70502-2158,337-521-7000,LAFAYETTE,Rae B. Trahan,114 E. Parkwood Dr.,,Youngsville,LA,70592,337-856-8742,W,F,D,255,12/31/2010,01/01/2007,Ms. Trahan -Justice of the Peace ,Justice of the Peace Ward 1 ,310 D. Arceneaux Rd.,,Scott,LA,70583,337-873-3646,LAFAYETTE,Preston J. Leger,310 D. Arceneaux Rd.,,Scott,LA,70583,337-873-3646,W,M,D,265,12/31/2014,01/01/2009,Mr. Leger -Justice of the Peace ,Justice of the Peace Ward 2 ,2306 S. Fieldspan Rd.,,Duson,LA,70529,337-873-8413,LAFAYETTE,Kermit J. Guidry,2306 S. Fieldspan,,Duson,LA,70529,337-873-8413,W,M,D,265,12/31/2014,01/01/2009,Mr. Guidry -Justice of the Peace ,Justice of the Peace Ward 4 ,4256 Verot School Rd.,,Youngsville,LA,70592,337-856-5515,LAFAYETTE,Lynwood J. Broussard,4256 Verot School Rd.,,Youngsville,LA,70592,337-856-5515,W,M,O,265,12/31/2014,01/01/2009,Mr. Broussard -Justice of the Peace ,Justice of the Peace Ward 5 ,120 Hulin Rd.,,Broussard,LA,70518,337-837-1404,LAFAYETTE,Barbara Broussard,120 Hulin Rd.,,Broussard,LA,70518,337-837-1404,W,F,D,265,12/31/2014,01/01/2009,Ms. Broussard -Justice of the Peace ,Justice of the Peace Ward 6 ,1019 Hector Connolly Rd.,,Carencro,LA,70520,337-896-6605,LAFAYETTE,"Michael ""Chalk"" Angelle",1019 Hector Conolly,,Carencro,LA,70520,337-349-3866,W,M,D,265,12/31/2014,01/01/2009,Mr. Angelle -Justice of the Peace ,Justice of the Peace Ward 6 ,1019 Hector Connolly Rd.,,Carencro,LA,70520,337-896-6605,LAFAYETTE,Michael J. Broussard,300 Wallace Broussard,,Carencro,LA,70520,337-896-5127,W,M,D,265,12/31/2014,01/01/2009,Mr. Broussard -Justice of the Peace ,Justice of the Peace Ward 7 ,2877 Verot School Rd.,,Lafayette,LA,70508,337-856-4303,LAFAYETTE,"Donald ""Don"" Garber",1427P LaNeuville Rd.,,Lafayette,LA,70508,337-856-4303,W,M,D,265,12/31/2014,01/01/2009,Mr. Garber -Justice of the Peace ,Justice of the Peace Ward 8 ,516 E. Broussard Rd.,,Lafayette,LA,70503,337-989-1729,LAFAYETTE,"Weston J. ""Bruce"" Broussard",516 East Broussard,,Lafayette,LA,70503,337-989-1729,W,M,R,265,12/31/2014,01/01/2009,Mr. Broussard -Justice of the Peace ,Justice of the Peace Ward 9 ,120 LA Hwy. 89 S.,,Youngsville,LA,70592,*,LAFAYETTE,Nancy L. Poirier,120 La. Hwy 89 South,,Youngsville,LA,70592,337-856-6186,W,F,R,265,12/31/2014,07/28/2008,Ms. Poirier -Constable ,Justice of the Peace Ward 1 ,255 Lormand Rd.,,Scott,LA,70583,337-873-4292,LAFAYETTE,Judy Lantier Menard,255 Lormand Rd.,,Scott,LA,70583,337-873-4292,W,F,D,267,12/31/2014,01/01/2009,Ms. Menard -Constable ,Justice of the Peace Ward 2 ,1410 Sellers Rd.,,Rayne,LA,70578,337-873-8918,LAFAYETTE,Aldon L. Duhon,1410 Sellers Rd.,,Rayne,LA,70570,337-873-8918,W,M,D,267,12/31/2014,01/01/2009,Mr. Duhon -Constable ,Justice of the Peace Ward 4 ,701 Espasie,,Youngsville,LA,70592,337-856-4560,LAFAYETTE,Jay Hebert,701 Espasie,,Youngsville,LA,70592,337-856-4560,W,M,R,267,12/31/2014,01/01/2009,Mr. Hebert -Constable ,Justice of the Peace Ward 5 ,122 Hulin Rd.,,Broussard,LA,70518,337-837-6298,LAFAYETTE,Laura Menard,122 Hulin Rd.,,Broussard,LA,70518,337-837-6298,W,F,D,267,12/31/2014,01/01/2009,Ms. Menard -Constable ,Justice of the Peace Ward 6 ,145 Wagon Trail,,Carencro,LA,70520,337-896-6512,LAFAYETTE,Russell Comeaux,145 Wagon Trail,,Carencro,LA,70520,337-896-6512,W,M,D,267,12/31/2014,01/01/2009,Mr. Comeaux -Constable ,Justice of the Peace Ward 6 ,145 Wagon Trail,,Carencro,LA,70520,337-896-6512,LAFAYETTE,"""Pat"" Dugas",101 Lynda,,Carencro,LA,70520,337-319-3248,W,M,D,267,12/31/2014,01/01/2009,mr. Dugas -Constable ,Justice of the Peace Ward 7 ,1204 Laneuville Rd.,,Lafayette,LA,70508,337-989-9146,LAFAYETTE,Darrell Menard,1204 LaNeuville Rd.,,Lafayette,LA,70508,337-989-9146,W,M,R,267,12/31/2014,01/01/2009,Mr. Menard -Constable ,Justice of the Peace Ward 8 ,801 Provost St.,,Scott,LA,70583,337-232-2930,LAFAYETTE,"Harold ""Harry"" Domingue",801 Provost St.,,Scott,LA,70583,337-232-2930,W,M,D,267,12/31/2014,01/01/2009,Mr. Domingue -Constable ,Justice of the Peace Ward 9 ,129 Nezpique Rd.,,Youngsville,LA,70592,337-856-5643,LAFAYETTE,"Sanford ""Butch"" Landry",129 Nezpique Rd.,,Youngsville,LA,70592,337-856-5643,W,M,D,267,12/31/2014,01/01/2009,Mr. Landry -Mayor ,City of Carencro ,P. O. Drawer 10,,Carencro,LA,,337-896-8481,LAFAYETTE,Glenn L. Brasseaux,5005 N. University,,Carencro,LA,70520,337-896-8541,W,M,D,300,12/31/2010,01/01/2007,Mr. Brasseaux -Mayor ,City of Scott ,P. O. Box 517,,Scott,LA,,337-233-1130,LAFAYETTE,Hazel D. Myers,109 Jules St.,,Scott,LA,70583,337-234-8681,W,F,D,300,12/31/2010,01/01/2007,Mayor Myers -Mayor ,City of Youngsville ,P.O. Box 592,,Youngsville,LA,,337-856-4181,LAFAYETTE,"Wilson B. Viator, Jr.",P.O. Box 399,,Youngsville,LA,70592,337-856-4622,W,M,R,300,12/31/2010,01/01/2007,Mayor Viator -Chief of Police ,City of Carencro ,P. O. Drawer 10,,Carencro,LA,70520,337-896-8481,LAFAYETTE,Carlos Stout,311 Rue Colombe,,Carencro,LA,70520,337-896-9021,W,M,D,305,12/31/2010,01/01/2007,Mr. Stout -Chief of Police ,City of Scott ,P. O. Box 517,,Scott,LA,70583,337-233-1130,LAFAYETTE,Chad Leger,P. O. Box 810,,Scott,LA,70583,337-233-3715,W,M,D,305,12/31/2010,01/01/2007,Chief Leger -Chief of Police ,City of Youngsville ,P.O. Box 592,,Youngsville,LA,70592,337-856-4181,LAFAYETTE,Earl Menard,P.O. Box 265,,Youngsville,LA,70592,337-857-7295,W,M,R,305,12/31/2010,01/01/2007,Chief Menard -Council Member at Large ,City of Scott ,,,,LA,,,LAFAYETTE,Norwood Menard,P.O Box 615,,Scott,LA,70583,337-261-0219,W,M,D,308,12/31/2010,01/01/2007,Mr. Menard -Council Member ,City of Carencro ,P. O. Drawer 10,,Carencro,LA,70520,337-896-8481,LAFAYETTE,"Antoine Babineaux, Jr.",405 Guilbeau Rd.,,Carencro,LA,70520,337-896-8534,B,M,D,310,12/31/2010,01/01/2007,Mr. Babineaux -Council Member ,City of Carencro ,P. O. Drawer 10,,Carencro,LA,70520,337-896-8481,LAFAYETTE,L. J. Boudreaux,101 St. Pierre Blvd.,,Carencro,LA,70520,337-896-8834,W,M,D,310,12/31/2010,11/14/2008,Mr. Boudreaux -Council Member ,City of Carencro ,P. O. Drawer 10,,Carencro,LA,70520,337-896-8481,LAFAYETTE,"Allen ""Coach"" Conque",208 Thoroughbred Dr.,,Lafayette,LA,70507,337-896-8323,W,M,D,310,12/31/2010,01/01/2007,Mr. Conque -Council Member ,City of Carencro ,P. O. Drawer 10,,Carencro,LA,70520,337-896-8481,LAFAYETTE,"""Kim"" Guidry",111 S. St. John St.,,Carencro,LA,70520,337-896-6735,W,F,R,310,12/31/2010,01/01/2007,Ms. Guidry -Council Member ,City of Carencro ,P. O. Drawer 10,,Carencro,LA,70520,337-896-8481,LAFAYETTE,J. L. Richard,P.O. Box 481,,Carencro,LA,70520,337-896-6278,W,M,D,310,12/31/2010,01/01/2007,Mr. Richard -Council Member ,"District 1, City of Scott ",P. O. Box 517,,Scott,LA,70583,337-233-1130,LAFAYETTE,"""Bill"" Young",P.O. Box 534,,Scott,LA,70583,337-232-1353,W,M,D,310,12/31/2010,01/01/2007,Mr. Young -Council Member ,"District 2, City of Scott ",P. O. Box 517,,Scott,LA,70583,337-233-1130,LAFAYETTE,Terry J. Montoucet,217 Heidi Cir.,,Lafayette,LA,70507,337-264-1168,W,M,D,310,12/31/2010,01/01/2007,Mr. Montoucet -Council Member ,"District 3, City of Scott ",P. O. Box 517,,Scott,LA,70583,337-233-1130,LAFAYETTE,"John ""Bob"" Boudreaux",1005 Westgate Rd.,,Lafayette,LA,70506,337-981-3322,W,M,D,310,12/31/2010,01/01/2007,Mr. Boudreaux -Council Member ,"District 4, City of Scott ",P. O. Box 517,,Scott,LA,70583,337-233-1130,LAFAYETTE,Mark Moreau,209 Cheyenne Cir.,,Scott,LA,70583,337-235-2942,W,M,R,310,12/31/2010,01/01/2007,Mr. Moreau -Council Member ,"Division A, City of Youngsville ",P.O. Box 592,,Youngsville,LA,70592,337-856-4181,LAFAYETTE,Paul W. Huval,123 Beacon Dr.,,Youngsville,LA,70592,337-837-9993,W,M,R,310,12/31/2010,01/01/2007,Mr. Huval -Council Member ,"Division B, City of Youngsville ",P.O. Box 592,,Youngsville,LA,70592,337-856-4181,LAFAYETTE,Brenda Burley,P.O. Box 617,,Youngsville,LA,70592,337-856-9460,W,F,R,310,12/31/2010,01/01/2007,Ms. Burley -Council Member ,"Division C, City of Youngsville ",P.O. Box 592,,Youngsville,LA,70592,337-856-4181,LAFAYETTE,"A. J. Bernard, Jr.",P.O. Box 140,,Youngsville,LA,70592,337-856-5089,W,M,R,310,12/31/2010,01/01/2007,Mr. Bernard -Council Member ,"Division D, City of Youngsville ",P.O. Box 592,,Youngsville,LA,70592,337-856-4181,LAFAYETTE,Tim Barbier,112 Cresthill Dr.,,Youngsville,LA,70592,337-856-5256,W,M,R,310,12/31/2010,01/01/2007,Mr. Barbier -Council Member ,"Division E, City of Youngsville ",P.O. Box 592,,Youngsville,LA,70592,337-856-4181,LAFAYETTE,Dianne McClelland,629 N. Larriviere,,Broussard,LA,70518,337-837-4805,W,F,R,310,12/31/2010,01/01/2007,Ms. McClelland -DPEC Member ,at Large ,,,,LA,,,LAFOURCHE,Lawrence Autin,P.O. Box 144,,Raceland,LA,70394,985-537-2010,W,M,D,054,02/20/2012,02/20/2008,Mr. Autin -DPEC Member ,at Large ,,,,LA,,,LAFOURCHE,"""Jimmy"" Cantrelle",118 Cantrelle Dr.,,Raceland,LA,70394,985-532-6688,W,M,D,054,02/20/2012,02/20/2008,Mr. Cantrelle -DPEC Member ,at Large ,,,,LA,,,LAFOURCHE,Roland Chiasson,105 Romy Dr.,,Lockport,LA,70374,985-665-1372,W,M,D,054,02/20/2012,02/20/2008,Mr. Chiasson -DPEC Member ,District 1 ,,,,LA,,,LAFOURCHE,,,,,,,,,,,056 -DPEC Member ,District 2 ,,,,LA,,,LAFOURCHE,,,,,,,,,,,056 -DPEC Member ,District 3 ,,,,LA,,,LAFOURCHE,,,,,,,,,,,056 -DPEC Member ,District 4 ,,,,LA,,,LAFOURCHE,Matthew Block,800 Edgewood Dr.,,Thibodaux,LA,70301,985-446-0418,W,M,D,056,02/20/2012,02/20/2008,Mr. Block -DPEC Member ,District 5 ,,,,LA,,,LAFOURCHE,,,,,,,,,,,056 -DPEC Member ,District 6 ,,,,LA,,,LAFOURCHE,Carol LeBlanc,292 St. Peter St.,,Raceland,LA,70394,985-537-6818,W,F,D,056,02/20/2012,02/20/2008,Ms. LeBlanc -DPEC Member ,District 7 ,,,,LA,,,LAFOURCHE,,,,,,,,,,,056 -DPEC Member ,District 8 ,,,,LA,,,LAFOURCHE,,,,,,,,,,,056 -DPEC Member ,District 9 ,,,,LA,,,LAFOURCHE,,,,,,,,,,,056 -RPEC Member ,at Large ,,,,LA,,,LAFOURCHE,David Gauthe,1922 Bayou Rd.,,Thibodaux,LA,70301,,,,,064,,02/10/2009,Mr. Gauthe -RPEC Member ,at Large ,,,,LA,,,LAFOURCHE,Jane Griffin,157 Heidi Ln.,,Thibodaux,LA,70301,,,,,064,,02/10/2009,Ms. Griffin -RPEC Member ,at Large ,,,,LA,,,LAFOURCHE,Betsy McGee,603 Country Club Blvd.,,Thibodaux,LA,70301,,,,,064,,02/10/2009,Ms. McGee -RPEC Member ,at Large ,,,,LA,,,LAFOURCHE,Jeanette Naquin,862 St. Mary St.,,Thibodaux,LA,70301,,,,,064,,02/10/2009,Ms. Naquin -RPEC Member ,at Large ,,,,LA,,,LAFOURCHE,Sheila Plater,425 East St.,,Thibodaux,LA,70301,,,,,064,,02/10/2009,Ms. Plater -RPEC Member ,District 1 ,,,,LA,,,LAFOURCHE,Marsha Willett,1286 Hwy. 304,,Thibodaux,LA,70301,,,,,066,,02/10/2009,Ms. Willett -RPEC Member ,District 2 ,,,,LA,,,LAFOURCHE,Mary Bond,1871 St. Mary St.,,Thibodaux,LA,70301,,,,,066,,02/10/2009,Ms. Bond -RPEC Member ,District 3 ,,,,LA,,,LAFOURCHE,Al Carter,113 Cedar St.,,Thibodaux,LA,70301,,,,,066,,02/10/2009,Ms. Carter -RPEC Member ,District 4 ,,,,LA,,,LAFOURCHE,Gwen Cheramie,603 Country Blub Blvd.,,Thibodaux,LA,70301,,,,,066,,02/10/2009,Ms. Cheramie -RPEC Member ,District 5 ,,,,LA,,,LAFOURCHE,Mark Atzenhoffer,301 Silver St.,,Houma,LA,70364,,,,,066,,02/10/2009,Mr. Atzenhoffer -RPEC Member ,District 6 ,,,,LA,,,LAFOURCHE,Andrea Bollinger,P.O. Box 250,,Lockport,LA,70374,,,,,066,,02/10/2009,Ms. Bollinger -RPEC Member ,District 7 ,,,,LA,,,LAFOURCHE,,,,,,,,,,,066 -RPEC Member ,District 8 ,,,,LA,,,LAFOURCHE,,,,,,,,,,,066 -RPEC Member ,District 9 ,,,,LA,,,LAFOURCHE,Rudy King,603 Country Club Blvd.,,Thibodaux,LA,70301,,,,,066,,02/10/2009,Mr. King -Sheriff ,,P. O. Box 5608,,Thibodaux,LA,70302,985-449-2255,LAFOURCHE,Craig Webre,P.O. Box 5608,,Thibodaux,LA,70302,985-447-8200,W,M,R,225,06/30/2012,07/01/2008,Sheriff Webre -Clerk of Court ,,P. O. Box 818,,Thibodaux,LA,70302-0818 ,985-447-4841,LAFOURCHE,Vernon H. Rodrigue,P.O. Box 818,,Thibodeaux,LA,70302-0818 ,985-446-7734,W,M,D,230,06/30/2012,07/01/2008,Mr. Rodrigue -Assessor ,,403 St. Louis St.,,Thibodaux,LA,70301,985-447-7242,LAFOURCHE,Michael Martin,174 W. 214th St.,,Galliano,LA,70354,985-475-5485,W,M,D,235,12/31/2012,01/01/2009,Mr. Martin -Coroner ,,P.O. Box 1562,,Raceland,LA,70394,985-537-7055,LAFOURCHE,John King,123 Texas St.,,Raceland,LA,70394,985-446-5210,W,M,,240,03/25/2012,07/21/2008,Mr. King -Parish President ,,P. O. Drawer 5548,,Thibodaux,LA,70302,985-446-8427,LAFOURCHE,Charlotte Randolph,P.O. Box 5548,,Thibodaux,LA,70302,985-532-6452,W,F,R,243,01/11/2012,01/09/2008,Ms. Randolph -Council Member ,District 1 ,P. O. Drawer 5548,,Thibodaux,LA,,985-446-8427,LAFOURCHE,Jerry Jones,1132 Louise St.,,Thibodaux,LA,70301,985-448-2627,B,M,D,245,01/11/2012,01/09/2008,Mr. Jones -Council Member ,District 2 ,P. O. Drawer 5548,,Thibodaux,LA,70302,985-446-8427,LAFOURCHE,Michael F. Delatte,2999 Choctaw Rd.,,Thibodaux,LA,70301,985-633-9902,W,M,D,245,01/11/2012,01/09/2008,Mr. Delatte -Council Member ,District 3 ,P. O. Drawer 5548,,Thibodaux,LA,70302,985-446-8427,LAFOURCHE,Louis Richard,418 Rue De Cypress,,Thibodaux,LA,70301,985-448-2012,W,M,R,245,01/11/2012,01/09/2008,Mr. Richard -Council Member ,District 4 ,P. O. Drawer 5548,,Thibodaux,LA,70302,985-446-8427,LAFOURCHE,"Joseph ""Joe"" Fertitta",202 Parkside Dr.,,Thibodaux,LA,70301,985-447-3693,W,M,R,245,01/11/2012,01/09/2008,Mr. Fertitta -Council Member ,District 5 ,P. O. Drawer 5548,,Thibodaux,LA,70302,985-446-8427,LAFOURCHE,"""Matt"" Matherne",4321 Ferry Rd.,,Bourg,LA,70343,985-804-1128,W,M,O,245,01/11/2012,01/09/2008,Mr. Matherne -Council Member ,District 6 ,P. O. Drawer 5548,,Thibodaux,LA,70302,985-446-8427,LAFOURCHE,Lindel Toups,1936 Hwy. 654,,Gheens,LA,70355,985-532-5889,W,M,D,245,01/11/2012,01/09/2008,Mr. Toups -Council Member ,District 7 ,P. O. Drawer 5548,,Thibodaux,LA,70302,985-446-8427,LAFOURCHE,L. Phillip Gouaux,1421 Hyland Dr.,,Lockport,LA,70374,985-532-5226,W,M,D,245,01/11/2012,01/09/2008,Mr. Gouaux -Council Member ,District 8 ,P. O. Drawer 5548,,Thibodaux,LA,70302,985-446-8427,LAFOURCHE,Rodney Doucet,14574 W. Main,,Cut Off,LA,70345,985-632-2835,W,M,D,245,01/11/2012,01/09/2008,Mr. Doucet -Council Member ,District 9 ,P. O. Drawer 5548,,Thibodaux,LA,70302,985-446-8427,LAFOURCHE,Daniel Lorraine,P.O. Box 183,,Golden Meadow,LA,70357,985-475-5013,W,M,D,245,01/11/2012,01/09/2008,Mr. Lorraine -City Judge ,"City Court, City of Thibodaux ",P. O. Box 568,,Thibodaux,LA,70302,985-446-7238,LAFOURCHE,Mark D. Chiasson,213 Davis Dr.,,Thibodaux,LA,70301,985-446-7560,W,M,R,250,12/31/2014,01/01/2009,Judge Chiasson -City Marshal ,"City Court, City of Thibodaux ",P. O. Box 568,,Thibodaux,LA,70302,504-446-7238,LAFOURCHE,Harley J. Gros,409 E. Seventh St.,,Thibodaux,LA,70301,985-446-8001,W,M,D,250,12/31/2014,01/01/2009,Marshal Gros -Member of School Board ,District 1 ,P.O. Box 879,,Thibodaux,LA,70301-0879 ,985-435-4602,LAFOURCHE,Louis E. Thibodaux,411 Cherry Dr.,,Thibodaux,LA,70301,985-447-9407,W,M,D,255,12/31/2010,01/01/2007,Mr. Thibodaux -Member of School Board ,District 2 ,P.O. Box 879,,Thibodaux,LA,70301-0879 ,985-435-4602,LAFOURCHE,Rhoda Caldwell,605 Canal Blvd.,,Thibodaux,LA,70301,985-447-1545,W,F,D,255,12/31/2010,01/01/2007,Ms. Caldwell -Member of School Board ,District 3 ,P.O. Box 879,,Thibodaux,LA,70301-0879 ,985-435-4602,LAFOURCHE,"Richmond Boyd, Jr.",1215 Narrow St.,,Thibodaux,LA,70301,985-446-7052,B,M,D,255,12/31/2010,01/01/2007,Mr. Boyd -Member of School Board ,District 4 ,P.O. Box 879,,Thibodaux,LA,70301-0879 ,985-435-4602,LAFOURCHE,Robert Naquin,P.O. Box 704,,Thibodaux,LA,70302,985-446-5425,W,M,R,255,12/31/2010,01/01/2007,Mr. Naquin -Member of School Board ,District 5 ,P.O. Box 879,,Thibodaux,LA,70301-0879 ,985-435-4602,LAFOURCHE,Stella Chiasson Lasseigne,306 Hermitage Dr.,,Thibodaux,LA,70301,985-446-8108,W,F,D,255,12/31/2010,01/01/2007,Ms. Lasseigne -Member of School Board ,District 6 ,P.O. Box 879,,Thibodaux,LA,70301-0879 ,985-435-4602,LAFOURCHE,"G. A. Rodrigue, Jr.",1249 Hwy. 20,,Thibodaux,LA,70301,985-633-9435,W,M,D,255,12/31/2010,01/01/2007,Mr. Rodrigue -Member of School Board ,District 7 ,P.O. Box 879,,Thibodaux,LA,70301-0879 ,985-435-4602,LAFOURCHE,Gary J. Foret,108 Pierre Street,,Raceland,LA,70394,985-537-3433,W,M,D,255,12/31/2010,01/01/2007,Mr. Foret -Member of School Board ,District 8 ,P.O. Box 879,,Thibodaux,LA,70301-0879 ,985-435-4602,LAFOURCHE,Ronald Pere,285 Church St.,,Raceland,LA,70394,985-537-6946,W,M,D,255,12/31/2010,01/01/2007,Mr. Pere -Member of School Board ,District 9 ,P.O. Box 879,,Thibodaux,LA,70301-0879 ,985-435-4602,LAFOURCHE,Julie Breaux,160 St. James St.,,Gheens,LA,70355,985-532-6283,W,F,D,255,12/31/2010,01/01/2007,Ms. Breaux -Member of School Board ,District 10 ,P.O. Box 879,,Thibodaux,LA,70301-0879 ,985-435-4602,LAFOURCHE,"Dennis ""Jean"" Chiasson",302 Romy Dr.,,Lockport,LA,70374,985-532-5758,W,M,D,255,12/31/2010,01/01/2007,Mr. Chiasson -Member of School Board ,District 11 ,P.O. Box 879,,Thibodaux,LA,70301-0879 ,985-435-4602,LAFOURCHE,Roy Landry,207 Mary Beth Ave.,,Houma,LA,70364,985-872-2348,W,M,D,255,12/31/2010,01/01/2007,Mr. Landry -Member of School Board ,District 12 ,P.O. Box 879,,Thibodaux,LA,70301-0879 ,985-435-4602,LAFOURCHE,"""Jon"" Callais",202 W. 14th St.,,Cut Off,LA,70345,985-798-7887,W,M,D,255,12/31/2010,01/01/2007,Mr. Callais -Member of School Board ,District 13 ,P.O. Box 879,,Thibodaux,LA,70301-0879 ,985-435-4602,LAFOURCHE,"""Al"" Archer",P.O. Box 1212,,Cut Off,LA,70345,985-632-3094,B,M,D,255,12/31/2010,01/01/2007,Mr. Archer -Member of School Board ,District 14 ,P.O. Box 879,,Thibodaux,LA,70301-0879 ,985-435-4602,LAFOURCHE,Larry Paul Pitre,117 East 93rd St.,,Cut Off,LA,70345,985-632-5735,W,M,D,255,12/31/2010,01/01/2007,Mr. Pitre -Member of School Board ,District 15 ,P.O. Box 879,,Thibodaux,LA,70301-0879 ,985-435-4602,LAFOURCHE,Lawrence Mounic,112 Martinez Ln.,,Golden Meadow,LA,70357,985-475-6425,W,M,D,255,12/31/2010,01/01/2007,Mr. Mounic -Member ,"Greater Lafourche Port Commission, Div. A ",P. O. Drawer 490,,Galliano,LA,70354,985-632-6701,LAFOURCHE,"Harris ""Chuckie"" Cheramie, Jr.",P.O. Box 1358,,Galliano,LA,70354,985-325-5647,W,M,D,260,12/31/2012,01/01/2007,Mr. Chermaie -Member ,"Greater Lafourche Port Commission, Div. B ",,,,LA,,,LAFOURCHE,Perry Gisclair,141 W. 139th St.,,Cut Off,LA,70345,985-632-6363,W,M,D,260,12/31/2012,01/01/2007,Mr. Gisclair -Member ,"Greater Lafourche Port Commission, Div. C ",,,,LA,,,LAFOURCHE,"Jimmy ""T Jim"" Lafont",162 W. 112th St.,,Cut Off,LA,70345,985-632-5537,W,M,D,260,12/31/2012,01/01/2007,Mr. Lafont -Member ,"Greater Lafourche Port Commission, Div. D ",,,,LA,,,LAFOURCHE,Donald Vizier,P.O. Box 580,,Galliano,LA,70354,985-632-7129,W,M,R,260,12/31/2012,01/01/2007,Mr. Vizier -Member ,"Greater Lafourche Port Commission, Div. E ",,,,LA,,,LAFOURCHE,"Wilbert Collins, Sr.",113 Harry St.,,Golden Meadow,LA,70357,985-475-7721,W,M,R,260,12/31/2012,01/01/2007,Mr. Collins -Member ,"Greater Lafourche Port Commission, Div. F ",,,,LA,,,LAFOURCHE,Larry J. Griffin,P.O. Box 27,,Golden Meadow,LA,70357,985-475-5459,W,M,D,260,12/31/2012,01/01/2007,Mr. Griffin -Member ,"Greater Lafourche Port Commission, Div. G ",,,,LA,,,LAFOURCHE,Johnny Melancon,106 E. 39th St.,,Cut Off,LA,70345,985-632-3048,W,M,R,260,12/31/2012,01/01/2007,Mr. Melancon -Member ,"Greater Lafourche Port Commission, Div. H ",,,,LA,,,LAFOURCHE,Jimmy Guidry,P.O. Box 465,,Larose,LA,70373,985-693-3767,W,M,D,260,12/31/2012,01/01/2007,Mr. Guidry -Member ,"Greater Lafourche Port Commission, Div. I ",,,,LA,,,LAFOURCHE,"Ervin ""Vin"" Bruce",1083 ABC St.,,Cut Off,LA,70383,985-632-2123,W,M,D,260,12/31/2012,01/01/2007,Mr. Bruce -Justice of the Peace ,1st Justice of the Peace Court ,820 Oak Lane,,Thibodaux,LA,70301,985-446-1883,LAFOURCHE,Jean Denis Rodrigue,820 Oak Lane,,Thibodaux,LA,70301,985-446-1883,W,M,D,265,12/31/2014,01/01/2009,Mr. Rodrigue -Justice of the Peace ,2nd Justice of the Peace Court ,115 Uzee Lane,,Raceland,LA,70394,985-537-6413,LAFOURCHE,Mary U. Foret,115 Uzee Lane,,Raceland,LA,70394,985-537-6413,W,F,D,265,12/31/2014,01/01/2009,Ms. Foret -Justice of the Peace ,3rd Justice of the Peace Court ,P. O. Box 476,,Larose,LA,70373,985-693-3892,LAFOURCHE,Bennett Arceneaux,117 Willow-D St.,,Larose,LA,70373,985-693-3892,W,M,D,265,12/31/2014,01/01/2009,Mr. Arceneaux -Justice of the Peace ,4th Justice of the Peace Court ,P.O. Box 331,,Galliano,LA,70354,985-632-3995,LAFOURCHE,Lois L. Gautreaux,P.O. Box 331,,Galliano,LA,70354,985-632-3995,W,F,D,265,12/31/2014,01/01/2009,Mr. Gautreaux -Constable ,1st Justice of the Peace Court ,540 Hwy. 304,,Thibodaux,LA,70301,985-633-2005,LAFOURCHE,Benny J. Percle,540 Hwy. 304,,Thibodaux,LA,70301,985-633-2005,W,M,D,267,12/31/2014,01/01/2009,Mr. Percle -Constable ,2nd Justice of the Peace Court ,2514 Hwy. 182,,Raceland,LA,70394,985-537-5735,LAFOURCHE,Dwain LeBouef,2514 Hwy. 182,,Raceland,LA,70394,985-537-5735,W,M,D,267,12/31/2014,01/01/2009,Mr. LeBouef -Constable ,3rd Justice of the Peace Court ,386 Adams St.,,Raceland,LA,70394,985-532-5287,LAFOURCHE,"John ""Johnny"" Detillier",386 Adams St.,,Raceland,LA,70394,985-532-5287,W,M,D,267,12/31/2014,01/01/2009,Mr. Detillier -Constable ,4th Justice of the Peace Court ,108 E. 128th St.,,Galliano,LA,70354,985-632-6576,LAFOURCHE,Carl A. Doucet,108 East 128th St.,,Galliano,LA,70354,985-632-6576,W,M,D,267,12/31/2014,01/01/2009,Mr. Doucet -Mayor ,City of Thibodaux ,P. O. Box 5418,,Thibodaux,LA,,985-446-7200,LAFOURCHE,Charles Caillouet,P.O. Box 1218,,Thibodaux,LA,70302,985-446-8333,W,M,D,300,12/12/2010,12/11/2006,Mayor Caillouet -Mayor ,Town of Golden Meadow ,P. O. Box 307,,Golden Meadow,LA,,985-475-7942,LAFOURCHE,Joey Bouziga,P.O. Box 384,,Golden Meadow,LA,70357,985-475-5163,W,M,D,300,12/31/2012,01/01/2009,Mayor Bouziga -Mayor ,Town of Lockport ,710 Church St.,,Lockport,LA,,985-532-3117,LAFOURCHE,Richard Champagne,720 Seventh St.,,Lockport,LA,70374,985-532-3472,W,M,R,300,12/31/2012,01/01/2009,Mayor Champagne -Chief of Police ,Town of Golden Meadow ,P. O. Box 307,,Golden Meadow,LA,70357,985-475-7942,LAFOURCHE,Randy Chiasson,2124 S. Alex Plaisance Blvd.,,Golden Meadow,LA,70357,985-475-5909,W,M,R,305,12/31/2012,01/01/2009,Chief Chiasson -Chief of Police ,Town of Lockport ,710 Church St.,,Lockport,LA,70374,985-532-3117,LAFOURCHE,Warren Vedros,P.O. Box 265,,Lockport,LA,70374,985-413-9772,W,M,D,305,12/31/2012,01/01/2009,Chief Vedros -Councilman at Large ,"Seat D, City of Thibodaux ",P. O. Box 5418,,Thibodaux,LA,70302,985-446-7200,LAFOURCHE,"Lloyd ""Chip"" Badeaux",917 Jackson St.,,Thibodaux,LA,70301,985-446-6875,W,M,R,308,12/12/2010,11/14/2008,Mr. Badeaux -Councilman at Large ,"Seat E, City of Thibodaux ",P. O. Box 5418,,Thibodaux,LA,70302,985-446-7200,LAFOURCHE,Chad Mire,202 Elm St.,,Thibodaux,LA,70301,985-859-0618,W,M,D,308,12/12/2010,12/11/2006,Mr. Mire -Council Member ,"Division A, Town of Lockport ",710 Church St.,,Lockport,LA,70374,985-532-3117,LAFOURCHE,Donovan J. Barker,514 Vacherie St.,,Lockport,LA,70374,985-532-3582,W,M,D,310,12/31/2012,01/01/2009,Mr. Barker -Council Member ,"Division B, Town of Lockport ",710 Church St.,,Lockport,LA,70374,985-532-3117,LAFOURCHE,Paul Champagne,626 Ethel,,Lockport,LA,70374,985-532-5800,W,M,R,310,12/31/2012,01/01/2009,Mr. Champagne -Council Member ,"Division C, Town of Lockport ",710 Church St.,,Lockport,LA,70374,985-532-3117,LAFOURCHE,Craig Rogers,108 Comeaux Dr.,,Lockport,LA,70374,985-532-3772,W,M,R,310,12/31/2012,01/01/2009,Mr. Rogers -Council Member ,"Division D, Town of Lockport ",710 Church St.,,Lockport,LA,70374,985-532-3117,LAFOURCHE,Rodney Hartman,202 Comeaux Dr.,,Lockport,LA,70374,985-532-3947,W,M,R,310,12/31/2012,01/01/2009,Mr. Hartman -Council Member ,"Division E, Town of Lockport ",710 Church St.,,Lockport,LA,70374,985-532-3117,LAFOURCHE,"Weldon ""Chunky"" Triche",321 Canal,,Lockport,LA,70374,985-532-5102,W,M,D,310,12/31/2012,01/01/2009,Mr. Triche -Councilman ,"District A, City of Thibodaux ",P.O. Box 5418,,Thibodaux,LA,70302,985-446-7200,LAFOURCHE,Eddie Hebert,727 Rosedown Dr.,,Thibodaux,LA,70301,985-446-5268,W,M,D,310,12/12/2010,05/15/2007,Mr. Hebert -Councilman ,"District B, City of Thibodaux ",P. O. Box 5418,,Thibodaux,LA,70302,985-446-7200,LAFOURCHE,"""Gene"" Richard",516 Foret St.,,Thibodaux,LA,70301,985-446-1831,W,M,D,310,12/12/2010,12/11/2006,Mr. Richard -Councilman ,"District C, City of Thibodaux ",P. O. Box 5418,,Thibodaux,LA,70302,985-446-7200,LAFOURCHE,"Varick C. Taylor, Sr.",1128 Louise St.,,Thibodaux,LA,70301,985-446-2214,B,M,D,310,12/12/2010,12/11/2006,Mr. Taylor -Councilman ,Town of Golden Meadow ,P. O. Box 307,,Golden Meadow,LA,70357,985-475-7942,LAFOURCHE,"David ""Dave"" Adams",177 Fred St.,,Golden Meadow,LA,70357,985-475-5837,W,M,D,310,12/31/2012,01/01/2009,Mr. Adams -Councilman ,Town of Golden Meadow ,P. O. Box 307,,Golden Meadow,LA,70357,985-475-7942,LAFOURCHE,Mike Billiot,2631 North Bayou Dr.,,Golden Meadow,LA,70357,985-475-6711,O,M,D,310,12/31/2012,01/01/2009,Mr. Billiot -Councilman ,Town of Golden Meadow ,P. O. Box 307,,Golden Meadow,LA,70357,985-475-7942,LAFOURCHE,Frank Boura,2600 S. Alex Plaisance Blvd.,,Golden Meadow,LA,70357,985-475-5793,W,M,D,310,12/31/2012,01/01/2009,Mr. Boura -Councilman ,Town of Golden Meadow ,P. O. Box 307,,Golden Meadow,LA,70357,985-475-7942,LAFOURCHE,Jody P. Cheramie,210 South Henry St.,,Golden Meadow,LA,70357,985-475-4529,W,M,D,310,12/31/2012,01/01/2009,Mr. Cheramie -Councilman ,Town of Golden Meadow ,P. O. Box 307,,Golden Meadow,LA,70357,985-475-7942,LAFOURCHE,Priscilla Mounic,112 Martinez Ln.,,Golden Meadow,LA,70357,985-475-6425,W,F,D,310,12/31/2012,01/01/2009,Ms. Mounic -DPEC Member ,at Large ,,,,LA,,,LASALLE,Margie D. Cruse,P.O. Box 447,,Jena,LA,71342,318-992-2790,W,F,D,054,02/20/2012,02/20/2008,Ms. Cruse -DPEC Member ,at Large ,,,,LA,,,LASALLE,Sammy J. Franklin,P.O. Box 3050,,Jena,LA,71342,318-992-4066,W,M,D,054,02/20/2012,02/20/2008,Mr. Franklin -DPEC Member ,District 1 ,,,,LA,,,LASALLE,,,,,,,,,,,056 -DPEC Member ,District 2 ,,,,LA,,,LASALLE,,,,,,,,,,,056 -DPEC Member ,District 3 ,,,,LA,,,LASALLE,,,,,,,,,,,056 -DPEC Member ,District 4 ,,,,LA,,,LASALLE,,,,,,,,,,,056 -DPEC Member ,District 5 ,,,,LA,,,LASALLE,Reed Walters,P.O. Box 1066,,Jena,LA,71342,318-992-8282,W,M,D,056,02/20/2012,02/20/2008,Mr. Walters -DPEC Member ,District 6 ,,,,LA,,,LASALLE,,,,,,,,,,,056 -DPEC Member ,District 7 ,,,,LA,,,LASALLE,,,,,,,,,,,056 -DPEC Member ,District 8 ,,,,LA,,,LASALLE,,,,,,,,,,,056 -DPEC Member ,District 9 ,,,,LA,,,LASALLE,,,,,,,,,,,056 -DPEC Member ,District 10 ,,,,LA,,,LASALLE,,,,,,,,,,,056 -RPEC Member ,at Large ,,,,LA,,,LASALLE,Catherine W. Roberts,P.O. Box 1120,,Jena,LA,71342,318-992-2997,W,F,R,064,02/20/2012,02/20/2008 -RPEC Member ,District 1 ,,,,LA,,,LASALLE,,,,,,,,,,,066 -RPEC Member ,District 2 ,,,,LA,,,LASALLE,,,,,,,,,,,066 -RPEC Member ,District 3 ,,,,LA,,,LASALLE,,,,,,,,,,,066 -RPEC Member ,District 4 ,,,,LA,,,LASALLE,,,,,,,,,,,066 -RPEC Member ,District 5 ,,,,LA,,,LASALLE,,,,,,,,,,,066 -RPEC Member ,District 6 ,,,,LA,,,LASALLE,,,,,,,,,,,066 -RPEC Member ,District 7 ,,,,LA,,,LASALLE,,,,,,,,,,,066 -RPEC Member ,District 8 ,,,,LA,,,LASALLE,,,,,,,,,,,066 -RPEC Member ,District 9 ,,,,LA,,,LASALLE,,,,,,,,,,,066 -RPEC Member ,District 10 ,,,,LA,,,LASALLE,,,,,,,,,,,066 -Sheriff ,,P. O. Box 70,,Jena,LA,71342,318-992-2151,LASALLE,Scott Franklin,P. O. Box 70,,Jena,LA,71342,318-992-6625,W,M,D,225,06/30/2012,07/01/2008,Sheriff Franklin -Clerk of Court ,,P. O. Box 1316,,Jena,LA,71342,318-992-2158,LASALLE,Steve Andrews,P.O. Box 1316,,Jena,LA,71342,318-992-5364,W,M,D,230,06/30/2012,07/01/2008,Mr. Andrews -Assessor ,,P.O. Box 400,,Jena,LA,71342,318-992-8256,LASALLE,Aron Johnson,2410 Hopkins Rd.,,Jena,LA,71342,318-992-6419,W,M,D,235,12/31/2012,01/01/2009,Mr. Johnson -Coroner ,,P.O. Box 1319,,Jena,LA,71342,318-992-2166,LASALLE,"I. C. Turnley, Jr.",P. O. Box 1319,,Jena,LA,71342,318-992-2033,W,M,R,240,03/25/2012,03/24/2008,Mr. turnley -Police Juror ,District 1 ,P. O. Box 1288,,Jena,LA,,318-992-2101,LASALLE,Alban Poole,2860 Hwy. 503,,Olla,LA,71465,318-992-2571,W,M,D,245,01/08/2012,01/14/2008,Mr. Poole -Police Juror ,District 2 ,P. O. Box 1288,,Jena,LA,71342,318-992-2101,LASALLE,"Charles ""Buddy"" Poole",P. O. Box 1496,,Olla,LA,71465,318-495-5900,W,M,D,245,01/08/2012,01/14/2008,Mr. Poole -Police Juror ,District 3 ,P. O. Box 1288,,Jena,LA,71342,318-992-2101,LASALLE,Jerry M. Harris,P. O. Box 489,,Urania,LA,71480,318-992-3458,W,M,D,245,01/08/2012,01/14/2008,Mr. Harris -Police Juror ,District 4 ,P. O. Box 1288,,Jena,LA,71342,318-992-2101,LASALLE,Larkin Jackson,P.O. Box 1995,,Jena,LA,71342,318-992-6719,W,M,D,245,01/08/2012,01/14/2008,Mr. Larkin -Police Juror ,District 5 ,P. O. Box 1288,,Jena,LA,71342,318-992-2101,LASALLE,Wayne Richardson,511 Peyton St.,,Jena,LA,71342,318-992-5734,W,M,D,245,01/08/2012,01/14/2008,Mr. Richardson -Police Juror ,District 6 ,P. O. Box 1288,,Jena,LA,71342,318-992-2101,LASALLE,Jack Zeagler,215 Vercher Rd.,,Trout,LA,71371,318-992-2838,W,M,D,245,01/08/2012,01/14/2008,Mr. Zeagler -Police Juror ,District 7 ,P. O. Box 1288,,Jena,LA,71342,318-992-2101,LASALLE,Mike Crooks,P.O. Box 642,,Jena,LA,71342,318-992-2380,W,M,D,245,01/08/2012,01/14/2008,Mr. Crooks -Police Juror ,District 8 ,P. O. Box 1288,,Jena,LA,71342,318-992-2101,LASALLE,Bard Lambeth,150 Rawlins Rd.,,Jena,LA,71342,318-992-2871,W,M,D,245,01/08/2012,01/14/2008,Mr. Lambeth -Police Juror ,District 9 ,P. O. Box 1288,,Jena,LA,71342,318-992-2101,LASALLE,Bobby R. Francis,281 Old River Lp.,,Jonesville,LA,71343,318-992-4633,W,M,D,245,01/08/2012,01/14/2008,Mr. Francis -Police Juror ,District 10 ,P. O. Box 1288,,Jena,LA,71342,318-992-2101,LASALLE,Ron G. Carr,P.O. Box 323,,Trout,LA,71371,318-992-2722,B,M,D,245,01/08/2012,01/14/2008,Mr. Carr -Member of School Board ,District 1 ,P. O. Drawer 90,,Jena,LA,71342,318-992-2161,LASALLE,"Rodney Jackson, ",P.O. Box 90,,Jena,LA,71342,,,,,255,,12/07/2009,Mr. Jackson -Member of School Board ,District 2 ,P. O. Drawer 90,,Jena,LA,71342,318-992-2161,LASALLE,"Howard ""Coach"" McCarty",P.O. Box 626,,Olla,LA,71465,318-992-5997,W,M,D,255,12/31/2010,01/01/2007,Mr. McCarty -Member of School Board ,District 3 ,P. O. Drawer 90,,Jena,LA,71342,318-992-2161,LASALLE,Jay Ivy,P.O. Box 673,,Urania,LA,71480,318-495-3630,W,M,R,255,12/31/2010,07/21/2008,Mr. Ivy -Member of School Board ,District 4 ,P. O. Drawer 90,,Jena,LA,71342,318-992-2161,LASALLE,Eli Cooper,1523 Cowart St.,,Jena,LA,71342,318-992-2456,W,M,R,255,12/31/2010,01/01/2007,Mr. Cooper -Member of School Board ,District 5 ,P. O. Drawer 90,,Jena,LA,71342,318-992-2161,LASALLE,Billy Fowler,141 Peyton St.,,Jena,LA,71342,318-992-0765,W,M,,255,12/31/2010,01/01/2007,Mr. Fowler -Member of School Board ,District 6 ,P. O. Drawer 90,,Jena,LA,71342,318-992-2161,LASALLE,"Alvin J. ""Buddy"" Bethard, Jr.",P.O. Box 2711,,Jena,LA,71342,318-992-8728,W,M,D,255,12/31/2010,01/01/2007,Mr. Bethard -Member of School Board ,District 7 ,P. O. Drawer 90,,Jena,LA,71342,318-992-2161,LASALLE,Walter Creel,P.O. Box 1333,,Jena,LA,71342,318-992-6441,W,M,D,255,12/31/2010,01/01/2007,Mr. Creel -Member of School Board ,District 8 ,P. O. Drawer 90,,Jena,LA,71342,318-992-2161,LASALLE,Dolan Pendarvis,115 Nebo Cutoff Rd.,,Jena,LA,71342,318-992-2340,W,M,R,255,12/31/2010,01/01/2007,Mr. Pendarvis -Member of School Board ,District 9 ,P. O. Drawer 90,,Jena,LA,71342,318-992-2161,LASALLE,Charlie Anderson,125 Anderson Rd.,,Jena,LA,71342,318-992-8345,W,M,R,255,12/31/2010,01/01/2007,Mr. Anderson -Member of School Board ,District 10 ,P. O. Drawer 90,,Jena,LA,71342,318-992-2161,LASALLE,Melvin Roy Worthington,655 Yearby Hill Lp.,,Jena,LA,71342,318-992-2455,B,M,D,255,12/31/2010,01/01/2007,Mr. Worthington -Justice of the Peace ,Justice of the Peace District 1 ,P. O. Box 333,,Olla,LA,71456,318-495-5916,LASALLE,Eddie Coolman,P. O. Box 333,,Olla,LA,71465,318-495-5916,W,M,D,265,12/31/2014,01/01/2009,Mr. Coolman -Justice of the Peace ,Justice of the Peace District 2 ,P. O. Box 196,,Olla,LA,71456,318-495-5041,LASALLE,Debbie W. Chisolm,P. O. Box 196,,Olla,LA,71465,318-495-5041,W,F,,265,12/31/2014,01/01/2009,Ms. Chisolm -Justice of the Peace ,Justice of the Peace District 3 ,P. O. Box 490,,Trout,LA,71371,318-992-6350,LASALLE,Charles Flaherty,P. O. Box 490,,Trout,LA,71371,318-992-6350,W,M,,265,12/31/2014,01/01/2009,Mr. Flaherty -Justice of the Peace ,Justice of the Peace District 4 ,P. O. Box 1415,,Jena,LA,71342,318-992-2202,LASALLE,"Don R. Smith, Sr.",P. O. Box 1415,,Jena,LA,71342,318-992-2202,W,M,R,265,12/31/2014,01/01/2009,Mr. Smith -Justice of the Peace ,Justice of the Peace District 5 ,9632 Hwy. 84 E.,,Jena,LA,71342,318-992-5197,LASALLE,F. C. Thaxton,9632 Hwy. 84,,Jena,LA,71342,318-992-5197,W,M,D,265,12/31/2014,01/01/2009,Mr. Thaxton -Constable ,Justice of the Peace District 1 ,660 LA Hwy. 459,,Olla,LA,71465,318-992-6817,LASALLE,Leroy Westbrooks,1067 Hwy. 3071,,Olla,LA,71465,318-992-4776,W,M,R,267,12/31/2014,01/01/2009,Mr. Westbrooks -Constable ,Justice of the Peace District 2 ,1607 Taylor St.,,Olla,LA,71465,318-495-5641,LASALLE,John W. Stott,1607 Taylor St.,,Olla,LA,71465,318-495-3687,W,M,,267,12/31/2014,01/01/2009,Mr. Stott -Constable ,Justice of the Peace District 3 ,P.O. Box 1048,,Jena,LA,71342,318-992-2081,LASALLE,J. Clyde Crooks,620 Benelbie Rd.,,Trout,LA,71371,318-992-5306,W,M,D,267,12/31/2014,01/01/2009,Mr. Crooks -Constable ,Justice of the Peace District 4 ,P.O. Box 442,,Jena,LA,71342,318-992-0314,LASALLE,"""Ken"" Stevens",P. O. Box 442,,Jena,LA,71342,318-992-3029,W,M,,267,12/31/2014,01/01/2009,Mr. Stevens -Constable ,Justice of the Peace District 5 ,1775 W. Bradford St.,,Jena,LA,71342,318-992-8574,LASALLE,"L. V. ""Pete"" Breithaupt",405 Old River Lp.,,Jonesville,LA,71343,318-992-0398,W,M,D,267,12/31/2014,01/01/2009,Mr. Breithaupt -Mayor ,Town of Jena ,P. O. Box 26,,Jena,LA,,318-992-2148,LASALLE,Murphy McMillin,P.O. Box 195,,Jena,LA,71342,318-992-5883,W,M,R,300,12/31/2010,01/01/2007,Mr. McMillin -Mayor ,Town of Olla ,P. O. Box 223,,Olla,LA,,318-495-5151,LASALLE,Wanda Love,P.O. Box 802,,Olla,LA,71465,318-495-5825,W,F,D,300,12/31/2010,01/01/2007,Mr. Love -Mayor ,Town of Tullos ,P. O. Box 749,,Tullos,LA,,318-534-6499,LASALLE,Fred Book,P.O. Box 705,,Tullos,LA,71479,318-534-6249,W,M,D,300,12/31/2010,01/01/2007,Mayor Book -Mayor ,Town of Urania ,P. O. Box 339,,Urania,LA,,318-495-3452,LASALLE,Terri Corley,P.O. Box 654,,Urania,LA,71480,318-495-3439,W,F,D,300,12/31/2010,01/01/2007,Mayor Corley -Chief of Police ,Town of Jena ,P. O. Box 26,,Jena,LA,71342,318-992-2148,LASALLE,Paul Smith,P.O. Box 58,,Trout,LA,71371,318-992-0452,W,M,R,305,12/31/2010,01/01/2007,Mr. Smith -Chief of Police ,Town of Olla ,P. O. Box 223,,Olla,LA,71465,318-495-5151,LASALLE,Gary W. Taylor,P.O. Box 903,,Olla,LA,71465,318-495-5998,W,M,R,305,12/31/2010,01/01/2007,Mr. Taylor -Chief of Police ,Town of Tullos ,P. O. Box 749,,Tullos,LA,71479,318-534-6499,LASALLE,Leland Guin,P.O. Box 69,,Tullos,LA,71479,318-447-3917,W,M,D,305,12/31/2010,01/01/2007,Chief Guin -Chief of Police ,Town of Urania ,P. O. Box 339,,Urania,LA,71480,318-495-3452,LASALLE,"""Wayne"" Corley",P.O. Box 654,,Urania,LA,71480,318-495-3439,W,M,D,305,12/31/2010,01/01/2007,Chief Corley -Alderman ,Town of Olla ,P. O. Box 223,,Olla,LA,71465,318-495-5151,LASALLE,Wayne Bates,P.O. Box 1420,,Olla,LA,71465,318-495-3948,W,M,R,310,12/31/2010,01/01/2007,Mr. Bates -Alderman ,Town of Olla ,P. O. Box 223,,Olla,LA,71465,318-495-5151,LASALLE,"""Donnie"" Cupples",P.O. Box 937,,Olla,LA,71465,318-495-3007,W,M,D,310,12/31/2010,01/01/2007,Mr. Cupples -Alderman ,Town of Olla ,P. O. Box 223,,Olla,LA,71465,318-495-5151,LASALLE,Sidney Emfinger,P.O. Box 422,,Olla,LA,71465,318-495-5603,W,M,R,310,12/31/2010,01/01/2007,Mr. Emfinger -Alderman ,Town of Olla ,P. O. Box 223,,Olla,LA,71465,318-495-5151,LASALLE,Jeffrey Lasiter,2035 Ash St.,,Olla,LA,71465,318-495-0452,W,M,R,310,12/31/2010,01/01/2007,Mr. Lasiter -Alderman ,Town of Olla ,P. O. Box 223,,Olla,LA,71465,318-495-5151,LASALLE,Renee Peppers Thomas,P.O. Box 1103,,Olla,LA,71465,318-495-5418,W,F,D,310,12/31/2010,01/01/2007,Mr. Thomas -Alderman ,Town of Tullos ,P. O. Box 749,,Tullos,LA,71479,318-534-6499,LASALLE,"James W. Arbogast, Jr.",1307 Doyle St.,,Tullos,LA,71479,318-534-6291,W,M,,310,12/31/2010,01/01/2007,Mr. Arbogast -Alderman ,Town of Tullos ,P. O. Box 749,,Tullos,LA,71479,318-534-6499,LASALLE,Lance B. Coleman,1284 Doyle St.,,Tullos,LA,71479,318-534-6115,W,M,R,310,12/31/2010,08/24/2009,Mr. Coleman -Alderman ,Town of Tullos ,P. O. Box 749,,Tullos,LA,71479,318-534-6499,LASALLE,"""Greg"" Davis",1080 Miles Blvd.,,Tullos,LA,71479,318-534-6330,W,M,D,310,12/31/2010,01/01/2007,Mr. Davis -Alderman ,Town of Tullos ,P. O. Box 749,,Tullos,LA,71479,318-534-6499,LASALLE,Darwin Fife,P.O. Box 715,,Tullos,LA,71479,318-534-6235,W,M,,310,12/31/2010,01/01/2007,Mr. Fife -Alderman ,Town of Tullos ,P. O. Box 749,,Tullos,LA,71479,318-534-6499,LASALLE,"Q. F. ""Fritz"" Sagdahl",P.O. Box 5,,Tullos,LA,71479,318-534-6578,W,M,R,310,12/31/2010,01/01/2007,Mr. Sagdahl -Alderman ,Town of Urania ,P. O. Box 339,,Urania,LA,71480,318-495-3452,LASALLE,Dawn Blackwell,P.O. Box 448,,Urania,LA,71480,318-229-1983,W,F,R,310,12/31/2010,01/01/2007,Ms. Blackwell -Alderman ,Town of Urania ,P. O. Box 339,,Urania,LA,71480,318-495-3452,LASALLE,Dawn Book,P.O. Box 429,,Urania,LA,71480,318-495-5527,W,F,,310,12/31/2010,02/23/2009,Ms. Book -Alderman ,Town of Urania ,P. O. Box 339,,Urania,LA,71480,318-495-3452,LASALLE,Patrick McDougald,P.O. Box 615,,Urania,LA,,318-495-3440,W,M,R,310,12/31/2010,01/01/2007 -Alderman ,Town of Urania ,P. O. Box 339,,Urania,LA,71480,318-495-3452,LASALLE,"Jesse Powers, Jr.",P.O. Box 346,,Urania,LA,71480,318-495-3651,W,M,,310,12/31/2010,02/23/2009,Mr. Powers -Alderman ,Town of Urania ,P. O. Box 339,,Urania,LA,71480,318-495-3452,LASALLE,Stacie P. Strain,P.O. Box 351,,Urania,LA,71465,318-495-3656,W,F,D,310,12/31/2010,01/01/2007,Ms. Strain -Council Member(s) ,Town of Jena ,P. O. Box 26,,Jena,LA,71342,318-992-2148,LASALLE,"David Paul Jones, Jr.",P.O. Box 1252,,Jena,LA,71342,318-992-6893,W,M,R,310,12/31/2010,01/01/2007,Mr. Jones -Council Member(s) ,Town of Jena ,P. O. Box 26,,Jena,LA,71342,318-992-2148,LASALLE,"""Donnie"" Kendrick",P.O. Box 2091,,Jena,LA,71342,318-992-6566,W,M,D,310,12/31/2010,01/01/2007,Mr. Kendrick -Council Member(s) ,Town of Jena ,P. O. Box 26,,Jena,LA,71342,318-992-2148,LASALLE,Carl Newburg,P.O. Box 154,,Jena,LA,71342,318-992-4879,W,M,D,310,12/31/2010,01/01/2007,Mr. Newburg -Council Member(s) ,Town of Jena ,P. O. Box 26,,Jena,LA,71342,318-992-2148,LASALLE,"""Donny"" Richardson",2190 Hemphill Dr.,,Jena,LA,71342,318-992-2244,W,M,R,310,12/31/2010,01/01/2007,Mr. Richardson -Council Member(s) ,Town of Jena ,P. O. Box 26,,Jena,LA,71342,318-992-2148,LASALLE,Tommy D. Sandifer,P.O. Box 841,,Jena,LA,71342,318-992-4203,W,M,R,310,12/31/2010,01/01/2007,Mr. Sandifer -DPEC Member ,at Large ,,,,LA,,,LINCOLN,,,,,,,,,,,054 -DPEC Member ,"Ward 1, District A ",,,,LA,,,LINCOLN,Lola Owens,422 S. Pine Tree Rd.,,Grambling,LA,71245,318-247-6270,B,F,D,056,02/20/2012,02/20/2008,Ms. Owens -DPEC Member ,"Ward 1, District B ",,,,LA,,,LINCOLN,,,,,,,,,,,056 -DPEC Member ,"Ward 1, District C ",,,,LA,,,LINCOLN,,,,,,,,,,,056 -DPEC Member ,"Ward 1, District D ",,,,LA,,,LINCOLN,,,,,,,,,,,056 -DPEC Member ,"Ward 1, District E ",,,,LA,,,LINCOLN,,,,,,,,,,,056 -DPEC Member ,"Ward 1, District F ",,,,LA,,,LINCOLN,,,,,,,,,,,056 -DPEC Member ,"Ward 1, District G ",,,,LA,,,LINCOLN,,,,,,,,,,,056 -DPEC Member ,"Ward 2, District A ",,,,LA,,,LINCOLN,,,,,,,,,,,056 -DPEC Member ,"Ward 2, District B ",,,,LA,,,LINCOLN,,,,,,,,,,,056 -DPEC Member ,Ward 3 ,,,,LA,,,LINCOLN,,,,,,,,,,,056 -DPEC Member ,Ward 4 ,,,,LA,,,LINCOLN,,,,,,,,,,,056 -DPEC Member ,Ward 5 ,,,,LA,,,LINCOLN,,,,,,,,,,,056 -RPEC Member ,at Large ,,,,LA,,,LINCOLN,John M. Buske,342 Stow Creek Rd.,,Ruston,LA,71270,318-255-5452,W,M,R,064,02/20/2012,02/20/2008,Mr. Buske -RPEC Member ,at Large ,,,,LA,,,LINCOLN,Laura Farrar,1600 Bistineau St.,,Ruston,LA,71270,318-255-2983,W,F,R,064,02/20/2012,02/20/2008,Ms. Farrar -RPEC Member ,at Large ,,,,LA,,,LINCOLN,Donald Roy Faust,P.O. Box 177,,Ruston,LA,71273,318-255-6798,W,M,R,064,02/20/2012,02/20/2008,Mr.Faust -RPEC Member ,at Large ,,,,LA,,,LINCOLN,Wayne Harris,113 Deer Creek Rd.,,Ruston,LA,71270,318-254-8646,W,M,R,064,02/20/2012,02/20/2008,Mr. Harris -RPEC Member ,at Large ,,,,LA,,,LINCOLN,"William ""Bill"" Hogan",428 Forest Circle,,Ruston,LA,71270,318-255-7101,W,M,R,064,02/20/2012,02/20/2008,Mr. Hogan -RPEC Member ,"Ward 1, District A ",,,,LA,,,LINCOLN,,,,,,,,,,,066 -RPEC Member ,"Ward 1, District B ",,,,LA,,,LINCOLN,,,,,,,,,,,066 -RPEC Member ,"Ward 1, District C ",,,,LA,,,LINCOLN,,,,,,,,,,,066 -RPEC Member ,"Ward 1, District D ",,,,LA,,,LINCOLN,Mary Jane Stearns,1540 Pea Ridge Rd.,,Dubach,LA,71235,318-251-9322,W,F,R,066,02/20/2012,02/20/2008,Ms. Stearns -RPEC Member ,"Ward 1, District E ",,,,LA,,,LINCOLN,,,,,,,,,,,066 -RPEC Member ,"Ward 1, District F ",,,,LA,,,LINCOLN,,,,,,,,,,,066 -RPEC Member ,"Ward 1, District G ",,,,LA,,,LINCOLN,Rolanda M. Howe,142 Mossy Knoll Dr.,,Ruston,LA,71270,318-255-8892,W,F,R,066,02/20/2012,02/20/2008,Ms. Howe -RPEC Member ,"Ward 2, District A ",,,,LA,,,LINCOLN,,,,,,,,,,,066 -RPEC Member ,"Ward 2, District B ",,,,LA,,,LINCOLN,,,,,,,,,,,066 -RPEC Member ,Ward 3 ,,,,LA,,,LINCOLN,,,,,,,,,,,066 -RPEC Member ,Ward 4 ,,,,LA,,,LINCOLN,,,,,,,,,,,066 -RPEC Member ,Ward 5 ,,,,LA,,,LINCOLN,Alice Herrmann,1402 St. John Ave.,,Ruston,LA,71270,318-255-6078,W,F,R,066,02/20/2012,02/20/2008,Ms. Herrmann -Sheriff ,,P. O. Box 2070,,Ruston,LA,71273,318-251-5111,LINCOLN,Mike Stone,P.O. Box 2070,,Ruston,LA,71273,318-255-3045,W,M,D,225,06/30/2012,07/01/2008,Sheriff Stone -Clerk of Court ,,P. O. Box 924,,Ruston,LA,71270,318-251-5130,LINCOLN,Linda Cook,P.O. Box 924,,Ruston,LA,71270,318-251-5130,W,F,D,230,06/30/2012,07/01/2008,Ms. Cook -Assessor ,,P.O. Box 1218,,Ruston,LA,71273-1218,318-251-5140,LINCOLN,Pamela C. Jones,212 Deer Creek Rd.,,Ruston,LA,71270,318-255-6006,W,F,D,235,12/31/2012,01/01/2009,Ms. Jones -Coroner ,,"411 E.Vaughn Ave.,Ste. 105",,Ruston,LA,71270,318-251-3774,LINCOLN,"James Michael ""Mike"" Belue","411 East Vaughn, Ste. 105",,Ruston,LA,71270,318-251-3774,W,M,,240,03/25/2012,03/24/2008,Mr. Belue -Police Juror,District 1,P. O. Box 979,,Ruston,LA,71273-0979,318-513-6200,LINCOLN,Theresa Moore Wyatt,273 Houston Rd.,,Ruston,LA,71270,318-247-8117,B,F,D,245,01/08/2012,01/14/2008,Ms. Wyatt -Police Juror ,District 2 ,P. O. Box 979,,Ruston,LA,71273-0979 ,318-251-5149,LINCOLN,Hazel D. Hunter,218 Webster Ave.,,Grambling,LA,71245,318-247-6609,B,F,D,245,01/08/2012,01/14/2008,Ms. Hunter -Police Juror ,District 3 ,P. O. Box 979,,Ruston,LA,71273-0979 ,318-251-5149,LINCOLN,Bobby Bennett,10169 Hwy. 146,,Ruston,LA,71270,318-255-5386,W,M,D,245,01/08/2012,01/14/2008,Mr. Bennett -Police Juror ,District 4 ,P. O. Box 979,,Ruston,LA,71273-0979 ,318-251-5149,LINCOLN,Mike Franklin,308 McElduff Rd.,,Dubach,LA,71235,318-255-8853,W,M,R,245,01/08/2012,01/14/2008,Mr. Franklin -Police Juror ,District 5 ,P. O. Box 979,,Ruston,LA,71273-0979 ,318-251-5149,LINCOLN,David Hammons,362 Hwy. 556,,Choudrant,LA,71227,318-768-2410,W,M,R,245,01/08/2012,01/14/2008,Mr. Hammons -Police Juror ,District 6 ,P. O. Box 979,,Ruston,LA,71273-0979 ,318-251-5149,LINCOLN,Roy D. Glover,200 Glover Rd.,,Ruston,LA,71270,318-255-6973,W,M,D,245,01/08/2012,01/14/2008,Mr. Glover -Police Juror ,District 7 ,P. O. Box 979,,Ruston,LA,71273-0979 ,318-251-5149,LINCOLN,"""Jody"" Backus",432 Forest Circle,,Ruston,LA,71270,318-255-8622,W,M,R,245,01/08/2012,01/14/2008,Mr. Backus -Police Juror ,District 8 ,P. O. Box 979,,Ruston,LA,71273-0979 ,318-251-5149,LINCOLN,"R. G. ""Skip"" Russell",172 East Ridge Terrace,,Ruston,LA,71270,318-255-4826,W,M,R,245,01/08/2012,01/14/2008,Mr. Russell -Police Juror ,District 9 ,P. O. Box 979,,Ruston,LA,71273-0979 ,318-251-5149,LINCOLN,"""Joe"" Henderson",P.O. Box 1027,,Ruston,LA,71273-1027,318-251-1299,B,M,,245,01/08/2012,01/14/2008,Mr. Henderson -Police Juror ,District 10 ,P. O. Box 979,,Ruston,LA,71273-0979 ,318-251-5149,LINCOLN,Annie Martin Brown,1301 Oakdale St.,,Ruston,LA,71270,318-255-0420,B,F,D,245,01/08/2012,01/14/2008,Ms. Brown -Police Juror ,District 11 ,P. O. Box 979,,Ruston,LA,71273-0979 ,318-251-5149,LINCOLN,Sharyon Mayfield,620 Adams Street,,Ruston,LA,71270,318-251-3298,B,F,D,245,01/08/2012,01/14/2008,Ms. Mayfield -Police Juror ,District 12 ,P. O. Box 979,,Ruston,LA,71273-0979 ,318-251-5149,LINCOLN,"R. D. ""Mickey"" Mays",1318 South Barnett Springs Rd.,,Ruston,LA,71270,318-255-0038,W,M,,245,01/08/2012,01/14/2008,Mr. Mays -City Judge ,"City Court, City of Ruston ",P. O. Box 1821,,Ruston,LA,71273-1821,318-251-8614,LINCOLN,Danny W. Tatum,3721 Moreland St.,,Ruston,LA,71270,318-251-8614,W,M,D,250,12/31/2014,01/01/2009,Judge Tatum -City Marshal ,"City Court, City of Ruston ",P. O. Box 1821,,Ruston,LA,71273-1821,318-255-7788,LINCOLN,Michael Hilton,912 Robert St.,,Ruston,LA,71270,318-251-0454,W,M,D,250,12/31/2014,01/01/2009,Marshal Hilton -Member of School Board ,District 1 ,410 S. Farmerville St.,,Ruston,LA,71270-4699,318-255-1430,LINCOLN,Mattie M. Harrison,"1468 Martin Luther King, Jr. Ave.",,Grambling,LA,71245,318-247-6040,B,F,D,255,12/31/2010,01/01/2007,Ms. Harrison -Member of School Board ,District 2 ,410 S. Farmerville St.,,Ruston,LA,71270-4699,318-255-1430,LINCOLN,Eddie Milton Jones,P.O. Box 494,,Grambling,LA,71245,318-247-6715,B,M,D,255,12/31/2010,01/01/2007,Mr. Jones -Member of School Board ,District 3 ,410 S. Farmerville St.,,Ruston,LA,71270-4699,318-255-1430,LINCOLN,Curtis Dowling,10601 Hwy. 80,,Simsboro,LA,71275,318-247-3380,W,M,D,255,12/31/2010,01/01/2007,Mr. Dowling -Member of School Board ,District 4 ,410 S. Farmerville St.,,Ruston,LA,71270-4699,318-255-1430,LINCOLN,Michael J. Barmore,204 New Prospect Rd.,,Dubach,LA,71235,318-777-3761,W,M,R,255,12/31/2010,01/01/2007,Mr. Barmore -Member of School Board ,District 5 ,410 S. Farmerville St.,,Ruston,LA,71270-4699,318-255-1430,LINCOLN,"James ""Jim"" Kessler",987 Roach Rd.,,Choudrant,LA,71227,318-768-2873,W,M,D,255,12/31/2010,01/01/2007,Mr. Kessler -Member of School Board ,District 6 ,410 S. Farmerville St.,,Ruston,LA,71270-4699,318-255-1430,LINCOLN,"Joe E. Mitcham, Jr.",949 Woods Rd.,,Ruston,LA,71270,318-255-9292,W,M,R,255,12/31/2010,01/01/2007,Mr. Mitcham -Member of School Board ,District 7 ,410 S. Farmerville St.,,Ruston,LA,71270-4699,318-255-1430,LINCOLN,"""Trott"" Hunt",206 Chautauqua Rd.,,Ruston,LA,71270,318-251-1079,W,M,R,255,12/31/2010,01/01/2007,Mr. Hunt -Member of School Board ,District 8 ,410 S. Farmerville St.,,Ruston,LA,71270-4699,318-255-1430,LINCOLN,Lisa Best,1997 Atkins Rd.,,Ruston,LA,71270,318-251-2348,W,F,R,255,12/31/2010,01/01/2007,Ms. Best -Member of School Board ,District 9 ,410 S. Farmerville St.,,Ruston,LA,71270-4699,318-255-1430,LINCOLN,Lynda Henderson,P.O. Box 1027,,Ruston,LA,71273,318-251-1299,B,F,O,255,12/31/2010,01/01/2007,Ms. Henderson -Member of School Board ,District 10 ,410 S. Farmerville St.,,Ruston,LA,71270-4699,318-255-1430,LINCOLN,Otha Anders,511 Grant Ave.,,Ruston,LA,71270,318-255-9670,B,M,D,255,12/31/2010,01/01/2007,Mr. Anders -Member of School Board ,District 11 ,410 S. Farmerville St.,,Ruston,LA,71270-4699,318-255-1430,LINCOLN,"George Mack, Sr.",1206 Taylor St.,,Ruston,LA,71270,318-255-5917,B,M,D,255,12/31/2010,01/01/2007,Mr. Mack -Member of School Board ,District 12 ,410 S. Farmerville St.,,Ruston,LA,71270-4699,318-255-1430,LINCOLN,Ted McKinney,1607 Ravine Dr.,,Ruston,LA,71270,318-255-8530,W,M,D,255,12/31/2010,01/01/2007,Mr. McKinney -Justice of the Peace ,Justice of the Peace Ward 2 ,P. O. Box 148,,Grambling,LA,71245,318-247-6446,LINCOLN,Richard J. Gallot,P.O. Box 148,,Grambling,LA,71245,318-247-6446,B,M,D,265,12/31/2014,01/01/2009,Mr. Gallot -Justice of the Peace ,Justice of the Peace Ward 3 ,5570 LA Hwy. 563,,Simsboro,LA,71275,318-247-8250,LINCOLN,Heath Hattaway,P.O. Box 96,,Simsboro,LA,71275,318-243-4584,W,M,R,265,12/31/2014,01/01/2009,Mr. Hattaway -Justice of the Peace ,Justice of the Peace Ward 4 ,441 LA Hwy. 545,,Dubach,LA,71235,318-777-8314,LINCOLN,Barbra Barmore,441 Hwy. 545,,Dubach,LA,71235,318-777-8314,W,F,R,265,12/31/2014,01/01/2009,Mr. Barmore -Justice of the Peace ,Justice of the Peace Ward 5 ,P. O. Box 29,,Choudrant,LA,71227,318-768-2692,LINCOLN,Steve Moore,P.O. Box 29,,Choudrant,LA,71227,318-768-2692,W,M,D,265,12/31/2014,01/01/2009,Mr. Moore -Constable ,Justice of the Peace Ward 2 ,P.O. Box 1031,,Grambling,LA,71245,318-247-8387,LINCOLN,"Ta'Darren ""Smokey"" Jackson",P.O. Box 1031,,Grambling,LA,71245,318-243-5111,B,M,,267,12/31/2014,01/01/2009,Mr. Jackson -Constable ,Justice of the Peace Ward 3 ,P.O. Box 145,,Simsboro,LA,71275,318-247-3602,LINCOLN,David Kent,297 Weir Rd.,,Simsboro,LA,71275,318-247-8738,W,M,D,267,12/31/2014,01/01/2009,Mr. Kent -Constable ,Justice of the Peace Ward 4 ,441 LA Hwy. 545,,Dubach,LA,71235,318-777-8314,LINCOLN,Prentis Barmore,441 Hwy. 545,,Dubach,LA,71235,318-777-8314,W,M,R,267,12/31/2014,01/01/2009,Mr. Barmore -Constable ,Justice of the Peace Ward 5 ,P.O. Box 81,,Choudrant,LA,71227,318-768-2591,LINCOLN,Jack C. Pipes,P.O. Box 81,,Choudrant,LA,71227,318-768-2591,W,M,R,267,12/31/2014,01/01/2009,Mr. Pipes -Mayor ,City of Grambling ,P. O. Box 108,,Grambling,LA,,318-247-6120,LINCOLN,Martha Woodard Andrus,P.O. Box 582,,Grambling,LA,71245,318-247-6491,B,F,D,300,12/31/2010,01/01/2007,Ms. Andrus -Mayor ,City of Ruston ,P. O. Box 2069,,Ruston,LA,,318-251-8621,LINCOLN,"""Dan"" Hollingsworth",109 Llanfair Dr.,,Ruston,LA,71270,318-255-7569,W,M,O,300,12/31/2010,01/01/2007,Mayor Hollingsworth -Mayor ,Town of Dubach ,P. O. Box 252,,Dubach,LA,,318-777-3321,LINCOLN,Margaret Rogers,P.O. Box 423,,Dubach,LA,71235,318-777-3412,W,F,R,300,12/31/2010,01/01/2007,Ms. Rogers -Mayor ,Town of Vienna ,P. O. Box 980,,Ruston,LA,,318-251-2913,LINCOLN,"""Randy"" Graham",203 Deer Trial,,,LA,71235,318-255-2913,W,M,R,300,01/09/2012,01/14/2008,Mayor Graham -Mayor ,Village of Choudrant ,P. O. Box 288,,Choudrant,LA,,318-768-4111,LINCOLN,"""Bill"" Sanderson",P. O. Box 141,,Choudrant,LA,71227,318-768-2179,W,M,R,300,12/31/2010,01/01/2007 -Mayor ,Village of Simsboro ,P. O. Box 40,,Simsboro,LA,,318-247-6248,LINCOLN,Willie Hendricks,P.O. Box 192,,Simsboro,LA,71275,318-247-3504,B,M,R,300,12/31/2010,01/01/2007,Mayor Hendricks -Chief of Police ,Town of Dubach ,,,,LA,,,LINCOLN,Russell Croxton,2037 McMullen St.,,Dubach,LA,71235,318-777-3365,W,M,,305,12/31/2010,01/01/2007,Mr. Croxton -Chief of Police ,Village of Choudrant ,P. O. Box 288,,Choudrant,LA,71227,318-768-4111,LINCOLN,Bobby Joe Milner,212 Pine St.,,Choudrant,LA,71227,318-768-2977,W,M,R,305,12/31/2010,01/01/2007 -Chief of Police ,Village of Simsboro ,P. O. Box 40,,Simsboro,LA,71275,318-247-6350,LINCOLN,Billy C. Foster,2402 Martha St.,,Simsboro,LA,71275,318-247-0581,W,M,D,305,12/31/2010,01/01/2007,Chief Foster -Alderman ,Village of Choudrant ,P. O. Box 288,,Choudrant,LA,71227,318-768-4111,LINCOLN,Ragan Aswell,P.O. Box 265,,Choudrant,LA,71227,318-768-2113,W,M,D,310,12/31/2010,01/01/2007,Ms. Aswell -Alderman ,Village of Choudrant ,P. O. Box 288,,Choudrant,LA,71227,318-768-4111,LINCOLN,"Geraline ""Skip"" Morrison",P.O. Box 267,,Choudrant,LA,71227,318-768-2185,W,F,D,310,12/31/2010,01/01/2007,Ms. Morris -Alderman ,Village of Choudrant ,P. O. Box 288,,Choudrant,LA,71227,318-768-4111,LINCOLN,"John O'Neal, Jr.",P. O. Box 536,,Choudrant,LA,71227,318-768-2516,W,M,D,310,12/31/2010,01/01/2007,Mr. O'neal -Alderman ,Village of Simsboro ,P. O. Box 40,,Simsboro,LA,71275,318-247-6350,LINCOLN,"""Doug"" Durrett",P.O. Box 296,,Simsboro,LA,71275,318-247-8197,W,M,D,310,12/31/2010,01/01/2007,Mr. Durrett -Alderman ,Village of Simsboro ,P. O. Box 40,,Simsboro,LA,71275,318-247-6350,LINCOLN,Pamela Durrett,2419 Martha St.,,Simsboro,LA,71275,318-247-0833,W,F,,310,12/31/2010,01/01/2007,Ms. Durrett -Alderman ,Village of Simsboro ,P. O. Box 40,,Simsboro,LA,71275,318-247-6350,LINCOLN,James Al Madden,3545 Hwy. 150,,Simsboro,LA,71275,318-247-8744,W,M,D,310,12/31/2010,01/01/2007,Mr. Madden -Alderman ,"Ward 1, City of Ruston ",P. O. Box 2069,,Ruston,LA,71273-2069,318-251-8621,LINCOLN,Levell Thurman,1608 Skyline Dr.,,Ruston,LA,71270,318-251-9342,B,M,D,310,12/31/2010,01/01/2007,Mr. Thurman -Alderman ,"Ward 2, City of Ruston ",P. O. Box 2069,,Ruston,LA,71273-2069,318-251-8621,LINCOLN,Elmore Mayfield,1400 Oriole Ave.,,Ruston,LA,71270,318-255-1073,B,M,D,310,12/31/2010,01/01/2007,Mr. Mayfield -Alderman ,"Ward 3, City of Ruston ",P. O. Box 2069,,Ruston,LA,71273-2069,318-251-8621,LINCOLN,Jedd Lewis,305 Arkansas Street,,Ruston,LA,71270,318-255-2634,W,M,R,310,12/31/2010,01/01/2007,Mr. Lewis -Alderman ,"Ward 4, City of Ruston ",P. O. Box 2069,,Ruston,LA,71273-2069,318-251-8621,LINCOLN,Jim Pearce,515 Toma Lodge Dr.,,Ruston,LA,71270,318-251-2866,W,M,D,310,12/31/2010,01/01/2007,Mr. Pearce -Alderman ,"Ward 5, City of Ruston ",P. O. Box 2069,,Ruston,LA,71273-2069,318-251-8621,LINCOLN,Marie S. Riggs,905 Robinette Dr.,,Ruston,LA,71270,318-255-4093,W,F,D,310,12/31/2010,01/01/2007,Ms. Riggs -Council Member ,City of Grambling ,P. O. Box 108,,Grambling,LA,71245,318-247-6120,LINCOLN,Alvin Bradley,270 Mockingbird Ln.,,Grambling,LA,71245,318-247-6317,B,M,D,310,12/31/2010,01/01/2007,Mr. Bradley -Council Member ,City of Grambling ,P. O. Box 108,,Grambling,LA,71245,318-247-6120,LINCOLN,Toby B. Bryan,P.O. Box 977,,Grambling,LA,71245,318-247-6727,B,M,D,310,12/31/2010,01/01/2007,Mr. Bryan -Council Member ,City of Grambling ,P. O. Box 108,,Grambling,LA,71245,318-247-6120,LINCOLN,"Roosevelt Bryant, Jr.",P.O. Box 254,,Grambling,LA,71245,318-247-3388,B,M,D,310,12/31/2010,01/01/2007,Mr. Bryant -Council Member ,City of Grambling ,P. O. Box 108,,Grambling,LA,71245,318-247-6120,LINCOLN,Roy L. Jackson,112 Wayside Dr.,,Grambling,LA,71245,318-247-3446,B,M,D,310,12/31/2010,02/23/2009,Mr. Jackson -Council Member ,City of Grambling ,P. O. Box 108,,Grambling,LA,71245,318-247-6120,LINCOLN,Edward R. Jones,P. O. Box 159,,Grambling,LA,71245,318-247-0099,B,M,D,310,12/31/2010,01/01/2007,Mr. Jones -Council Member ,"District A, Town of Dubach ",P. O. Box 252,,Dubach,LA,71235,318-777-3321,LINCOLN,Vallie Carrico,P.O. Box 461,,Dubach,LA,71235,318-777-3551,W,F,R,310,12/31/2010,01/01/2007,Ms. Carrico -Council Member ,"District B, Town of Dubach ",P. O. Box 252,,Dubach,LA,71235,318-777-3321,LINCOLN,Reuben Sparks,P.O. Box 87,,Dubach,LA,71235,318-777-3938,W,M,R,310,12/31/2010,01/01/2007,Mr. Sparks -Council Member ,"District C, Town of Dubach ",P. O. Box 252,,Dubach,LA,71235,318-777-3321,LINCOLN,Mary Alice Billberry,8075 Hico St.,,Dubach,LA,71235,318-777-8312,W,F,R,310,12/31/2010,01/01/2007,Ms. Billberry -Council Member ,"District D, Town of Dubach ",P. O. Box 252,,Dubach,LA,71235,318-777-3321,LINCOLN,Davie Powell,158 Voss Street,,Dubach,LA,71235,318-777-8653,B,M,D,310,12/31/2010,01/01/2007,Mr. Powell -Council Member ,"District E, Town of Dubach ",P. O. Box 252,,Dubach,LA,71235,318-777-3321,LINCOLN,Hattie Graham,P.O. Box 746,,Dubach,LA,71235,318-777-8781,B,F,D,310,12/31/2010,01/01/2007,Ms. Graham -Councilmen ,Town of Vienna ,P. O. Box 980,,Ruston,LA,71273,318-251-2913,LINCOLN,Keith Brasuell,212 Deer Trail,,Dubach,LA,71235,318-251-2073,W,M,,310,01/09/2012,01/14/2008,Mr. Brasuell -Councilmen ,Town of Vienna ,P. O. Box 980,,Ruston,LA,71273,318-251-2913,LINCOLN,"Walter Carpenter, Jr.",153 Deer Trail,,Dubach,LA,71235,318-254-8158,W,M,R,310,01/08/2012,08/24/2009,Mr. Carpenter -Councilmen ,Town of Vienna ,P. O. Box 980,,Ruston,LA,71273,318-251-2913,LINCOLN,Thomas P. Smith,119 Woodvale Dr.,,Dubach,LA,71235,318-251-2114,W,M,R,310,01/09/2012,01/14/2008,Mr. Smith -DPEC Member ,at Large ,,,,LA,,,LIVINGSTON,Larry Arceneaux,30807 Hwy. 22,,Springfield,LA,70462,225-294-5833,W,M,D,054,02/20/2012,02/20/2008,Mr. Arceneaux -DPEC Member ,at Large ,,,,LA,,,LIVINGSTON,DeVan Pardue,23940 Coats Rd.,,Springfield,LA,70462,,W,M,D,054,02/20/2012,02/20/2008,Mr. Pardue -DPEC Member ,at Large ,,,,LA,,,LIVINGSTON,Hobart Pardue,P.O. Box 369,,Springfield,LA,70462,225-294-5138,W,M,D,054,02/20/2012,02/20/2008,Mr. Pardue -DPEC Member ,at Large ,,,,LA,,,LIVINGSTON,Hubert Stilley,30158 West H. Stilley Rd.,,Independence,LA,70443,225-567-3404,W,M,D,054,02/20/2012,02/20/2008,Mr. Stilley -DPEC Member ,District 1 ,,,,LA,,,LIVINGSTON,,,,,,,,,,,056 -DPEC Member ,District 2 ,,,,LA,,,LIVINGSTON,"""Gene"" Williams",P.O. Box 306,,Denham Springs,LA,70727,225-665-6056,W,M,D,056,02/20/2012,02/20/2008,Mr. Williams -DPEC Member ,District 3 ,,,,LA,,,LIVINGSTON,,,,,,,,,,,056 -DPEC Member ,District 4 ,,,,LA,,,LIVINGSTON,"""Al"" Comeaux",725 Poplar St.,,Denham Springs,LA,70726,225-664-9512,W,M,D,056,02/20/2012,02/20/2008,Mr. Comeaux -DPEC Member ,District 5 ,,,,LA,,,LIVINGSTON,,,,,,,,,,,056 -DPEC Member ,District 6 ,,,,LA,,,LIVINGSTON,Kevin Hull,20469 LA Hwy. 16,,Denham Springs,LA,70726,225-405-1362,W,M,D,056,02/20/2012,02/20/2008,Mr. Hull -DPEC Member ,District 7 ,,,,LA,,,LIVINGSTON,,,,,,,,,,,056 -DPEC Member ,District 8 ,,,,LA,,,LIVINGSTON,,,,,,,,,,,056 -DPEC Member ,District 9 ,,,,LA,,,LIVINGSTON,Cassandra Butler,P.O. Box 407,,Independence,LA,70443,985-878-4881,B,F,D,056,02/20/2012,02/20/2008,Ms. Butler -RPEC Member ,at Large ,,,,LA,,,LIVINGSTON,Derek Babcock,13600 Quail Run Ave.,,Denham Springs,LA,70726,225-505-9505,W,M,R,064,02/20/2012,02/20/2008,Mr. Babcock -RPEC Member ,at Large ,,,,LA,,,LIVINGSTON,Floyd Gonzalez,14112 Forest Glen Ln.,,Walker,LA,70785,225-664-4169,W,M,R,064,02/20/2012,02/20/2008,Mr. Gonzales -RPEC Member ,at Large ,,,,LA,,,LIVINGSTON,Cylton Joe Mitchell,920 Angee Dr.,,Denham Springs,LA,70726,225-664-0288,W,M,R,064,02/20/2012,02/20/2008,Mr. Mitchell -RPEC Member ,at Large ,,,,LA,,,LIVINGSTON,George Slaght,25920 Oak Alley,,Holden,LA,70744,225-294-5883,W,M,R,064,02/20/2012,02/20/2008,"Mr, Slaght " -RPEC Member ,at Large ,,,,LA,,,LIVINGSTON,James Tullier,27300 Tullier Ln.,,Denham Springs,LA,70726,225-664-7063,W,M,R,064,02/20/2012,02/20/2008,Mr. Palmer -RPEC Member ,District 1 ,121 Joan St.,,Cenham Springs,LA,70726,,LIVINGSTON,,,,,,,,,,,066 -RPEC Member ,District 2 ,,,,LA,,,LIVINGSTON,Carolyn R. Hatcher,35130 Stone Castle Dr.,,Denham Springs,LA,70706,225-667-8163,W,F,R,066,02/20/2012,02/20/2008,Ms. Hatcher -RPEC Member ,District 3 ,,,,LA,,,LIVINGSTON,,,,,,,,,,,066 -RPEC Member ,District 4 ,,,,LA,,,LIVINGSTON,"Robert W. ""Bob"" Morgan",232 Third St.,,Denham Springs,LA,70726,225-223-2144,W,M,R,066,02/20/2012,02/20/2008,Mr. Morgan -RPEC Member ,District 5 ,,,,LA,,,LIVINGSTON,Jason Stern,10872 Sherrie Lane,,Denham Springs,LA,70726,225-709-0525,W,M,R,066,02/20/2012,02/20/2008,Mr. Stern -RPEC Member ,District 6 ,,,,LA,,,LIVINGSTON,,,,,,,,,,,066 -RPEC Member ,District 7 ,,,,LA,,,LIVINGSTON,Gerald L. Burns,28630 Juban Road,,Denham Springs,LA,70726,225-664-3463,W,M,R,066,02/20/2012,02/20/2008,Mr. Burns -RPEC Member ,District 8 ,,,,LA,,,LIVINGSTON,,,,,,,,,,,066 -RPEC Member ,District 9 ,,,,LA,,,LIVINGSTON,,,,,,,,,,,066 -Sheriff ,,P. O. Box 850,,Livingston,LA,70754,225-686-2241,LIVINGSTON,"William L. ""Willie"" Graves",P.O. Box 850,,Livingston,LA,70754,225-665-2721,W,M,D,225,06/30/2012,07/01/2008,Sheriff Graves -Clerk of Court ,,P. O. Box 1150,,Livingston,LA,70754,225-686-2216,LIVINGSTON,"Thomas ""Tom"" Sullivan, Jr.",P. O. Box 1150,,Livingston,LA,70754,225-665-6464,W,M,R,230,06/30/2012,07/01/2008,Mr. Sullivan -Assessor ,,P. O. Box 307,,Livingston,LA,70754,225-686-7278,LIVINGSTON,Jeff Taylor,8082 Evergreen Drive,,Denham Springs,LA,70726,225-667-2795,W,M,R,235,12/31/2012,01/01/2009,Mr. Taylor -Coroner ,,140 Aspen Square,,Denham Springs,LA,70726,225-791-1152,LIVINGSTON,Ron Coe,25153 Arlington Ave.,,Denham Springs,LA,70726,225-664-4737,W,M,R,240,03/25/2012,03/24/2008,Mr. Coe -Parish President ,,P.O. Box 335,,Livingston,LA,70754,225-686-3027,LIVINGSTON,"Michael ""Mike"" Grimmer",13246 Pendarvis Lane,,Walker,LA,70785,225-665-5351,W,M,D,243,01/09/2012,01/14/2008,Mr. Grimmer -Councilman,District 1,P. O. Box 335,,Livingston,LA,70754,225-686-3027,LIVINGSTON,"Randall ""Randy"" Rushing",31200 Weiss Rd.,,Walker,LA,70785,225-686-2886,W,M,D,245,01/09/2012,01/14/2008,Mr. Rushing -Councilman ,District 2 ,P. O. Box 335,,Livingston,LA,70754,225-686-3027,LIVINGSTON,Jimmie McCoy,37375 La Hwy 16,,Denham Springs,LA,70706,225-573-8020,W,M,R,245,01/09/2012,01/14/2008,Mr. McCoy -Councilman ,District 3 ,P. O. Box 335,,Livingston,LA,70754,225-686-3027,LIVINGSTON,Cindy Wale,9417 Prince Charles,,Denham Springs,LA,70726,225-665-7765,W,F,D,245,01/09/2012,01/14/2008,Ms. Wale -Councilman ,District 4 ,P. O. Box 335,,Livingston,LA,70754,225-686-3027,LIVINGSTON,Marshall H. Harris,704 Tom Dr.,,Denham Springs,LA,70726,225-664-6647,W,M,D,245,01/09/2012,01/14/2008,Mr. Harris -Councilman ,District 5 ,P. O. Box 335,,Livingston,LA,70754,225-686-3027,LIVINGSTON,"Albert ""Buddy"" Mincey",10961 La. Hwy 1033,,Denham Springs,LA,70726,225-665-6504,W,M,D,245,01/09/2012,01/14/2008,Mr. Mincey -Councilman ,District 6 ,P. O. Box 335,,Livingston,LA,70754,225-686-3027,LIVINGSTON,Don Wheat,27179 S. Satsuma Rd.,,Livingston,LA,70754,225-698-3406,W,M,D,245,01/09/2012,01/14/2008,Mr. Wheat -Councilman ,District 7 ,P. O. Box 335,,Livingston,LA,70754,225-686-3027,LIVINGSTON,Thomas Watson,12395 Lakeland Dr.,,Walker,LA,70785,225-791-3944,W,M,R,245,01/09/2012,01/14/2008,Mr. Watson -Councilman ,District 8 ,P. O. Box 335,,Livingston,LA,70754,225-686-3027,LIVINGSTON,"Ronald Sharp, Sr.",29946 Hwy. 444,,Springfield,LA,70462,225-695-3627,W,M,D,245,01/09/2012,01/14/2008,Mr. Sharp -Councilman ,District 9 ,P. O. Box 335,,Livingston,LA,70754,225-686-3027,LIVINGSTON,Eddie Wagner,32290 Pea Ridge Rd.,,Albany,LA,70711,225-567-2524,W,M,D,245,01/09/2012,01/14/2008,Mr. Wagner -City Judge ,"City Court, City of Denham Springs ",400 Mayor Herbert Hoover Ave.,,Denham Springs,LA,70726,225-665-5505,LIVINGSTON,"Charles W. ""Chuck"" Borde, Jr.",P.O. Box 728,,Denham Springs,LA,70727,225-665-1253,W,M,D,250,12/31/2014,01/01/2009,Judge Borde -City Marshal ,"City Court, City of Denham Springs ",400 Mayor Hebert Hoover Ave.,,Denham Springs,LA,70726,225-665-8568,LIVINGSTON,"Jerry L. Denton, Jr.",930 Benton Ln.,,Denham Springs,LA,70726,225-667-8702,W,M,R,250,12/31/2014,01/01/2009,Marshal Denton -Member of School Board ,District 1 ,P. O. Box 1130,,Livingston,LA,70754,225-686-7044,LIVINGSTON,"Clinton ""Clint"" Mitchell",29845 Lard Rd.,,Holden,LA,70744,225-657-1850,W,M,D,255,12/31/2010,01/01/2007,Mr. Mitchell -Member of School Board ,District 2 ,P. O. Box 1130,,Livingston,LA,70754,225-686-4221,LIVINGSTON,David A. Tate,35491 Old La. Hwy. 16,,Denham Springs,LA,70706,225-665-0000,W,M,R,255,12/31/2010,01/01/2007,Mr. Tate -Member of School Board ,District 3 ,P. O. Box 1130,,Livingston,LA,70754,225-686-4221,LIVINGSTON,Milton Hughes,P.O. Box 487,,Denham Springs,LA,70726,225-664-4552,W,M,D,255,12/31/2010,01/01/2007,MR. Hughes -Member of School Board ,District 4 ,P. O. Box 1130,,Livingston,LA,70754,225-686-4221,LIVINGSTON,"Louis E. ""Loody"" Carlisle",P.O. Box 622,,Denham Springs,LA,70726,225-665-6078,W,M,D,255,12/31/2010,01/01/2007,Mr. Carlisle -Member of School Board ,District 5 ,P. O. Box 1130,,Livingston,LA,70754,225-686-4221,LIVINGSTON,"Albert ""Buddy"" Mincey, Jr.",10983 La. Hwy. 1033,,Denham Springs,LA,70726,225-667-3811,W,M,D,255,12/31/2010,01/01/2007,Mr. Mincey -Member of School Board ,District 6 ,P. O. Box 1130,,Livingston,LA,70754,225-686-4221,LIVINGSTON,"Jeffery ""Jeff"" Cox",34121 Cane Market Rd.,,Walker,LA,70785,225-664-8084,W,M,D,255,12/31/2010,01/01/2007,Mr. Cox -Member of School Board ,District 7 ,P. O. Box 1130,,Livingston,LA,70754,225-686-4221,LIVINGSTON,"James ""Jimmy"" Watson",13561 Graham Ln.,,Walker,LA,70785,225-665-5705,W,M,R,255,12/31/2010,01/01/2007,Mr. Watson -Member of School Board ,District 8 ,P. O. Box 1130,,Livingston,LA,70754,225-686-4221,LIVINGSTON,Keith Martin,P.O. Box 211,,Springfield,LA,70462,225-695-3721,W,M,D,255,12/31/2010,01/01/2007,Mr. Martin -Member of School Board ,District 9 ,P. O. Box 1130,,Livingston,LA,70754,225-686-4221,LIVINGSTON,"""Sid"" Kinchen",P.O. Box 1883,,Albany,LA,70711,225-567-1109,W,M,D,255,12/31/2010,01/01/2007,Mr. Kinchen -Justice of the Peace ,Justice of the Peace Ward 1 ,P. O. Box 33,,Watson,LA,70786,225-667-1500,LIVINGSTON,Jeff Sachse,34674 LA Hwy. 16,,Denham Springs,LA,70706,225-667-1500,W,M,R,265,12/31/2014,01/01/2009,Mr. Sachse -Justice of the Peace ,Justice of the Peace Ward 3 ,,,,LA,,,LIVINGSTON,Rhonda Dale Wheat,20800 Adam Averett Rd.,,Livingston,LA,70754,225-698-6673,W,F,D,265,12/31/2014,01/01/2009,Ms. Wheat -Justice of the Peace ,Justice of the Peace Ward 4 ,P. O. Box 53,,Albany,LA,70711,225-567-3822,LIVINGSTON,Max C. Owens,P.O. Box 53,,Albany,LA,70711,225-567-3822,W,M,D,265,12/31/2014,01/01/2009,Mr. Owens -Justice of the Peace ,Justice of the Peace Ward 5 ,14724 Bear Island Rd.,,Maurepas,LA,70449,225-695-3666,LIVINGSTON,"Lena ""Bitsy"" Balfantz",14724 Bear Island Rd.,,Maurepas,LA,70449,225-695-3666,W,F,D,265,12/31/2014,01/01/2009,Mr. Balfantz -Justice of the Peace ,Justice of the Peace Ward 6 ,P. O. Box 643,,Springfield,LA,70462,225-294-2864,LIVINGSTON,Mary Vicknair Bennett,P.O. Box 643,,Springfield,LA,70462,225-294-2864,W,F,D,265,12/31/2014,01/01/2009,Ms. Bennett -Justice of the Peace ,Justice of the Peace Ward 7 ,10964 LA Hwy. 1033,,Denham Springs,LA,70726,225-664-9151,LIVINGSTON,Sandra Allen Causey,10964 La. Hwy. 1033,,Denham Springs,LA,70726,225-664-9151,W,F,D,265,12/31/2014,01/01/2009,Ms. Causey -Justice of the Peace ,Justice of the Peace Ward 8 ,32447 Mangum Chapel Rd.,,Walker,LA,70785,225-686-3890,LIVINGSTON,Lance Radley,32447 Mangum Chapel Rd.,,Walker,LA,70785,225-686-3890,W,M,D,265,12/31/2014,01/01/2009,Mr. Radley -Justice of the Peace ,Justice of the Peace Ward 9 ,P.O. Box 657,,Livingston,LA,70754,225-686-7920,LIVINGSTON,Rita Stewart,P.O. Box 657,,Livingston,LA,70754,225-686-8244,W,F,D,265,12/31/2014,01/01/2009,Ms. Stewart -Justice of the Peace ,Justice of the Peace Ward 10 ,30560 Lower Rome Rd.,,Springfield,LA,70462,225-695-3217,LIVINGSTON,"Judith ""Judy"" White",P.O. Box 921,,Springfield,LA,70462,225-695-3508,W,F,D,265,12/31/2014,01/01/2009,Ms. White -Justice of the Peace ,Justice of the Peace Ward 11 ,30930 N. Walker Rd.,,Walker,LA,70785,225-664-2893,LIVINGSTON,Cindy Strange Small,30930 Walker N. Rd.,,Walker,LA,70785,225-664-2893,W,F,R,265,12/31/2014,01/01/2009,Ms. Small -Constable ,Justice of the Peace Ward 1 ,37354 LA Hwy. 16,,Denham Springs,LA,70726,225-664-7695,LIVINGSTON,"Richard ""Ricky"" Chandler",37354 Hwy. 16,,Denham Springs,LA,70706,225-664-7695,W,M,D,267,12/31/2014,01/01/2009,Mr. Chandler -Constable ,Justice of the Peace Ward 3 ,20150 LA Hwy. 444,,Livingston,LA,70754,225-698-6276,LIVINGSTON,M. Warren Watts,20150 Hwy. 444,,Livingston,LA,70754,225-698-3245,W,M,D,267,12/31/2014,01/01/2009,Mr. Watts -Constable ,Justice of the Peace Ward 4 ,31868 LA Hwy. 43,,Albany,LA,70711,225-567-3167,LIVINGSTON,Bruce Bennett,31868 Hwy. 43,,Albany,LA,70711,225-567-3167,W,M,D,267,12/31/2014,01/22/2009,Mr. Bennett -Constable ,Justice of the Peace Ward 5 ,23272 LA Hwy. 22,,Maurepas,LA,70449,225-695-3127,LIVINGSTON,"Carroll ""Wayne"" Bates",23272 Hwy. 22,,Maurepas,LA,70449,225-695-3127,W,M,D,267,12/31/2014,01/01/2009,Mr. Bates -Constable ,Justice of the Peace Ward 6 ,24601 Blood River Rd.,,Springfield,LA,70462,225-294-5571,LIVINGSTON,Glenn Hoover,24601 Blood River Rd.,,Springfield,LA,70462,225-294-5571,W,M,D,267,12/31/2014,01/01/2009,Mr. Hoover -Constable ,Justice of the Peace Ward 7 ,24832 Joe May Rd.,,Denham Springs,LA,70726,225-665-5550,LIVINGSTON,Ronnie Causey,10964 La. Hwy. 1033,,Denham Springs,LA,70726,225-664-9151,W,M,R,267,12/31/2014,01/01/2009,Mr. Causey -Constable ,Justice of the Peace Ward 8 ,P.O. Box 241,,Livingston,LA,70754,225-686-0229,LIVINGSTON,"James ""Jimmy"" Alford",31734 LA Hwy. 1036,,Holden,LA,70744,225-567-3580,W,M,D,267,12/31/2014,01/01/2009,Mr. Alford -Constable ,Justice of the Peace Ward 9 ,P.O. Box 241,,Livingston,LA,70754,225-686-0229,LIVINGSTON,Leroy Owens,P. O. Box 222,,Holden,LA,70744,225-567-6611,W,M,R,267,12/31/2014,01/01/2009,Mr. Owens -Constable ,Justice of the Peace Ward 10 ,30770 Lower Rome Rd.,,Springfield,LA,70462,225-695-3741,LIVINGSTON,"Barry White, Sr.",P.O. Box 921,,Springfield,LA,70462,225-695-3508,W,M,D,267,12/31/2014,01/01/2009,Mr. White -Constable ,Justice of the Peace Ward 11 ,13172 Pendarvis Ln.,,Walker,LA,70785,225-665-2823,LIVINGSTON,Bobby R. Smith,27270 Watson Ln.,,Walker,LA,70785,225-665-5028,W,M,R,267,12/31/2014,01/01/2009,Mr. Smith -Mayor ,City of Denham Springs ,P. O. Box 1629,,Denham Springs,LA,,225-665-8121,LIVINGSTON,Jimmy Durbin,417 Centerville St. East,,Denham Springs,LA,70726,225-664-6126,W,M,D,300,12/31/2010,01/01/2007,Mr. Durbin -Mayor ,Town of Killian ,P. O. Box 546,,Springfield,LA,,225-695-6785,LIVINGSTON,Gillis Windham,28543 Hwy. 22,,Killian,LA,70462,225-695-3072,W,M,R,300,06/30/2013,07/01/2009,Mayor Windham -Mayor ,Town of Livingston ,P. O. Box 430,,Livingston,LA,,225-686-7153,LIVINGSTON,D. Derral Jones,20177 Circle Dr.,,Livingston,LA,70754,225-686-7619,W,M,D,300,12/31/2012,01/01/2009,Mayor Jones -Mayor ,Town of Springfield ,P. O. Box 352,,Springfield,LA,,225-294-3150,LIVINGSTON,"Charles E. ""Charlie"" Martin",P.O. Box 421,,Springfield,LA,70462,225-294-5491,W,M,D,300,06/30/2013,07/01/2009,Mayor Martin -Mayor ,Town of Walker ,P. O. Box 217,,Walker,LA,,225-664-3123,LIVINGSTON,Bobby Font,13791 Aydell Ln.,,Walker,LA,70785,225-667-0972,W,M,D,300,12/31/2012,01/01/2009,Mayor Font -Mayor ,Village of Albany ,P. O. Box 1000,,Albany,LA,,225-567-1101,LIVINGSTON,Thomas A. Stewart,P.O. BOX 1346,,Albany,LA,70711,225-567-2185,W,M,D,300,12/31/2010,01/01/2007,Mr. Stewart -Mayor ,Village of French Settlement ,P. O. Box 3,,French Settlement,LA,,225-698-6100,LIVINGSTON,Toni Guitrau,16619 Hwy. 16,,French Settlement,LA,70733,225-698-3646,W,F,D,300,12/31/2012,01/01/2009,Ms. Guitrau -Mayor ,Village of Port Vincent ,18235 Hwy. 16,,Port Vincent,LA,,225-698-9891,LIVINGSTON,Laura Sanders Savoy,18125 Savoy Lane,,Port Vincent,LA,70726,225-698-3357,W,F,R,300,12/31/2012,01/01/2009,Mayor Savoy -Chief of Police ,Town of Livingston ,P. O. Box 430,,Livingston,LA,,225-686-7153,LIVINGSTON,Randy M. Dufrene,P. O. Box 811,,Livingston,LA,70754,225-686-7153,W,M,D,305,12/31/2012,01/01/2009,Chief Dufrene -Chief of Police ,Town of Walker ,P. O. Box 217,,Walker,LA,70785,225-664-3123,LIVINGSTON,Hunter Grimes,32460 Dwayne Dr.,,Walker,LA,70726,225-791-6456,W,M,D,305,12/31/2012,01/01/2009,Chief Grimes -Chief of Police ,Village of Albany ,P. O. Box 1000,,Albany,LA,70711,225-567-1101,LIVINGSTON,Russell Deloy Hutchinson,P.O. Box 273,,Albany,LA,70711,225-567-3962,W,M,D,305,12/31/2010,01/01/2007,Mr. Hutchinson -Chief of Police ,Village of French Settlement ,P. O. Box 3,,French Settlement,LA,70733,225-698-6100,LIVINGSTON,"Harry G. Brignac, Sr.",15440 La. Hwy. 16,,French Settlement,LA,70733,225-698-3484,W,M,D,305,12/31/2012,01/01/2009,Chief Brignac -Alderman ,Town of Killian ,P. O. Box 546,,Springfield,LA,70462,225-695-6785,LIVINGSTON,"Jerry ""JJ"" Barnum, Jr.",28490 Ridge Ln.,,Killian,LA,70462,985-320-5493,W,M,D,310,06/30/2013,07/01/2009,Mr. Barnum -Alderman ,Town of Killian ,P. O. Box 546,,Springfield,LA,70462,225-695-6785,LIVINGSTON,Peter W. Bock,31533 Judith Dr.,,Killian,LA,70462,225-695-3584,W,M,,310,06/30/2013,07/01/2009,Mr. Bock -Alderman ,Town of Killian ,P. O. Box 546,,Springfield,LA,70462,225-695-6785,LIVINGSTON,"""Vince"" Deliberto, Jr.",20580 Riverside Rd.,,Killian,LA,70462,225-695-3530,W,M,,310,06/30/2013,07/01/2009,Mr. Deliberto -Alderman ,Town of Killian ,P. O. Box 546,,Springfield,LA,70462,225-695-6785,LIVINGSTON,Craig McGehee,31384 Lanta Ln.,,Springfield,LA,70462,225-695-6108,W,M,R,310,06/30/2013,07/01/2009,Mr. McGehee -Alderman ,Town of Killian ,P. O. Box 546,,Springfield,LA,70462,225-695-6785,LIVINGSTON,Dean A. Sharp,P.O. Box 1149,,Springfield,LA,70462,225-287-0362,W,M,R,310,06/30/2013,07/01/2009,Mr. Sharp -Alderman ,Town of Livingston ,P.O. Box 430,,Livingston,LA,70754,225-686-7153,LIVINGSTON,David R. Bencaz,P. O. Box 28,,Livingston,LA,70754,225-573-6916,W,M,D,310,12/31/2012,01/01/2009,Mr. Bencaz -Alderman ,Town of Livingston ,P.O. Box 430,,Livingston,LA,70754,225-686-7153,LIVINGSTON,David McCreary,P. O. Box 383,,Livingston,LA,70754,225-686-7319,W,M,O,310,12/31/2012,01/01/2009,Mr. McCreary -Alderman ,Town of Livingston ,P.O. Box 430,,Livingston,LA,70754,225-686-7153,LIVINGSTON,"Randall ""Randy"" Morgan",P.O. Box 182,,Livingston,LA,70754,225-686-7149,W,M,R,310,12/31/2012,01/01/2009,Mr. Morgan -Alderman ,Town of Livingston ,P.O. Box 430,,Livingston,LA,70754,225-686-7153,LIVINGSTON,Joey H. Sibley,P.O. Box 643,,Livingston,LA,70754,225-686-7533,W,M,D,310,12/31/2012,01/01/2009,Mr. Sibley -Alderman ,Town of Livingston ,P.O. Box 430,,Livingston,LA,70754,225-686-7153,LIVINGSTON,Wade Wilson,P.O. Box 154,,Livingston,LA,70754,225-686-2385,W,M,D,310,12/31/2012,08/24/2009,Mr. Wilson -Alderman ,Town of Springfield ,P. O. Box 352,,Springfield,LA,70462,225-294-3150,LIVINGSTON,Thomas R. Abels,P.O. Box 436,,Springfield,LA,70422,225-294-3959,W,M,D,310,06/30/2013,07/01/2009,Mr. Abels -Alderman ,Town of Springfield ,P. O. Box 352,,Springfield,LA,70462,225-294-3150,LIVINGSTON,Mary Ann Bissel,32690 Cullom Rd.,,Springfield,LA,70462,225-294-5444,W,F,D,310,06/30/2013,07/01/2009,Ms. Bissel -Alderman ,Town of Springfield ,P. O. Box 352,,Springfield,LA,70462,225-294-3150,LIVINGSTON,Mildred Ratcliff Cowsar,31466 Hyw. 22,,Springfield,LA,70462,225-294-5617,W,F,D,310,06/30/2013,07/01/2009,Ms. Cowsar -Alderman ,Town of Springfield ,P. O. Box 352,,Springfield,LA,70462,225-294-3150,LIVINGSTON,Marsha Threeton Sherburne,25564 McCarroll Rd.,,Springfield,LA,70462,225-294-3164,W,F,D,310,06/30/2013,07/01/2009,Ms. Sherburne -Alderman ,Town of Springfield ,P. O. Box 352,,Springfield,LA,70462,225-294-3150,LIVINGSTON,"""Johnny"" Vicknair",33290 Pitcher Rd.,,Springfield,LA,70462,225-294-5364,W,M,D,310,06/30/2013,07/01/2009,Mr. Vicknair -Alderman ,Town of Walker ,P. O. Box 217,,Walker,LA,70785,225-664-3123,LIVINGSTON,Elton Burns,30034 Corbin Ave.,,Walker,LA,70785,225-665-6605,W,M,D,310,12/31/2012,01/01/2009,Mr. Burks -Alderman ,Town of Walker ,P. O. Box 217,,Walker,LA,70785,225-664-3123,LIVINGSTON,Scarlett Milton Major,13699 Aydell Ln.,,Walker,LA,70785,225-665-6695,W,F,R,310,12/31/2012,01/01/2009,Ms. Major -Alderman ,Town of Walker ,P. O. Box 217,,Walker,LA,70785,225-664-3123,LIVINGSTON,James B. Phillips,28081 Foxfire Ave.,,Walker,LA,70785-8424,225-664-7046,W,M,R,310,12/31/2012,01/01/2009,Mr. Phillips -Alderman ,Town of Walker ,P. O. Box 217,,Walker,LA,70785,225-664-3123,LIVINGSTON,"""Jack"" Summerell",28351 Red Oak Dr.,,Walker,LA,70785,225-665-7738,W,M,R,310,12/31/2012,01/01/2009,Mr. Summerell -Alderman ,Town of Walker ,P. O. Box 217,,Walker,LA,70785,225-664-3123,LIVINGSTON,Richard Wales,13964 Guy St.,,Walker,LA,70785,,W,M,R,310,12/31/2012,01/01/2009,Mr. Wales -Alderman ,Village of Albany ,P. O. Box 1000,,Albany,LA,70711,225-567-1101,LIVINGSTON,"Lloyd E. ""Gene"" Glascock",P.O. Box 89,,Albany,LA,70711,225-567-9486,W,M,R,310,12/31/2010,01/01/2007,Mr. Glascock -Alderman ,Village of Albany ,P. O. Box 1000,,Albany,LA,70711,225-567-1101,LIVINGSTON,Edmond C. Harris,P.O. Box 105,,Albany,LA,70711,225-567-3133,W,M,D,310,12/31/2010,01/01/2007,Mr. Harris -Alderman ,Village of Albany ,P. O. Box 1000,,Albany,LA,70711,225-567-1101,LIVINGSTON,"Lloyd ""Bee"" Martin",P.O. Box 146,,Albany,LA,70711,225-567-2093,W,M,D,310,12/31/2010,01/01/2007,Mr. Martin -Alderman ,Village of French Settlement ,P. O. Box 3,,French Settlement,LA,70733,225-698-6100,LIVINGSTON,Sean M. Guitrau,16619 Hwy. 16,,French Settlement,LA,70733,225-698-3646,W,M,R,310,12/31/2012,01/01/2009,Mr. Guitrau -Alderman ,Village of French Settlement ,P. O. Box 3,,French Settlement,LA,70733,225-698-6100,LIVINGSTON,Teresa Miller,14360 Mecca Rd.,,French Settlement,LA,70733,225-698-1909,W,F,R,310,12/31/2012,01/01/2009,Ms. Miller -Alderman ,Village of French Settlement ,P. O. Box 3,,French Settlement,LA,70733,225-698-6100,LIVINGSTON,Glen Newell,14580 Rue Des Chenes Rd.,,French Settlement,LA,70733,225-698-6774,W,M,,310,12/31/2012,01/01/2009,Mr. Newell -Alderman ,Village of Port Vincent ,18235 Hwy. 16,,Port Vincent,LA,70726,225-698-9897,LIVINGSTON,David Carter,19334 Gourdon Ln.,,Port Vincent,LA,70726,225-698-6218,W,M,D,310,12/31/2012,01/01/2009,Mr. Carter -Alderman ,Village of Port Vincent ,18235 Hwy. 16,,Port Vincent,LA,70726,225-698-9897,LIVINGSTON,"Jeffrey ""Scotty"" Martone",19338 Gourdon Ln.,,Port Vincent,LA,70726,225-698-3982,W,M,R,310,12/31/2012,01/01/2009,Mr. Martone -Alderman ,Village of Port Vincent ,18235 Hwy. 16,,Port Vincent,LA,70726,225-698-9897,LIVINGSTON,"Johnnie ""J.J."" Page",19450 LA Hwy. 16,,Port Vincent,LA,70726,225-335-8555,W,M,R,310,12/31/2012,01/01/2009,Mr. Page -Council Member ,City of Denham Springs ,P. O. Box 1629,,Denham Springs,LA,70727-1629,225-665-8121,LIVINGSTON,Rene' Delahoussaye,211 Centerville St. NE,,Denham Springs,LA,70726,225-664-9617,W,M,D,310,12/31/2010,01/01/2007 -Council Member ,City of Denham Springs ,P. O. Box 1629,,Denham Springs,LA,70727-1629,225-665-8121,LIVINGSTON,"Ann M. ""Annie"" Fugler",P.O. Box 1912,,Denham Springs,LA,70727,225-328-5424,W,F,R,310,12/31/2010,04/14/2009,Ms. Fugler -Council Member ,City of Denham Springs ,P. O. Box 1629,,Denham Springs,LA,70727-1629,225-665-8121,LIVINGSTON,Lori Lamm-Williams,717 Poplar St.,,Denham Springs,LA,70726,225-665-4462,W,F,R,310,12/31/2010,01/01/2007 -Council Member ,City of Denham Springs ,P. O. Box 1629,,Denham Springs,LA,70727-1629,225-665-8121,LIVINGSTON,"Arthur L. Perkins, Sr.",906 Hatchell Ln.,,Denham Springs,LA,70726,225-664-6730,B,M,D,310,12/31/2010,01/01/2007 -Council Member ,City of Denham Springs ,P. O. Box 1629,,Denham Springs,LA,70727-1629,225-665-8121,LIVINGSTON,John Wascom,522 Centerville St. East,,Denham Springs,LA,70726,225-665-7037,W,M,O,310,12/31/2010,01/01/2007 -DPEC Member ,at Large ,,,,LA,,,MADISON,LaDonna A. Abrahm,108 Lancaster Dr.,,Tallulah,LA,71282,318-574-4076,W,F,D,054,02/20/2012,02/20/2008,Ms. Abrahm -DPEC Member ,at Large ,,,,LA,,,MADISON,"""Sha"" Carter",511 LaSalle St.,,Tallulah,LA,71282,318-574-8393,W,F,D,054,02/20/2012,02/20/2008,Ms. Carter -DPEC Member ,at Large ,,,,LA,,,MADISON,Olga Daily,P.O. Box 494,,Tallulah,LA,71282-0494 ,318-574-9078,B,F,D,054,02/20/2012,02/20/2008,Ms. Daily -DPEC Member ,at Large ,,,,LA,,,MADISON,Priscilla Mahoney,860 West Bear Lake Road,,Tallulah,LA,71282,318-574-6969,W,F,D,054,02/20/2012,02/20/2008,Ms. Mahoney -DPEC Member ,at Large ,,,,LA,,,MADISON,Myrtle W. Wyche,212 Wyche St.,,Tallulah,LA,71282,318-574-0259,B,F,D,054,02/20/2012,02/20/2008,Ms. Wyche -DPEC Member ,District 1 ,,,,LA,,,MADISON,,,,,,,,,,,056 -DPEC Member ,District 2 ,,,,LA,,,MADISON,,,,,,,,,,,056 -DPEC Member ,District 3 ,,,,LA,,,MADISON,,,,,,,,,,,056 -DPEC Member ,District 4 ,,,,LA,,,MADISON,,,,,,,,,,,056 -DPEC Member ,District 5 ,,,,LA,,,MADISON,,,,,,,,,,,056 -RPEC Member ,at Large ,,,,LA,,,MADISON,Fred B. Wyly,210 Neely Plantation Rd.,,Tallulah,LA,71282,318-574-3269,W,M,R,064,02/20/2012,02/20/2008,Mr. Wyly -RPEC Member ,District 1 ,,,,LA,,,MADISON,,,,,,,,,,,066 -RPEC Member ,District 2 ,,,,LA,,,MADISON,,,,,,,,,,,066 -RPEC Member ,District 3 ,,,,LA,,,MADISON,,,,,,,,,,,066 -RPEC Member ,District 4 ,,,,LA,,,MADISON,,,,,,,,,,,066 -RPEC Member ,District 5 ,,,,LA,,,MADISON,,,,,,,,,,,066 -Sheriff ,,100 N. Cedar St.,,Tallulah,LA,71282,318-574-1831,MADISON,Larry G. Cox,100 N. Cedar,,Tallulah,LA,71282,318-341-1001,W,M,D,225,06/30/2012,07/01/2008,Sheriff Cox -Clerk of Court ,,P. O. Box 1710,,Tallulah,LA,71282,318-574-0655,MADISON,Marion Hopkins,P.O. Box 1710,,Tallulah,LA,71282,318-574-0637,W,F,D,230,06/30/2012,07/01/2008,Ms. Hopkins -Assessor ,,P.O. Box 423,,Tallulah,LA,71284,318-574-0117,MADISON,Jim D. Sevier,P.O. Box 423,,Tallulah,LA,71284-0423 ,318-574-1656,W,M,D,235,12/31/2012,01/01/2009,Mr. Sevier -Coroner ,,212 S. Chestnut Street,,Tallulah,LA,71282,318-574-3575,MADISON,Thomas A. Neumann,108 Neumann Dr.,,Tallulah,LA,71282,318-574-4332,W,M,,240,03/25/2012,03/24/2008,Mr. Neumann -Police Juror ,District 1 ,"100 N. Cedar St., Courthouse Bldg.",,Tallulah,LA,,318-574-3451,MADISON,Robert Dalton Fortenberry,1496 Hwy. 603,,Tallulah,LA,71282,318-574-3099,W,M,R,245,01/08/2012,01/14/2008,Mr. Fortenberry -Police Juror ,District 2 ,"100 N. Cedar St., Courthouse Bldg.",,Tallulah,LA,71282,318-574-3451,MADISON,Stanley Ogden,2365 Hwy. 577 S.,,Delhi,LA,71232,318-878-8541,W,M,,245,01/08/2012,01/14/2008,Mr. Ogden -Police Juror ,District 3 ,"100 N. Cedar St., Courthouse Bldg.",,Tallulah,LA,71282,318-574-3451,MADISON,Henry Tyler,415 Seventh St.,,Tallulah,LA,71282,318-574-3762,B,M,D,245,01/08/2012,01/14/2008,Mr. Tyler -Police Juror ,District 4 ,"100 N. Cedar St., Courthouse Bldg.",,Tallulah,LA,71282,318-574-3451,MADISON,James J. Griffin,200 Helen St.,,Tallulah,LA,71282,318-574-9588,B,M,,245,01/08/2012,01/14/2008,Mr. Griffin -Police Juror ,District 5 ,"100 N. Cedar St., Courthouse Bldg.",,Tallulah,LA,71282,318-574-3451,MADISON,Jane Gladys Sanders,1027 Kimbrough St.,,Tallulah,LA,71282,318-574-2519,B,F,D,245,01/08/2012,01/14/2008,Ms. Sanders -Member of School Board ,District 1 ,301 S. Chestnut St.,,Tallulah,LA,71282,318-574-3616,MADISON,"""Ed"" Yerger",2927 Hwy. 602,,Tallulah,LA,71282,318-574-4969,W,M,R,255,12/31/2010,10/30/2007,Mr. Yerger -Member of School Board ,District 2 ,301 S. Chestnut St.,,Tallulah,LA,71282,318-574-3616,MADISON,Randy J. Morgan,317 Fred Morgan Sr. Rd.,,Tallulah,LA,71282,318-574-4964,W,M,R,255,12/31/2010,09/14/2007,Mr. Morgan -Member of School Board ,District 3 ,301 S. Chestnut St.,,Tallulah,LA,71282,318-574-3616,MADISON,Joseph C. Candler,101 Travis St.,,Tallulah,LA,71282,318-574-1587,B,M,D,255,12/31/2010,01/01/2007,Mr. Candler -Member of School Board ,District 4 ,301 S. Chestnut St.,,Tallulah,LA,71282,318-574-3616,MADISON,Joe Walk,1005 N. Arey St.,,Tallulah,LA,71282,318-574-3496,B,M,D,255,12/31/2010,01/01/2007,Mr. Walk -Member of School Board ,District 5 ,301 S. Chestnut St.,,Tallulah,LA,71282,318-574-3616,MADISON,Hayward Fair,P.O. Box 904,,Tallulah,LA,71284-0904 ,318-574-2742,B,M,D,255,12/31/2010,01/01/2007,Mr. Fair -Member of School Board ,District 6 ,301 S. Chestnut St.,,Tallulah,LA,71282,318-574-3616,MADISON,Kizzy Bynum,207A Adams St.,,Tallulah,LA,71282,318-574-3227,B,F,D,255,12/31/2010,01/01/2007,Ms. Bynum -Member of School Board ,District 7 ,301 S. Chestnut St.,,Tallulah,LA,71282,318-574-3616,MADISON,Vera L. Davis,115 Johns St.,,Tallulah,LA,71282,318-574-0175,B,F,D,255,12/31/2010,01/01/2007,Ms. Davis -Member of School Board ,District 8 ,301 S. Chestnut St.,,Tallulah,LA,71282,318-574-3616,MADISON,Eva F. Taylor,1012 Maple St.,,Tallulah,LA,71282,318-341-3802,W,F,,255,12/31/2010,01/01/2007,Ms. Taylor -Justice of the Peace ,Justice of the Peace District 2 ,1005 Maple St.,,Tallulah,LA,71282,318-574-2499,MADISON,Beth Thomas,656 Charles Brown Rd.,,Tallulah,LA,71282,318-574-3464,W,F,R,265,12/31/2014,01/01/2009,Ms. Thomas -Justice of the Peace ,Justice of the Peace Districts 1 & 3 ,1178 Willow By.Rd,,Tallulah,LA,71282,318-574-8729,MADISON,Billy Thornton,1180 Willow Bayou Rd.,,Tallulah,LA,71282,318-574-4048,W,M,D,265,12/31/2014,01/01/2009,Mr. Thornton -Justice of the Peace ,"Justice of the Peace Districts 4, 5 & 6 ",305 Bozeman St.,,Tallulah,LA,71282,318-574-1242,MADISON,Patricia Buchanan,P.O. Box 1883,,Tallulah,LA,71284,318-574-1242,B,F,D,265,12/31/2014,01/01/2009,Ms. Buchanan -Justice of the Peace ,Justice of the Peace Districts 7 & 8 ,402 E.Green St.,,Tallulah,LA,71282,318-574-6911,MADISON,Cynthia Arender Machen,500 LaSalle St.,,Tallulah,LA,71282,318-574-6064,W,F,D,265,12/31/2014,01/01/2009,Ms. Machen -Constable ,Justice of the Peace District 2 ,3572 La. Hwy. 603,,Tallulah,LA,71282,318-574-4128,MADISON,Tilford M. Watts,3572 Hwy. 603,,Tallulah,LA,71282,318-574-4128,W,M,D,267,12/31/2014,01/01/2009,Mr. Watts -Constable ,Justice of the Peace Districts 1 & 3 ,224 La. Hwy. 602,,Tallulah,LA,71282,318-574-2248,MADISON,Charles Roberson,224 Hwy. 602,,Tallulah,LA,71282,318-574-2248,W,M,R,267,12/31/2014,01/01/2009,Mr. Roberson -Constable ,"Justice of the Peace Districts 4, 5 & 6 ",309 W. Askew St.,,Tallulah,LA,71282,318-574-1595,MADISON,"Charlie Trimble, Jr.",926 Holt St.,,Tallulah,LA,71282,318-574-4689,B,M,D,267,12/31/2014,01/01/2009,Mr. Trimble -Constable ,Justice of the Peace Districts 7 & 8 ,100 Magnolia St.,,Tallulah,LA,71282,318-574-4427,MADISON,Gene M. Cox,100 Magnolia St.,,Tallulah,LA,71282,381-574-4427,W,M,R,267,12/31/2014,01/01/2009,Mr. Cox -Mayor ,City of Tallulah ,204 N. Cedar,,Tallulah,LA,,318-574-0964,MADISON,"Eddie Beckwith, Jr.",P.O. Box 1594,,Tallulah,LA,71284-1594,318-574-0152,B,M,D,300,06/30/2010,07/01/2006,Mayor Beckwith -Mayor ,Village of Delta ,P. O. Box 29,,Delta,LA,,318-633-9566,MADISON,Robert Ott,P.O. Box 60,,Delta,LA,71233,318-633-9542,W,M,,300,12/31/2012,01/01/2009,Mayor Ott -Mayor ,Village of Mound ,"Rt. 2, Box 116-C",,Mound,LA,,318-574-0927,MADISON,Margaret Yerger,2927 Hwy. 602,,Tallulah,LA,71282,318-574-4969,W,F,R,300,12/31/2010,01/01/2007,Ms. Yerger -Mayor ,Village of Richmond ,598 Wood St.,,Richmond,LA,,318-574-2913,MADISON,"Robert Kivett, Sr.",111 Leslie St.,,Richmond,LA,71282,318-574-1669,W,M,R,300,12/31/2010,01/01/2007,Mayor Kivett -Chief of Police ,City of Tallulah ,204 N. Cedar,,Tallulah,LA,71282,318-574-0964,MADISON,Donnell Rose,P.O. Box 895,,Tallulah,LA,71284,318-574-6155,B,M,,305,06/30/2010,07/01/2006,Mr. Rose -Chief of Police ,Village of Mound ,"Rt. 2, Box 116-C",,Mound,LA,71282,318-574-0927,MADISON,Andrew Y. Federick,2930 Hwy. 602,,Tallulah,LA,71282,318-574-2221,W,M,R,305,12/31/2010,01/01/2007,Mr. Federick -Chief of Police ,Village of Richmond ,412 Claudine St.,,Richmond,LA,71282,318-574-2913,MADISON,Jimmy Lopez,107 Ruthie St.,,Richmond,LA,71282,318-574-1417,W,M,,305,12/31/2010,01/01/2007,Chief Lopez -Alderman ,Village of Delta ,P. O. Box 29,,Delta,LA,71233,318-633-9566,MADISON,Marvin Ashley,P.O. Box 214,,Delta,LA,71233,318-633-9757,W,M,,310,12/31/2012,01/01/2009,Mr. Ashley -Alderman ,Village of Delta ,P. O. Box 29,,Delta,LA,71233,318-633-9566,MADISON,Katherine Davis,P.O. Box 148,,Delta,LA,71233,318-633-9510,W,F,,310,12/31/2012,01/01/2009,Ms. Davis -Alderman ,Village of Delta ,P. O. Box 29,,Delta,LA,71233,318-633-9566,MADISON,Donald L. Frith,P.O. Box 21,,Delta,LA,71233,318-633-9699,W,M,,310,12/31/2012,01/01/2009,Mr. Frith -Alderman ,Village of Mound ,"Rt. 2, Box 116-C",,Mound,LA,71282,318-574-0927,MADISON,Margaret F. Crews,2945 Hwy. 602,,Tallulah,LA,71282,318-574-0927,W,F,R,310,12/31/2010,01/01/2007,Ms. Crews -Alderman ,Village of Mound ,"Rt. 2, Box 116-C",,Mound,LA,71282,318-574-0927,MADISON,"Walter S. Crews, Jr.",2945 Hwy. 602,,Tallulah,LA,71282,318-574-0927,W,M,R,310,12/31/2010,01/01/2007,Mr. Crews -Alderman ,Village of Mound ,"Rt. 2, Box 116-C",,Mound,LA,71282,318-574-0927,MADISON,Darlene C. Federick,2930 Hwy. 602,,Tallulah,LA,71282,601-415-6243,W,F,D,310,12/31/2010,07/21/2008,Ms. Federick -Alderman ,Village of Richmond ,412 Claudine St.,,Richmond,LA,71282,318-574-2913,MADISON,Olga Foster-Butler,100 Leslie Lane,,Tallulah,LA,71282-5516,318-574-4155,W,F,R,310,12/31/2010,01/01/2007,Ms. Foster-Butler -Alderman ,Village of Richmond ,412 Claudine St.,,Richmond,LA,71282,318-574-2913,MADISON,Donnie Remore,104 Ruthie St.,,Tallulah,LA,71282,318-574-3987,W,M,R,310,12/31/2010,01/01/2007,Mr. Remore -Alderman ,Village of Richmond ,412 Claudine St.,,Richmond,LA,71282,318-574-2913,MADISON,Tommy E. Wixson,111 Burnside Dr.,,Richmond,LA,71282,318-574-1900,W,M,D,310,12/31/2010,02/23/2009,Mr. Wixson -Council Member ,"District 1, City of Tallulah ",204 N. Cedar,,Tallulah,LA,71282,318-574-0964,MADISON,Charles Michael Finlayson,304 LaSalle St.,,Tallulah,LA,71282,318-574-2027,W,M,D,310,06/30/2010,07/01/2006,Mr. Finlayson -Council Member ,"District 2, City of Tallulah ",204 N. Cedar,,Tallulah,LA,71282,318-574-0964,MADISON,Henry J. Williams,1301 South Walnut St.,,Tallulah,LA,71282,318-574-4476,B,M,,310,06/30/2010,07/01/2006,Mr. Williams -Council Member ,"District 3, City of Tallulah ",204 N. Cedar,,Tallulah,LA,71282,318-574-0964,MADISON,Eddie Ray Fountain,215 Chester Dr.,,Tallulah,LA,71282,318-574-6519,B,M,D,310,06/30/2010,07/01/2006,Mr. Fountain -Council Member ,"District 4, City of Tallulah ",204 N. Cedar,,Tallulah,LA,71282,318-574-0964,MADISON,Kelvin Brooks,304 Fourth St.,,Tallulah,LA,71282,318-574-3428,B,M,D,310,06/30/2010,07/01/2006,Mr. Brooks -Council Member ,"District 5, City of Tallulah ",204 N. Cedar,,Tallulah,LA,71282,318-574-0964,MADISON,Michael Whitney,904 Van Zelfden St.,,Tallulah,LA,71282,318-574-0680,B,M,D,310,06/30/2010,07/01/2006,Mr. Whitney -DPEC Member ,at Large ,,,,LA,,,MOREHOUSE,,,,,,,,,,,054 -DPEC Member ,District 1 ,,,,LA,,,MOREHOUSE,,,,,,,,,,,056 -DPEC Member ,District 2 ,,,,LA,,,MOREHOUSE,Barbara L. Mansfield,P.O. Box 72,,Bastrop,LA,71221,318-281-2356,B,F,D,056,02/20/2012,02/20/2008,Ms. Mansfield -DPEC Member ,District 3 ,,,,LA,,,MOREHOUSE,,,,,,,,,,,056 -DPEC Member ,District 4 ,,,,LA,,,MOREHOUSE,,,,,,,,,,,056 -DPEC Member ,District 5 ,,,,LA,,,MOREHOUSE,,,,,,,,,,,056 -DPEC Member ,District 6 ,,,,LA,,,MOREHOUSE,,,,,,,,,,,056 -DPEC Member ,District 7 ,,,,LA,,,MOREHOUSE,,,,,,,,,,,056 -RPEC Member ,at Large ,,,,LA,,,MOREHOUSE,"""Boots"" Farrar",6205 Winchester Dr.,,Bastrop,LA,71220,318-281-4454,W,M,R,064,02/20/2012,02/20/2008,Mr. Farrar -RPEC Member ,District 1 ,,,,LA,,,MOREHOUSE,,,,,,,,,,,066 -RPEC Member ,District 2 ,,,,LA,,,MOREHOUSE,,,,,,,,,,,066 -RPEC Member ,District 3 ,,,,LA,,,MOREHOUSE,,,,,,,,,,,066 -RPEC Member ,District 4 ,,,,LA,,,MOREHOUSE,,,,,,,,,,,066 -RPEC Member ,District 5 ,,,,LA,,,MOREHOUSE,,,,,,,,,,,066 -RPEC Member ,District 6 ,,,,LA,,,MOREHOUSE,,,,,,,,,,,066 -RPEC Member ,District 7 ,,,,LA,,,MOREHOUSE,,,,,,,,,,,066 -Sheriff ,,351 S. Franklin,,Bastrop,LA,71220,318-281-4141,MOREHOUSE,"""Mike"" Tubbs",351 S. Franklin,,Bastrop,LA,71220,318-281-2417,W,M,D,225,06/30/2012,07/01/2008,Sheriff Tubbs -Clerk of Court ,,P. O. Box 1543,,Bastrop,LA,71221-1543,318-281-3343,MOREHOUSE,Carol Jones,P.O.Box 1543,,Bastrop,LA,71221-1543,318-281-0289,W,F,D,230,06/30/2012,07/01/2008,Ms. Jones -Assessor ,,P.O. Box 1177,,Bastrop,LA,71221-1177,318-281-1802,MOREHOUSE,John Hill,P.O. Box 1059,,Bastrop,LA,71221,318-281-8455,W,M,D,235,12/31/2012,01/01/2009,Mr. Hill -Coroner ,,1110 Leavell Street,,Bastrop,LA,71220,318-281-4141,MOREHOUSE,"""Ed"" Chorette",1509 Frenchmans Bend Rd.,,Monroe,LA,71203,318-330-9062,W,M,R,240,03/25/2012,03/24/2008,Mr. Chorette -Police Juror ,District 1 ,P. O. Box 509,,Bastrop,LA,,318-281-4132,MOREHOUSE,Floyd Tomboli,7244 Gracie Ln.,,Bastrop,LA,71220,318-283-5741,W,M,D,245,01/08/2012,01/14/2008,Mr. Tomboli -Police Juror ,District 2 ,P. O. Box 509,,Bastrop,LA,71221-0509 ,318-281-4132,MOREHOUSE,"Harry Reese, Sr",P.O. Box 280,,Mer rouge,LA,71261,318-647-5330,B,M,D,245,01/08/2012,01/14/2008,Mr. Reese -Police Juror ,District 3 ,P. O. Box 509,,Bastrop,LA,71221-0509 ,318-281-4132,MOREHOUSE,Mark Sistrunk,5733 Candice Ln.,,Bastrop,LA,71220,318-281-9450,W,M,R,245,01/08/2012,01/14/2008,Mr. Sistrunk -Police Juror ,District 4 ,P. O. Box 509,,Bastrop,LA,71221-0509 ,318-281-4132,MOREHOUSE,"""Jack"" Cockrell",5105 Oakley Ln.,,Bastrop,LA,71220,318-281-6549,W,M,R,245,01/08/2012,01/14/2008,Mr. Cockrell -Police Juror ,District 5 ,P. O. Box 509,,Bastrop,LA,71221-0509 ,318-281-4132,MOREHOUSE,Jason Crockett,6036 Jen Lee Ln.,,Bastrop,LA,71220,318-281-8262,W,M,R,245,01/08/2012,01/14/2008,Mr. Crockett -Police Juror ,District 6 ,P. O. Box 509,,Bastrop,LA,71221-0509 ,318-281-4132,MOREHOUSE,Terry Matthews,1003 Commerce,,Bastrop,LA,71220,318-281-7887,B,M,D,245,01/08/2012,01/14/2008,Mr. Matthews -Police Juror ,District 7 ,P. O. Box 509,,Bastrop,LA,71221-0509 ,318-281-4132,MOREHOUSE,Issac Gray,439 W. Madison,,Bastrop,LA,71220,318-282-8428,B,M,D,245,01/08/2012,01/14/2008,Mr. Gray -City Judge ,"City Court, City of Bastrop ",P. O. Drawer 391,,Bastrop,LA,71220,318-283-0257,MOREHOUSE,Phillip M. Lester,1302 Leavell Ave.,,Bastrop,LA,71220,318-283-3242,W,M,D,250,12/31/2014,01/01/2009,Judge Lester -City Marshal ,"City Court, City of Bastrop ",P. O. Drawer 391,,Bastrop,LA,71220,318-283-3310,MOREHOUSE,Lisa Chafford,503 South Cox,,Bastrop,LA,71220,318-281-9248,B,F,D,250,12/31/2014,01/01/2009,Marshal Chafford -Member of School Board ,District 1 ,4099 Naff Ave.,,Bastrop,LA,71220,318-281-5784,MOREHOUSE,"""Lisa"" Chain",15602 Crossett Rd.,,Bastrop,LA,71220,318-281-6700,W,F,R,255,12/31/2010,01/01/2007,Ms. Chain -Member of School Board ,District 2 ,P. O. Box 872,,Bastrop,LA,71220,318-281-5784,MOREHOUSE,Sylvia Reese,P.O. Box 280,,MeRouge,LA,71261,318-647-5330,B,F,D,255,12/31/2010,01/01/2007,Ms. Reese -Member of School Board ,District 3 ,P. O. Box 872,,Bastrop,LA,71220,318-281-5784,MOREHOUSE,Phillip W. McCready,10050 Arkansas St.,,Bastrop,LA,71220,318-283-0703,W,M,,255,12/31/2010,01/01/2007,Mr. McCready -Member of School Board ,District 4 ,P. O. Box 872,,Bastrop,LA,71220,318-281-5784,MOREHOUSE,"""Jeff"" Churchwell",11105 Crossett Rd.,,Bastrop,LA,71220,318-281-9711,W,M,R,255,12/31/2010,01/01/2007,Mr. Churchwell -Member of School Board ,District 5 ,P. O. Box 872,,Bastrop,LA,71220,318-281-5784,MOREHOUSE,Rodney Dew,401 Frederick,,Bastrop,LA,71220,318-283-0451,W,M,R,255,12/31/2010,02/23/2009,Mr. Dew -Member of School Board ,District 6 ,P. O. Box 872,,Bastrop,LA,71220,318-281-5784,MOREHOUSE,Hamp Lenoir,208 Terrace Dr.,,Bastrop,LA,71220,318-281-4384,B,M,D,255,12/31/2010,01/01/2007,Mr. Lenoir -Member of School Board ,District 7 ,P. O. Box 872,,Bastrop,LA,71220,318-281-5784,MOREHOUSE,"""Loe"" Dunn",322 Jackson St.,,Bastrop,LA,71220,318-281-6797,B,F,D,255,12/31/2010,01/01/2007,Ms. Dunn -Justice of the Peace ,Justice of the Peace Ward 1 ,3407 Bayou Acres Dr.,,Bastrop,LA,71220,318-283-2299,MOREHOUSE,Robert P. Deblieux,3407 Bayou Acres Dr.,,Bastrop,LA,71220,318-283-2299,W,M,,265,12/31/2014,01/01/2009,Mr. Deblieux -Justice of the Peace ,Justice of the Peace Ward 2 ,16284 Hughes Chapel Rd.,,Bastrop,LA,71220,318-281-0337,MOREHOUSE,Glennis Lewis,17613 Viola Carroll Rd.,,Bastrop,LA,71220,318-281-3563,W,F,,265,12/31/2014,01/01/2009,Ms. Lewis -Justice of the Peace ,Justice of the Peace Ward 5 ,P.O. Box 174,,Oak Ridge,LA,71264,318-244-6160,MOREHOUSE,Joel Fitch,P.O. Box 155,,Oak Ridge,LA,71264,318-680-2583,W,M,,265,12/31/2014,01/01/2009,Mr. Fitch -Justice of the Peace ,Justice of the Peace Ward 6 ,P.O. Box 415,,Mer Rouge,LA,71264,318-647-5325,MOREHOUSE,Mary C. Hayden,P.O. Box 192,,Mer Rouge,LA,71261,318-647-5298,,,D,265,12/31/2014,01/01/2009,Ms. Hayden -Justice of the Peace ,Justice of the Peace Ward 7 ,14558 Old Bonita Rd.,,Bastrop,LA,71220,318-281-5789,MOREHOUSE,Ben L. White,12005 Yeldell Road,,Bastrop,LA,71220,318-283-0071,W,M,R,265,12/31/2014,01/01/2009,Mr. White -Justice of the Peace ,Justice of the Peace Ward 8 ,10650 Pleasant Dr.,,Bastrop,LA,71220,318-283-3075,MOREHOUSE,John Sawyer,10650 Pleasant Dr.,,Bastrop,LA,71220,318-283-3075,W,M,D,265,12/31/2014,01/01/2009,Mr. Sawyer -Justice of the Peace ,Justice of the Peace Ward 9 ,16162 Old Berlin Rd.,,Bastrop,LA,71220,318-281-4916,MOREHOUSE,"""ZZ"" Wilson",15800 Brewer Creek,,Bastrop,LA,71220,318-283-7087,W,F,,265,12/31/2014,01/01/2009,Ms. Wilson -Justice of the Peace ,Justice of the Peace Ward 10 ,16813 McGinty Rd.,,Bastrop,LA,71250,318-823-2668,MOREHOUSE,Kitty R. Johnson,14848 Holly Ridge Road,,Jones,LA,71250,318-823-2414,W,F,D,265,12/31/2014,01/01/2009,Ms. Johnson -Constable ,Justice of the Peace Ward 1 ,3419 Bayou Acres Dr.,,Bastrop,LA,71220,318-281-0148,MOREHOUSE,"Vernon ""Butch"" Bostick",3373 Bayou Acres,,Bastrop,LA,71220,318-281-8545,W,M,D,267,12/31/2014,01/01/2009,Mr. Bostick -Constable ,Justice of the Peace Ward 2 ,16350 Hughes Chapel Rd.,,Bastrop,LA,71220,318-281-2973,MOREHOUSE,"Erwin ""Hookey"" Evans",16350 Hughes Chapel,,Bastrop,LA,71220,318-281-2973,W,M,D,267,12/31/2014,01/01/2009,Mr. Evans -Constable ,Justice of the Peace Ward 5 ,P.O. Box 232,,Oak Ridge,LA,71264,318-244-5650,MOREHOUSE,"Ben E. ""Sonny"" Baker",P.O. Box 232,,Oak Ridge,LA,71264,318-244-5650,W,M,D,267,12/31/2014,01/01/2009,Mr. Baker -Constable ,Justice of the Peace Ward 6 ,P.O. Box 205,,Mer Rouge,LA,71261,318-647-3783,MOREHOUSE,David G. Thomas,7781 Bayou Dr.,,Mer Rouge,LA,71261,318-647-3913,W,M,D,267,12/31/2014,01/01/2009,Mr. Thomas -Constable ,Justice of the Peace Ward 7 ,14665 Old Bonita Rd.,,Bastrop,LA,71220,318-281-2695,MOREHOUSE,Ruthie Moore,15786 Old Bonita Rd.,,Bastrop,LA,71220,318-283-0329,B,F,D,267,12/31/2014,01/01/2009,Ms. Moore -Constable ,Justice of the Peace Ward 8 ,,,,LA,,,MOREHOUSE,Brandon Gilbreath,P.O. Box 276,,Collinston,LA,71229,318-874-2631,W,M,,267,12/31/2014,01/01/2009,Mr. Gilbreath -Constable ,Justice of the Peace Ward 9 ,16162 Old Berlin Rd.,,Bastrop,LA,71220,318-281-4916,MOREHOUSE,Donna J. Atkins,16162 Old Berlin Rd.,,Bastrop,LA,71220,318-281-4916,W,F,,267,12/31/2014,01/01/2009,Ms. Atkins -Constable ,Justice of the Peace Ward 10 ,15265 Lakeshore Rd.,,Bonita,LA,71233,318-823-2704,MOREHOUSE,Derl R. Johnson,14848 Holly Ridge Rd.,,Jones,LA,71250,318-823-2414,W,M,D,267,12/31/2014,01/01/2009,Mr. Johnson -Mayor ,City of Bastrop ,P. O. Box 431,,Bastrop,LA,,318-283-0250,MOREHOUSE,Betty Alford-Olive,1402 Bowman St.,,Bastrop,LA,71220,318-283-2992,B,F,D,300,06/30/2013,07/01/2009,Mayor Alford-Olive -Mayor ,Village of Bonita ,P. O. Box 278,,Bonita,LA,,318-823-2128,MOREHOUSE,Floyd Baker,P.O. Box 12,,Bonita,LA,71223,318-823-4209,B,M,,300,12/31/2010,09/14/2007,Mayor Baker -Mayor ,Village of Collinston ,P. O. Box 148,,Collinston,LA,,318-874-2631,MOREHOUSE,Wayne Gilbreath,P.O. Box 147,,Collinston,LA,71229,318-874-7570,W,M,O,300,12/31/2010,01/01/2007,Mr. Gilbreath -Mayor ,Village of Mer Rouge ,P. O. Box 238,,Mer Rouge,LA,,318-647-3622,MOREHOUSE,"John D. ""Johnny"" McAdams, III",P.O. Box 146,,Mer Rouge,LA,71261,318-647-5301,W,M,D,300,12/31/2010,01/01/2007,Mr. McAdams -Mayor ,Village of Oak Ridge ,P. O. Box 58,,Oak Ridge,LA,,318-244-5033,MOREHOUSE,"""Andy"" Barham",P.O. Box 99,,Oak Ridge,LA,71264,318-244-6551,W,M,D,300,12/31/2012,01/01/2009,Mr. Barham -Alderman ,"District A, City of Bastrop ",P. O. Box 431,,Bastrop,LA,71221-0431 ,318-283-0250,MOREHOUSE,Marvin Moore,1006 Orchid Ave.,,Bastrop,LA,71220,318-283-7100,B,M,D,310,06/30/2013,07/01/2009,Mr. Moore -Alderman ,"District B, City of Bastrop ",P. O. Box 431,,Bastrop,LA,71221-0431 ,318-283-0250,MOREHOUSE,Obbie Johnson,419 Sunflower St.,,Bastrop,LA,71220,318-281-8224,B,M,D,310,06/30/2013,07/01/2009,Mr. Johnson -Alderman ,"District C, City of Bastrop ",P. O. Box 431,,Bastrop,LA,71221-0431 ,318-283-0250,MOREHOUSE,"William ""Sonny"" Nason",2108 Gemini Cir.,,Bastrop,LA,71220,318-281-7968,W,M,R,310,06/30/2013,07/01/2009,Mr. Nason -Alderman ,"District D, City of Bastrop ",P. O. Box 431,,Bastrop,LA,71221-0431 ,318-283-0250,MOREHOUSE,Roy Armstrong,1216 Martin Luther King South,,Bastrop,LA,71220,318-281-1470,B,M,D,310,06/30/2013,07/01/2009,Mr. Armstrong -Alderman ,"District E, City of Bastrop ",P. O. Box 431,,Bastrop,LA,71221-0431 ,318-283-0250,MOREHOUSE,Howard Loche,302 Sentelle St.,,Bastrop,LA,71220,318-281-5037,B,M,D,310,06/30/2013,07/01/2009,Mr. Loche -Alderman ,Village of Bonita ,P. O. Box 278,,Bonita,LA,71223,318-823-2128,MOREHOUSE,"Ezekiel ""Pete"" Anderson",P.O. Box 73,,Bonita,LA,71223,318-823-4349,B,M,D,310,12/31/2010,02/23/2009,Mr. Anderson -Alderman ,Village of Bonita ,P. O. Box 278,,Bonita,LA,71223,318-823-2128,MOREHOUSE,Richard D. Polk,15265 Lakeshore Dr.,,Bonita,LA,71223,,,,,310,,06/05/2009,Apptd by Gov -Alderman ,Village of Bonita ,P. O. Box 278,,Bonita,LA,71223,318-823-2128,MOREHOUSE,Ada Sherrer,15211 Bonita Ave.,,Bonita,LA,71223,318-823-2339,B,F,D,310,12/31/2010,10/30/2007,Ms. Sherrer -Alderman ,Village of Collinston ,P. O. Box 148,,Collinston,LA,71229,318-874-2631,MOREHOUSE,Terry Foster,P.O. Box 81,,Collinston,LA,71229,318-874-8447,W,F,D,310,12/31/2010,07/21/2008,Ms. Foster -Alderman ,Village of Collinston ,P. O. Box 148,,Collinston,LA,71229,318-874-2631,MOREHOUSE,Betty H. Jones,4847 Page Ln.,,Collinston,LA,71229,318-874-3304,W,F,D,310,12/31/2010,01/01/2007,Ms. Jones -Alderman ,Village of Collinston ,P. O. Box 148,,Collinston,LA,71229,318-874-2631,MOREHOUSE,"Frank Henry Miller, Sr.",P. O. Box 132,,Collinston,LA,71229,318-874-3328,B,M,D,310,12/31/2010,01/01/2007,Mr. Miller -Alderman ,Village of Mer Rouge ,P. O. Box 238,,Mer Rouge,LA,71261,318-647-3622,MOREHOUSE,Richard Blackwell,P.O. Box 125,,Mer Rouge,LA,71261,318-647-5157,W,M,D,310,12/31/2010,02/23/2009,Mr. Blackwell -Alderman ,Village of Mer Rouge ,P. O. Box 238,,Mer Rouge,LA,71261,318-647-3622,MOREHOUSE,"""Tim"" Mitchell",P.O. Box 219,,Mer Rouge,LA,71261,318-647-9923,W,M,R,310,12/31/2010,01/01/2007,Mr.Mitchell -Alderman ,Village of Mer Rouge ,P. O. Box 238,,Mer Rouge,LA,71261,318-647-3622,MOREHOUSE,"Marvin ""Marley"" Oldham",P.O. Box 61,,Mer Rouge,LA,71261,318-647-5613,W,M,R,310,12/31/2010,01/01/2007,Mr. Oldham -Alderman ,Village of Oak Ridge ,P. O. Box 58,,Oak Ridge,LA,71264,318-244-5033,MOREHOUSE,Eugene H. Allen,P.O. Box 132,,Oak Ridge,LA,71264,318-244-7123,W,M,R,310,12/31/2012,01/01/2009,Mr. Allen -Alderman ,Village of Oak Ridge ,P. O. Box 58,,Oak Ridge,LA,71264,318-244-5033,MOREHOUSE,"Neil Woodard Mott, III",P.O. Box 278,,Oak Ridge,LA,71264,318-244-5003,W,M,,310,12/31/2012,01/01/2009,Mr. Mott -Alderman ,Village of Oak Ridge ,P. O. Box 58,,Oak Ridge,LA,71264,318-244-5033,MOREHOUSE,"Clint E. Shepard, II",P.O. Box 88,,Oak Ridge,LA,71264,318-244-6036,W,M,D,310,12/31/2012,01/01/2009,Mr. Shepard -DPEC Member ,at Large ,,,,LA,,,NATCHITOCHES,,,,,,,,,,,054 -DPEC Member ,District 1 ,,,,LA,,,NATCHITOCHES,,,,,,,,,,,056 -DPEC Member ,District 2 ,,,,LA,,,NATCHITOCHES,,,,,,,,,,,056 -DPEC Member ,District 3 ,,,,LA,,,NATCHITOCHES,,,,,,,,,,,056 -DPEC Member ,District 4 ,,,,LA,,,NATCHITOCHES,,,,,,,,,,,056 -DPEC Member ,District 5 ,,,,LA,,,NATCHITOCHES,,,,,,,,,,,056 -DPEC Member ,District 6 ,,,,LA,,,NATCHITOCHES,,,,,,,,,,,056 -DPEC Member ,District 7 ,,,,LA,,,NATCHITOCHES,,,,,,,,,,,056 -DPEC Member ,District 8 ,,,,LA,,,NATCHITOCHES,,,,,,,,,,,056 -DPEC Member ,District 9 ,,,,LA,,,NATCHITOCHES,,,,,,,,,,,056 -DPEC Member ,District 10 ,,,,LA,,,NATCHITOCHES,,,,,,,,,,,056 -DPEC Member ,District 11 ,,,,LA,,,NATCHITOCHES,Larry Paige,4923 Hwy. 494,,Natchez,LA,71456,318-352-6433,W,M,D,056,02/20/2012,02/20/2008,Mr. Paige -RPEC Member ,at Large ,,,,LA,,,NATCHITOCHES,Edward B. Anders,940 Nettie St.,,Natchitoches,LA,71457,318-352-6507,W,M,R,064,02/20/2012,02/20/2008,Mr. Anders -RPEC Member ,at Large ,,,,LA,,,NATCHITOCHES,Mary Ann Nunley,1032 Williams Ave.,,Natchitoches,LA,71457,,,,,064,,03/05/2008,Ms. Nunley -RPEC Member ,at Large ,,,,LA,,,NATCHITOCHES,Anna Kathyrn Shuler,408 Hancock Ave.,,Natchitoches,LA,71457,,,,,064,,03/05/2008,Ms. Shuler -RPEC Member ,District 1 ,,,,LA,,,NATCHITOCHES,"Joe Cunningham, Sr.",1830 Williams Ave.,,Natchitoches,LA,71457,,,,,066,02/20/2012,03/05/2008,Mr. Cunningham -RPEC Member ,District 2 ,,,,LA,,,NATCHITOCHES,Mark Begnaud,P.O. Box 1369,,Natchitoches,LA,71458,,,,,066,02/20/2012,03/05/2008,Mr. Begnaud -RPEC Member ,District 3 ,,,,LA,,,NATCHITOCHES,Will Adams,1556 Berry Ave.,,Natchitoches,LA,71457,,,,,066,02/20/2012,03/05/2008,Mr. Adams -RPEC Member ,District 4 ,,,,LA,,,NATCHITOCHES,A. P. Fleming,378 Mr. Ed Lane,,Natchitoches,LA,71457,,,,,066,02/20/2012,03/05/2008,Mr. Fleming -RPEC Member ,District 5 ,,,,LA,,,NATCHITOCHES,Paul L. Johnson,269 Chris St.,,Natchitoches,LA,71457,,,,,066,02/20/2012,03/05/2008,Mr. Johnson -RPEC Member ,District 6 ,,,,LA,,,NATCHITOCHES,Donald F. Barker,308 Watson Dr.,,Natchitoches,LA,71457,,,,,066,02/20/2012,03/05/2008,Mr. Barker -RPEC Member ,District 7 ,,,,LA,,,NATCHITOCHES,,,,,,,,,,,066 -RPEC Member ,District 8 ,,,,LA,,,NATCHITOCHES,,,,,,,,,,,066 -RPEC Member ,District 9 ,,,,LA,,,NATCHITOCHES,Greg Larette,1129 Hwy. 487,,Marthaville,LA,71450-3215,,,,,066,02/20/2012,03/05/2008,Mr. Larette -RPEC Member ,District 10 ,,,,LA,,,NATCHITOCHES,,,,,,,,,,,066 -RPEC Member ,District 11 ,,,,LA,,,NATCHITOCHES,John Bernard,186 Lateral Ln.,,Natchitoches,LA,71457,,,,,066,,03/05/2008,Mr. Bernard -Sheriff ,,P. O. Box 266,,Natchitoches,LA,71458,318-357-7802,NATCHITOCHES,Victor E. Jones,P.O. Box 266,,Natchitoches,LA,71458,318-379-2768,B,M,D,225,06/30/2012,07/01/2008,Sheriff Jones -Clerk of Court ,,P. O. Box 476,,Natchitoches,LA,71458-0476 ,318-352-8152,NATCHITOCHES,"""Louie"" Bernard",P. O. Box 476,,Natchitoches,LA,71458-0476 ,318-352-8800,W,M,D,230,06/30/2012,07/01/2008,Mr. Bernard -Assessor ,,P.O. Box 201,,Natchitoches,LA,71457,318-352-2377,NATCHITOCHES,D. Rick Hargis,P. O. Box 201,,Natchitoches,LA,71458-0201 ,318-352-9725,W,M,D,235,12/31/2012,01/01/2009,Mr. Hargis -Coroner ,,P.O. Box 799,,Natchitoches,LA,71458,318-357-2260,NATCHITOCHES,"Charles A. Curtis, Jr.",P. O. Box 799,,Natchitoches,LA,71458-0799 ,318-332-8313,W,M,D,240,03/25/2012,03/24/2008,Mr. Curtis -Police Juror,District 1,P. O. Box 799,,Natchitoches,LA,71458-0799,318-352-2714,NATCHITOCHES,"Gerald ""Jerry"" Longlois",165 Anne St.,,Natchitoches,LA,71457,318-356-8570,W,M,D,245,01/08/2012,01/14/2008,Mr. Longlois -Police Juror ,District 2 ,P. O. Box 799,,Natchitoches,LA,71457,318-352-2714,NATCHITOCHES,"""Chris"" Paige",345 Pavie St.,,Natchitoches,LA,71457,318-357-1339,B,M,D,245,01/08/2012,01/14/2008,Mr. Paige -Police Juror ,District 3 ,P. O. Box 799,,Natchitoches,LA,71457,318-352-2714,NATCHITOCHES,J. D. Garrett,1109 Collins St.,,Natchitoches,LA,71457,318-357-1839,B,M,D,245,01/08/2012,01/14/2008,Mr. Garrett -Police Juror ,District 4 ,P. O. Box 799,,Natchitoches,LA,71457,318-352-2714,NATCHITOCHES,David Dollar,725 Sisson Rd.,,Natchitoches,LA,71457-6745,318-357-8852,W,M,D,245,01/08/2012,01/14/2008,Mr. Dollar -Police Juror ,District 5 ,P. O. Box 799,,Natchitoches,LA,71457,318-352-2714,NATCHITOCHES,William Hymes,217 Piermont Pl.,,Natchitoches,LA,71457,318-357-9527,B,M,D,245,01/08/2012,01/14/2008,Mr. Hymes -Police Juror ,District 6 ,P. O. Box 799,,Natchitoches,LA,71457,318-352-2714,NATCHITOCHES,Charles E. Huggins,P.O. Box 1045,,Natchitoches,LA,71458-1045,318-352-5774,W,M,R,245,01/08/2012,01/14/2008,Mr. Huggins -Police Juror ,District 7 ,P. O. Box 799,,Natchitoches,LA,71457,318-352-2714,NATCHITOCHES,"""Johnny"" Martin",364 Goodwill St.,,Goldonna,LA,71031-3528,318-727-9509,W,M,D,245,01/08/2012,01/14/2008,Mr. Martin -Police Juror ,District 8 ,P. O. Box 799,,Natchitoches,LA,71457,318-352-2714,NATCHITOCHES,"""Tom"" Collier",364 Collier Hill Rd.,,Campti,LA,71411,318-476-2239,W,M,D,245,01/08/2012,01/14/2008,Mr. Collier -Police Juror ,District 9 ,P. O. Box 799,,Natchitoches,LA,71457,318-352-2714,NATCHITOCHES,Jessie Hoffpauir,P. O. Box 327,,Robeline,LA,71469-0327 ,318-472-8231,W,M,D,245,01/08/2012,01/14/2008,Mr. Hoffpauir -Police Juror ,District 10 ,P. O. Box 799,,Natchitoches,LA,71457,318-352-2714,NATCHITOCHES,"""Mimi"" Stoker",5810 Hwy. 6,,Natchitoches,LA,71457,318-352-7005,W,F,R,245,01/08/2012,01/14/2008,Ms. Stoker -Police Juror ,District 11 ,P. O. Box 799,,Natchitoches,LA,71457,318-352-2714,NATCHITOCHES,Fred Jacobs,338 Riverview Dr.,,Natchez,LA,71456,318-354-0202,B,M,D,245,01/08/2012,01/14/2008,Mr. Jacobs -City Judge ,"City Court, City of Natchitoches ",P. O. Box 70,,Natchitoches,LA,71458-0070 ,318-352-2069,NATCHITOCHES,Fred S. Gahagan,1029 Parkway Dr.,,Natchitoches,LA,71457,318-352-2787,W,M,D,250,12/31/2014,01/01/2009,Judge Gahagan -City Marshal ,"City Court, City of Natchitoches ",P. O. Box 70,,Natchitoches,LA,71458-0070 ,318-357-1129,NATCHITOCHES,Alton Rachal,P. O. Box 272,,Natchitoches,LA,71457,318-352-9444,W,M,D,250,12/31/2014,01/01/2009,Marshal Rachal -Member of School Board ,District 1 ,310 Royal St.,,Natchitoches,LA,71457,318-352-2358,NATCHITOCHES,Julia C. Hildebrand,920 Nettie St.,,Natchitoches,LA,71457,318-352-5155,W,F,D,255,12/31/2010,01/01/2007,Ms. Hildebrand -Member of School Board ,District 2 ,310 Royal St.,,Natchitoches,LA,71457,318-352-2358,NATCHITOCHES,Harry Douglas Graham,842 Pavie St.,,Natchitoches,LA,71457-4015,318-352-6602,B,M,D,255,12/31/2010,01/01/2007,Mr. Graham -Member of School Board ,District 3 ,310 Royal St.,,Natchitoches,LA,71457,318-352-2358,NATCHITOCHES,Ralph Wilson,P.O. Box 423,,Natchitoches,LA,71457,318-352-7205,B,M,D,255,12/31/2010,01/01/2007,Mr. Wilson -Member of School Board ,District 4 ,310 Royal St.,,Natchitoches,LA,71457,318-352-2358,NATCHITOCHES,"Billy Benefield, Jr.",140 Northwood Ln.,,Natchitoches,LA,71457,318-357-0561,W,M,D,255,12/31/2010,01/01/2007,Mr. Benefield -Member of School Board ,District 5 ,310 Royal St.,,Natchitoches,LA,71457,318-352-2358,NATCHITOCHES,Jo Ella Wilson,621 Genti St.,,Natchitoches,LA,71457,318-352-8411,B,F,D,255,12/31/2010,01/01/2007,Ms. Wilson -Member of School Board ,District 6 ,310 Royal St.,,Natchitoches,LA,71457,318-352-2358,NATCHITOCHES,Millard Bienvenu,710 Watson Dr.,,Natchitoches,LA,71457,318-352-5313,W,M,O,255,12/31/2010,01/01/2007,Mr. Bienvenu -Member of School Board ,District 7 ,310 Royal St.,,Natchitoches,LA,71457,318-352-2358,NATCHITOCHES,Cecil Walker,P.O. Box 56,,Clarence,LA,71414-0056 ,318-357-0532,W,M,D,255,12/31/2010,01/01/2007,Mr. Walker -Member of School Board ,District 8 ,310 Royal St.,,Natchitoches,LA,71457,318-352-2358,NATCHITOCHES,"""Pam"" McAlexander",974 Grappes Bluff Rd.,,Coushatta,LA,71019-4209,318-476-2716,W,F,R,255,12/31/2010,01/01/2007,Ms. McAlexander -Member of School Board ,District 9 ,310 Royal St.,,Natchitoches,LA,71457,318-352-2358,NATCHITOCHES,Carroll Daniels,161 Cassidy Springs Rd.,,Robeline,LA,71469-4217,318-472-6778,W,M,D,255,12/31/2010,01/01/2007,Mr. Daniels -Member of School Board ,District 10 ,310 Royal St.,,Natchitoches,LA,71457,318-352-2358,NATCHITOCHES,Craig Rachal,2819 Hwy. 120,,Robeline,LA,71469,318-357-0113,W,M,R,255,12/31/2010,01/01/2007,Mr. Rachal -Member of School Board ,District 11 ,310 Royal St.,,Natchitoches,LA,71457,318-352-2358,NATCHITOCHES,Emile E. Metoyer,2353 Hwy. 119,,Bermuda,LA,71456,318-379-2407,O,M,D,255,12/31/2010,01/01/2007,Mr. Metoyer -Justice of the Peace ,Justice of the Peace Ward 2 ,P.O. Box 673,,Campti,LA,71411-0673 ,318-476-3311,NATCHITOCHES,Patrice T. Harper,1135 Hart Rd.,,Campti,LA,71411,318-875-2112,W,F,D,265,12/31/2014,01/01/2009,Ms. Harper -Justice of the Peace ,Justice of the Peace Ward 3 ,"10363 La.Hwy,120",,Robeline,LA,71469,318-472-8739,NATCHITOCHES,Shelia Pleasant Cagle,10363 Hwy. 120,,Robeline,LA,71469,318-472-8739,W,F,D,265,12/31/2014,01/01/2009,Ms. Cagle -Justice of the Peace ,Justice of the Peace Ward 4 ,2735 La. Hwy. 119,,Melrose,LA,71452-3414,318-379-2273,NATCHITOCHES,Rhonda Sanders,P.O. Box 5,,Cloutierville,LA,71416-0005 ,318-332-7116,W,F,D,265,12/31/2014,01/01/2009,Ms. Sanders -Constable ,Justice of the Peace Ward 2 ,121 Ray Grillette Rd.,,Campti,LA,71411-4361,318-875-2261,NATCHITOCHES,Monty Trichel,121 Ray Grillette Rd.,,Campti,LA,71411,318-875-2261,W,M,D,267,12/31/2014,01/01/2009,Mr. Trichel -Constable ,Justice of the Peace Ward 3 ,296 Edgar Olive Rd.,,Marthaville,LA,71450-3118,318-472-6860,NATCHITOCHES,Kenneth Dowden,296 Olive Rd.,,Marthaville,LA,71450,318-472-6860,W,M,D,267,12/31/2014,01/01/2009,Mr. Dowden -Constable ,Justice of the Peace Ward 4 ,P.O. Box 366,,Cloutierville,LA,71416,318-379-2731,NATCHITOCHES,"""Bobby"" Carter",366 Hwy. 495,,Cloutierville,LA,71416,318-379-2731,W,M,D,267,12/31/2014,01/01/2009,Mr. Carter -Mayor ,City of Natchitoches ,P. O. Box 37,,Natchitoches,LA,,318-352-2772,NATCHITOCHES,H. Wayne McCullen,604 Monroe Dr.,,Natchitoches,LA,71457,318-357-1897,W,M,D,300,05/31/2012,06/01/2008,Mr. McCullen -Mayor ,Town of Campti ,197 Edenborne St.,,Campti,LA,,318-476-3321,NATCHITOCHES,Judy LeBrum Daniels,P.O. Box 1,,Campti,LA,71411,318-476-2934,B,F,D,300,12/31/2010,01/01/2007,Ms. Daniels -Mayor ,Village of Ashland ,P. O. Box 327,,Ashland,LA,,318-544-0044,NATCHITOCHES,W. Gahagan Lee,P.O. Box 305,,Ashland,LA,71002-0305 ,318-544-2546,W,M,R,300,12/31/2010,01/01/2007,Mr. Lee -Mayor ,Village of Clarence ,P. O. Box 309,,Clarence,LA,,318-357-0440,NATCHITOCHES,Bobby Braxton,P.O. Box 214,,Clarence,LA,71414-0214 ,318-354-9607,B,M,D,300,06/30/2012,07/01/2008,Mayor Braxton -Mayor ,Village of Goldonna ,P. O. Box 216,,Goldonna,LA,,318-727-8548,NATCHITOCHES,Verna Martin Bedgood,P.O. Box 263,,Goldonna,LA,71031,318-727-8770,W,F,D,300,12/31/2010,01/01/2007,Ms. Bedgood -Mayor ,Village of Natchez ,P. O. Box 229,,Natchez,LA,,318-352-1414,NATCHITOCHES,Rosia Humphery,P.O. Box 135,,Natchez,LA,71456-0135 ,318-356-0217,B,F,D,300,06/30/2010,07/01/2006,Mayor Humphrey -Mayor ,Village of Powhatan ,P. O. Box 126,,Powhatan,LA,,318-352-8549,NATCHITOCHES,Margie Davenport,P.O. Box 91,,Powhatan,LA,71066-0091 ,318-352-9184,B,F,D,300,06/30/2012,07/01/2008,Mayor Davenport -Mayor ,Village of Provencal ,P. O. Box 400,,Provencal,LA,,318-472-8767,NATCHITOCHES,"""Randy"" Dupree",P.O. Box 321,,Provencal,LA,71468,318-472-9324,W,M,D,300,12/31/2010,01/01/2007,Mr. Dupree -Mayor ,Village of Robeline ,P. O. Box 217,,Robeline,LA,,318-472-6121,NATCHITOCHES,Tommy O'Con,P.O. Box 187,,Robeline,LA,71469,318-472-9246,W,M,D,300,12/31/2010,01/01/2007,Mayor O'Con -Chief of Police ,Town of Campti ,197 Edenborne St.,,Campti,LA,71411,318-476-3321,NATCHITOCHES,Gregory Antonio Eldridge,P.O. Box 966,,Campti,LA,71411,318-476-2611,B,M,D,305,12/31/2010,01/01/2007,Mr. Eldridge: -Chief of Police ,Village of Ashland ,P. O. Box 327,,Ashland,LA,71002,318-544-0044,NATCHITOCHES,"""Fred"" Holland",2058 Hwy. 155,,Ashland,LA,71002,318-544-9161,W,M,D,305,12/31/2010,01/01/2007,Mr. Holland -Chief of Police ,Village of Clarence ,P. O. Box 309,,Clarence,LA,71414,318-357-0440,NATCHITOCHES,Darrell Fredieu,P.O. Box 32,,Clarence,LA,71414-0032 ,318-352-7029,W,M,D,305,06/30/2012,07/01/2008,Chief Fredieu -Chief of Police ,Village of Goldonna ,P. O. Box 216,,Goldonna,LA,71031,318-727-8548,NATCHITOCHES,Rodney Bedgood,P. O. Box 263,,Goldonna,LA,71031-0241 ,318-727-8770,W,M,D,305,12/31/2010,04/14/2009,Mr. Bedgood -Chief of Police ,Village of Natchez ,P. O. Box 229,,Natchez,LA,71456-0229 ,318-352-1414,NATCHITOCHES,McKindley Hoover,P.O. Box 266,,Natchez,LA,71456,318-214-0429,B,M,D,305,06/30/2010,07/01/2006,Chief Hoover -Chief of Police ,Village of Powhatan ,P. O. Box 126,,Powhatan,LA,71066,318-352-8594,NATCHITOCHES,"Raymond J. Hymes, Jr.",P.O. Box 102,,Powhatan,LA,71066-0102 ,318-354-2943,B,M,D,305,06/30/2012,07/01/2008,Chief Hymes -Chief of Police ,Village of Provencal ,P. O. Box 400,,Provencal,LA,71468,318-472-8767,NATCHITOCHES,Harry M. Voigt,P.O. Box 425,,Provencal,LA,71468,318-472-8214,W,M,D,305,12/31/2010,01/01/2007,Mr. Voigt -Chief of Police ,Village of Robeline ,P. O. Box 217,,Robeline,LA,71469,318-472-6121,NATCHITOCHES,Gordon O'Con,P.O. Box 403,,Robeline,LA,71469,318-472-4400,W,M,D,305,12/31/2010,01/01/2007,Chief O'Con -Councilman at Large ,City of Natchitoches ,P. O. Box 37,,Natchitoches,LA,71457-0037 ,318-352-2772,NATCHITOCHES,"Don Mims, Jr.",516 Lindsey Circle,,Natchitoches,LA,71457,318-352-5639,W,M,D,308,05/31/2012,06/01/2008,Mr. Mims -Alderman ,Village of Clarence ,P. O. Box 309,,Clarence,LA,71414,318-357-0440,NATCHITOCHES,Jamie Ragan Alexander,P.O. Box 108,,Clarence,LA,71414-0108 ,318-352-2448,W,F,D,310,06/30/2012,07/01/2008,Ms. Alexander -Alderman ,Village of Clarence ,P. O. Box 309,,Clarence,LA,71414,318-357-0440,NATCHITOCHES,"Frank Mitchell, Jr.",132 Greenville Dr.,,Clarence,LA,71414,318-352-7321,B,M,D,310,06/30/2012,07/01/2008,Mr. Mitchell -Alderman ,Village of Clarence ,P. O. Box 309,,Clarence,LA,71414,318-357-0440,NATCHITOCHES,Natonya Pikes,P.O. Box 24,,Clarence,LA,71414-0024 ,318-357-0221,B,F,D,310,06/30/2012,07/01/2008,Ms. Pikes -Alderman ,Village of Goldonna ,P. O. Box 216,,Goldonna,LA,71031,318-727-8548,NATCHITOCHES,"""Ben"" Dupree",2686 Hwy. 479,,Goldonna,LA,71031-3608,318-727-8554,W,M,R,310,12/31/2010,01/01/2007,Mr. Dupree -Alderman ,Village of Goldonna ,P. O. Box 216,,Goldonna,LA,71031,318-727-8548,NATCHITOCHES,Daniel Dupree,2670 Hwy. 479,,Goldonna,LA,71031,318-727-9933,W,M,R,310,12/31/2010,01/01/2007,Mr. Dupree -Alderman ,Village of Goldonna ,P. O. Box 216,,Goldonna,LA,71031,318-727-8548,NATCHITOCHES,Reed Franklin,P.O. Box 267,,Goldonna,LA,71031-0267 ,318-727-8310,W,M,R,310,12/31/2010,08/24/2009,Mr. Franklin -Alderman ,Village of Natchez ,P. O. Box 229,,Natchez,LA,71456-0229 ,318-352-1414,NATCHITOCHES,"Henry D. Braxton, ",260 Morning Star Loop,,Natchez,LA,71456,318-357-1612,B,M,N,310 -Alderman ,Village of Natchez ,P. O. Box 229,,Natchez,LA,71456-0229 ,318-352-1414,NATCHITOCHES,"Shelia F. Braxton, ",131 Sam Clark Rd.,,Natchez,LA,71456,318-354-1644,B,F,D,310 -Alderman ,Village of Natchez ,P. O. Box 229,,Natchez,LA,71456-0229 ,318-352-1414,NATCHITOCHES,Henrietta Byrd,P.O. Box 131,,Natchez,LA,71456-0342 ,318-357-8091,B,F,D,310,06/30/2010,02/23/2009,Ms. Byrd -Alderman ,Village of Natchez ,P. O. Box 229,,Natchez,LA,71456-0229 ,318-352-1414,NATCHITOCHES,"Henrietta Byrd, ",216 Johnson Loop,,Natchez,LA,71456-3422,318-357-8091,B,F,N,310 -Alderman ,Village of Natchez ,P. O. Box 229,,Natchez,LA,71456-0229 ,318-352-1414,NATCHITOCHES,Gerald Wayne Johnson,P.O. Box 185,,Natchez,LA,71456-0185 ,318-354-8630,B,M,D,310,06/30/2010,07/01/2006,Mr. Johnson -Alderman ,Village of Natchez ,P. O. Box 229,,Natchez,LA,71456-0229 ,318-352-1414,NATCHITOCHES,Edna Jones,P.O. Box 243,,Natchez,LA,71456,318-354-8259,B,F,,310,06/30/2010,07/01/2006,Ms. Jones -Alderman ,Village of Powhatan ,P. O. Box 126,,Powhatan,LA,71066,318-352-8549,NATCHITOCHES,O. V. Hall,P.O. Box 43,,Powhatan,LA,71066-0043 ,318-352-4216,B,F,D,310,06/30/2012,07/01/2008,Ms. Hall -Alderman ,Village of Powhatan ,P. O. Box 126,,Powhatan,LA,71066,318-352-8549,NATCHITOCHES,"Robert Lilly, Jr.",P.O. Box 173,,Powhatan,LA,71066-0173 ,318-356-5540,B,M,D,310,06/30/2012,07/01/2008,Mr. Lilly -Alderman ,Village of Powhatan ,P. O. Box 126,,Powhatan,LA,71066,318-352-8549,NATCHITOCHES,Hardrick Rivers,P.O. Box 101,,Powhatan,LA,71066-0101 ,318-352-3926,B,M,D,310,06/30/2012,07/01/2008,Mr. Rivers -Alderman ,Village of Provencal ,P. O. Box 400,,Provencal,LA,71468,318-472-8767,NATCHITOCHES,Francine W. Cook,P.O. Box 279,,Provencal,LA,71468,318-472-8166,W,F,R,310,12/31/2010,01/01/2007,Mr. Cook -Alderman ,Village of Provencal ,P. O. Box 400,,Provencal,LA,71468,318-472-8767,NATCHITOCHES,Ray Gandy,P.O. Box 668,,Provencal,LA,71468,318-472-8886,W,M,D,310,12/31/2010,01/01/2007,Mr. Gandy -Alderman ,Village of Provencal ,P. O. Box 400,,Provencal,LA,71468,318-472-8767,NATCHITOCHES,W. E. O'Bannon,P.O. Box 547,,Provencal,LA,71468,318-472-8060,W,M,D,310,12/31/2010,01/01/2007,Mr. O'Bannon -Alderman ,Village of Robeline ,P. O. Box 217,,Robeline,LA,71469,318-472-6121,NATCHITOCHES,Randall Bockstanz,P.O. Box 464,,Robeline,LA,71469,318-472-3200,W,M,D,310,12/31/2010,01/01/2007,Mr. Bockstanz -Alderman ,Village of Robeline ,P. O. Box 217,,Robeline,LA,71469,318-472-6121,NATCHITOCHES,Ronnie French,P.O. Box 371,,Robeline,LA,71469,318-472-9513,W,M,D,310,12/31/2010,01/01/2007,Mr. French -Alderman ,Village of Robeline ,P. O. Box 217,,Robeline,LA,71469,318-472-6121,NATCHITOCHES,Ann Moran,P.O. Box 228,,Robeline,LA,71469,318-472-5576,W,F,D,310,12/31/2010,01/01/2007,Ms. Moran -Council Member ,Village of Ashland ,P. O. Box 327,,Ashland,LA,71002,318544004,NATCHITOCHES,Wayne Best,P.O. Box 477,,Ashland,LA,71002,318-544-8787,W,M,D,310,12/31/2010,01/01/2007,Mr. Best -Council Member ,Village of Ashland ,P. O. Box 327,,Ashland,LA,71002,318544004,NATCHITOCHES,Vincent Bown,P.O. Box,,Ashland,LA,71002,318-544-2593,W,M,R,310,12/31/2010,01/01/2007,Mr. Brown -Council Member ,Village of Ashland ,P. O. Box 327,,Ashland,LA,71002,318544004,NATCHITOCHES,Carol Doyle,1982 Hwy. 155,,Ashland,LA,71002-5038,318-544-8856,W,F,D,310,12/31/2010,01/01/2007,Ms. Doyle -Councilman ,"District 1, City of Natchitoches ",P. O. Box 37,,Natchitoches,LA,71457-0037 ,318-352-2772,NATCHITOCHES,"Jack McCain, Jr.",1020 East Fifth St.,,Natchitoches,LA,71457,318-352-8331,W,M,R,310,05/31/2012,06/01/2008,Mr. McCain -Councilman ,"District 2, City of Natchitoches ",P. O. Box 37,,Natchitoches,LA,71457-0037 ,318-352-2772,NATCHITOCHES,Dale Nielsen,125 Lodi St.,,Natchitoches,LA,71457,318-352-1603,W,M,R,310,05/31/2012,06/01/2008,Mr. Nielsen -Councilman ,"District 3, City of Natchitoches ",P. O. Box 37,,Natchitoches,LA,71457-0037 ,318-352-2772,NATCHITOCHES,Sylvia Morrow,1112 Lake St.,,Natchitoches,LA,71457,318-352-6129,B,F,D,310,05/31/2012,06/01/2008,Ms. Morrow -Councilman ,"District 4, City of Natchitoches ",P. O. Box 37,,Natchitoches,LA,71457-0037 ,318-352-2772,NATCHITOCHES,Larry Payne,1406 W. Lakeshore Dr.,,Natchitoches,LA,71457,318-357-1292,B,M,D,310,05/31/2012,06/01/2008,Mr. Payne -Councilman ,Town of Campti ,197 Edenborne St.,,Campti,LA,71411,318-476-3231,NATCHITOCHES,Mary Donaway Collins,P.O. Box 181,,Campti,LA,71411,318-476-3432,B,F,D,310,12/31/2010,01/01/2007,Ms. Collins -Councilman ,Town of Campti ,197 Edenborne St.,,Campti,LA,71411,318-476-3231,NATCHITOCHES,"Fredrick J. Fisher, Sr.",P.O. Box 813,,Campti,LA,71411,318-476-2067,B,M,D,310,12/31/2010,09/14/2007,Mr. Fisher -Councilman ,Town of Campti ,197 Edenborne St.,,Campti,LA,71411,318-476-3231,NATCHITOCHES,Claudine Hill,334 Lebrum St.,,Campti,LA,71411-4709,318-476-2968,B,F,D,310,12/31/2010,01/01/2007,Ms. Hill -Councilman ,Town of Campti ,197 Edenborne St.,,Campti,LA,71411,318-476-3231,NATCHITOCHES,Anthony Reliford,P.O. Box 1021,,Campti,LA,71411,318-476-3124,B,M,,310,12/31/2010,01/01/2007,Mr. Reliford -Councilman ,Town of Campti ,197 Edenborne St.,,Campti,LA,71411,318-476-3231,NATCHITOCHES,Joyce A. Roberson,P.O. Box 122,,Campti,LA,71411,318-476-3476,B,F,D,310,12/31/2010,01/01/2007,Ms. Roberson -DPEC Member ,District A ,,,,LA,,,ORLEANS,Desiree Cook-Calvin,9012 Olive St.,,New Orleans,LA,70118,504-250-1662,B,F,D,056,02/20/2012,02/20/2008,Ms. Cook-Calvin -DPEC Member ,District A ,,,,LA,,,ORLEANS,Philip Costa,818 City Park Ave.,,New Orleans,LA,70119,504-220-0593,W,M,D,056,02/20/2012,02/20/2008,Mr. Costa -DPEC Member ,District A ,,,,LA,,,ORLEANS,Lisa Gagliano Dawson,4154 Cleveland Ave.,,New Orleans,LA,70119,504-610-4271,W,F,D,056,02/20/2012,02/20/2008,Ms. Dawson -DPEC Member ,District A ,,,,LA,,,ORLEANS,Marshall A. Hevron,926 Joliet St.,,Mew Orleans,LA,70118,,,,,056,,09/28/2008,Mr. Hevron -DPEC Member ,District A ,,,,LA,,,ORLEANS,Walker Hines,100 Audubon Blvd.,,New Orleans,LA,70118,504-231-4991,W,M,D,056,02/20/2012,02/20/2008,Mr. Hines -DPEC Member ,District A ,,,,LA,,,ORLEANS,Alan J. Langhoff,4234 Canal St.,,New Orleans,LA,70119,504-258-9160,W,M,D,056,02/20/2012,02/20/2008,Mr. Langhoff -DPEC Member ,District A ,,,,LA,,,ORLEANS,Deborah Langhoff,4234 Canal St.,,New Orleans,LA,70119,504-259-4525,W,F,D,056,02/20/2012,02/20/2008,Ms. Langhoff -DPEC Member ,District A ,,,,LA,,,ORLEANS,Megan Langhoff,4234 Canal St.,,New Orleans,LA,70119,504-259-4510,W,F,D,056,02/20/2012,02/20/2008,Ms. Langhoff -DPEC Member ,District A ,,,,LA,,,ORLEANS,Kimberly Marshall,21 Maryland Dr.,,New Orleans,LA,70124,504-250-9418,W,F,D,056,02/20/2012,02/20/2008,Ms. Marshall -DPEC Member ,District A ,,,,LA,,,ORLEANS,"John ""Jack"" Sullivan",862 Camp St.,,New Orleans,LA,70130,504-524-1421,W,M,D,056,02/20/2012,02/20/2008,Mr. Sullivan -DPEC Member ,District A ,,,,LA,,,ORLEANS,John Thibodeaux,426 S. Clark St.,,New Orleans,LA,70119,504-723-6789,W,M,D,056,02/20/2012,02/20/2008,Mr. Thibodeaux -DPEC Member ,District A ,,,,LA,,,ORLEANS,"Andrew Tuozzolo, ",3823 Dumaine St,,New Orleans,LA,70119,,,,,056,,01/07/2010 -DPEC Member ,District A ,,,,LA,,,ORLEANS,Evan Wolf,8241 Hickory St.,,New Orleans,LA,70118,504-352-4114,W,M,D,056,02/20/2012,02/20/2008,Mr. Wolf -DPEC Member ,District A ,,,,LA,,,ORLEANS,"Betty Wolfers, ","309 Opal St., 3D",,New Orleans,LA,70124,,,,,056,,01/07/2010 -DPEC Member ,District B ,,,,LA,,,ORLEANS,"Samson ""Skip"" Alexander, Sr.",2719 Marengo St.,,New Orleans,LA,70115,504-891-4959,B,M,D,056,02/20/2012,02/20/2008,Mr. Alexander -DPEC Member ,District B ,,,,LA,,,ORLEANS,O. Butch Bajoie,P.O. Box 15465,,New Orleans,LA,70175,504-891-0631,B,M,D,056,02/20/2012,02/20/2008,Mr. Bajoie -DPEC Member ,District B ,,,,LA,,,ORLEANS,Charmaine Baker-Fox,2138 Terpsichore St.,,New Orleans,LA,70113,504-525-5819,B,F,D,056,02/20/2012,02/20/2008,Ms. Baker-Fox -DPEC Member ,District B ,,,,LA,,,ORLEANS,Jay H. Banks,1746 Jackson Ave.,,New Orleans,LA,70113,504-522-8811,B,M,D,056,02/20/2012,02/20/2008,Mr. Banks -DPEC Member ,District B ,,,,LA,,,ORLEANS,"Margaret ""Maggie"" Carroll",4312 Walmsley Ave.,,New Orleans,LA,70125,504-324-8322,W,F,D,056,02/20/2012,02/20/2008,Ms. Carroll -DPEC Member ,District B ,,,,LA,,,ORLEANS,Karen Carter,"920 Poeyfarre St., Unit 316",,New Orleans,LA,70130,504-568-8346,B,F,D,056,02/20/2012,02/20/2008,Ms. Carter -DPEC Member ,District B ,,,,LA,,,ORLEANS,Julius Feltus,P.O. Box 4403,,New Orleans,LA,70118,504-615-5216,O,M,D,056,02/20/2012,02/20/2008,Mr. Feltus -DPEC Member ,District B ,,,,LA,,,ORLEANS,Natacha Hutchinson,1918 Louisiana Ave.,,New Orleans,LA,70115,504-342-2686,B,F,D,056,02/20/2012,02/20/2008,Ms. Hutchinson -DPEC Member ,District B ,,,,LA,,,ORLEANS,James P. Johnson,1465 N. Broad St.,,New Orleans,LA,70119,504-371-5550,B,M,D,056,02/20/2012,02/20/2008,Mr. Johnson -DPEC Member ,District B ,,,,LA,,,ORLEANS,Felicia Kahn,4908 Carondelet St.,,New Orleans,LA,70115,504-899-1406,W,F,D,056,02/20/2012,02/20/2008,Ms. Kahn -DPEC Member ,District B ,,,,LA,,,ORLEANS,"Walter ""Walt"" Leger, III",2320 Laurel St.,,New Orleans,LA,70130,504-636-1395,W,M,D,056,02/20/2012,02/20/2008,Mr. Leger -DPEC Member ,District B ,,,,LA,,,ORLEANS,"Edward McGinnis, III",838 Fourth St.,,New Orleans,LA,70130,504-914-0963,W,M,D,056,02/20/2012,02/20/2008,Mr. McGinnis -DPEC Member ,District B ,,,,LA,,,ORLEANS,Maurice Ruffin,2412 General Taylor St.,,New Orleans,LA,70115,504-899-4394,B,M,D,056,02/20/2012,02/20/2008,Mr. Ruffin -DPEC Member ,District B ,,,,LA,,,ORLEANS,"Glenis M. Scott, Sr.",P.O. Box 750164,,New Orleans,LA,70175,504-329-1558,B,M,D,056,02/20/2012,02/20/2008,Mr. Scott -DPEC Member ,District C ,,,,LA,,,ORLEANS,Natasha Anthony-Wells,2608 Comet St.,,New Orleans,LA,70131,504-393-6929,B,F,D,056,02/20/2012,02/20/2008,Ms. Anthony-Wells -DPEC Member ,District C ,,,,LA,,,ORLEANS,"Jeffery ""Jeff"" Arnold",2415 Danbury Dr.,,New Orleans,LA,70131,504-393-5801,W,M,D,056,02/20/2012,02/20/2008,Mr. Arnold -DPEC Member ,District C ,,,,LA,,,ORLEANS,Joseph Broussard,209 Brunswick Ct.,,New Orleans,LA,70131,504-391-9641,B,M,D,056,02/20/2012,02/20/2008,Mr. Broussard -DPEC Member ,District C ,,,,LA,,,ORLEANS,Stephanie Roche' Butler,4234 Mac Arthur Blvd.,,New Orleans,LA,70131,504-391-3147,B,F,D,056,02/20/2012,02/20/2008,Ms. Butler -DPEC Member ,District C ,,,,LA,,,ORLEANS,"Troy ""C"" Carter",92 English Turn Dr.,,New Orleans,LA,70131,504-392-6213,B,M,D,056,02/20/2012,02/20/2008,Mr. Carter -DPEC Member ,District C ,,,,LA,,,ORLEANS,"Marlon Defillo, II",28 Seaward Ct.,,New Orleans,LA,70131,504-218-4048,B,M,D,056,02/20/2012,02/20/2008,Mr. Defillo -DPEC Member ,District C ,,,,LA,,,ORLEANS,Ericka Edwards-Jones,#52 Eugenie Court,,New Orleans,LA,70131,504-715-8447,B,F,D,056,02/20/2012,02/20/2008,Ms. Edwards-Jones -DPEC Member ,District C ,,,,LA,,,ORLEANS,"Kenneth Paul Garrett, Sr.",2152 L.B. Landry Ave.,,New Orleans,LA,70114,504-367-7101,B,M,D,056,02/20/2012,02/20/2008,Mr. Garrett -DPEC Member ,District C ,,,,LA,,,ORLEANS,Sandra Henderson-Wilson,1333 Elmira Ave.,,New Orleans,LA,70114,504-362-5997,B,F,D,056,02/20/2012,02/20/2008,Ms. Henderson-Wilson -DPEC Member ,District C ,,,,LA,,,ORLEANS,Darren Lombard,77 Yosemite Dr.,,New Orleans,LA,70131,504-237-8745,B,M,D,056,02/20/2012,02/20/2008,Mr. Lombard -DPEC Member ,District C ,,,,LA,,,ORLEANS,Morris Reed,4 Grand Teton Ct.,,New Orleans,LA,70131,504-822-4357,B,M,D,056,02/20/2012,02/20/2008,Mr. Reed -DPEC Member ,District C ,,,,LA,,,ORLEANS,Ed Robinson,6328 Dover Pl.,,New Orleans,LA,70131,,,,,056,,05/07/2009,Mr. Robinson -DPEC Member ,District C ,,,,LA,,,ORLEANS,Marie C. Williams,64 Grand Canyon Dr.,,New Orleans,LA,70131,504-392-7074,B,F,D,056,02/20/2012,02/20/2008,Ms. Williams -DPEC Member ,District D ,,,,LA,,,ORLEANS,"David Flemings, Jr.",3624 Pin Oak Ave.,,New Orleans,LA,70131,504-915-6358,B,M,D,056,02/20/2012,02/20/2008,Mr. Flemings -DPEC Member ,District D ,,,,LA,,,ORLEANS,Louella P. Givens,5352 Bancroft Dr.,,New Orleans,LA,70122,504-288-4349,B,F,D,056,02/20/2012,02/20/2008,Ms. Givens -DPEC Member ,District D ,,,,LA,,,ORLEANS,Cynthia Hedge-Morrell,4925 Moore Drive,,New Orleans,LA,70122,504-261-0535,B,F,D,056,02/20/2012,02/20/2008,Ms. Hedge-Morrell -DPEC Member ,District D ,,,,LA,,,ORLEANS,Jason M. Hughes,P.O. Box 51107,,New Orleans,LA,70151,504-914-0844,B,M,D,056,02/20/2012,02/20/2008,Mr. Hughes -DPEC Member ,District D ,,,,LA,,,ORLEANS,Carol S. Johnson,2272 N. Robertson St.,,New Orleans,LA,70117,504-428-6598,B,F,D,056,02/20/2012,02/20/2008,Ms. Johnson -DPEC Member ,District D ,,,,LA,,,ORLEANS,Juan Lafonta,306 Warrington Dr.,,New Orleans,LA,70122,504-288-4911,B,M,D,056,02/20/2012,02/20/2008,Mr. Lafonta -DPEC Member ,District D ,,,,LA,,,ORLEANS,Charlene Larche-Mason,P.O. Box 850331,,New Orleans,LA,70185,504-874-3292,B,F,D,056,02/20/2012,02/20/2008,Ms. Larche-Mason -DPEC Member ,District D ,,,,LA,,,ORLEANS,Michael McKenna,4511 Bancroft Dr.,,New Orleans,LA,70122,504-813-6716,B,M,D,056,02/20/2012,02/20/2008,Mr. McKenna -DPEC Member ,District D ,,,,LA,,,ORLEANS,Jennifer Medley,6710 Bamberry St.,,New Orleans,LA,70126,504-495-1385,B,F,D,056,02/20/2012,02/20/2008,Ms. Medley -DPEC Member ,District D ,,,,LA,,,ORLEANS,Arthur A. Morrell,4925 Moore Drive,,New Orleans,LA,70122,504-261-0535,B,M,D,056,02/20/2012,02/20/2008,Mr. Morrell -DPEC Member ,District D ,,,,LA,,,ORLEANS,"""J.P."" Morrell","6305 Elysian Fields Ave., Ste. 405-B",,New Orleans,LA,70122,504-286-2334,B,M,D,056,02/20/2012,02/20/2008,Mr. Morrell -DPEC Member ,District D ,,,,LA,,,ORLEANS,"Ambrose J. Pratt, III",P.O. Box 2771,,Slidell,LA,70459,504-258-9090,B,M,D,056,02/20/2012,02/20/2008,Mr. Pratt -DPEC Member ,District D ,,,,LA,,,ORLEANS,Christian Rhodes,4617 Venus St.,,New Orleans,LA,70122,504-330-9462,B,M,D,056,02/20/2012,02/20/2008,Mr. Rhodes -DPEC Member ,District D ,,,,LA,,,ORLEANS,Angele Wilson,810 Bienville St. #505,,New Orleans,LA,70112,504-430-5570,B,F,D,056,02/20/2012,02/20/2008,Ms. Wilson -DPEC Member ,District E ,,,,LA,,,ORLEANS,Austin Badon,"5555 Bullard Ave., Ste. 101",,New Orleans,LA,70128,504-896-1491,B,M,D,056,02/20/2012,02/20/2008,Mr. Badon -DPEC Member ,District E ,,,,LA,,,ORLEANS,"Ronald Carrere, Jr.",11131 Lake Forest Blvd.,,New Orleans,LA,70128,504-495-8228,B,M,D,056,02/20/2012,02/20/2008,Mr. Carrere -DPEC Member ,District E ,,,,LA,,,ORLEANS,Carolyn Collins-DeBose,11121 lakeforest Blvd.,,New Orleans,LA,70128,504-453-7995,B,F,D,056,02/20/2012,02/20/2008,Ms. Collins-DeBose -DPEC Member ,District E ,,,,LA,,,ORLEANS,Shelia Collins-Stallworth,5801 Waterford Blvd.,,New Orleans,LA,70127,504-450-0457,B,F,D,056,02/20/2012,02/20/2008,Ms. Collins-Stallworth -DPEC Member ,District E ,,,,LA,,,ORLEANS,Michon Copelin,7163 Parkside Ct.,,New Orleans,LA,70127,504-415-9680,B,F,D,056,02/20/2012,02/20/2008,Ms. Copelin -DPEC Member ,District E ,,,,LA,,,ORLEANS,Lena Craig-Stewart,4800 Good Drive,,New Orleans,LA,70127,504-913-9336,B,F,D,056,02/20/2012,02/20/2008,Ms. Craig-Stewart -DPEC Member ,District E ,,,,LA,,,ORLEANS,Brian Egana,11436 S. Easterlyn Cir.,,New Orleans,LA,70128,504-799-8711,B,M,D,056,02/20/2012,02/20/2008,Mr. Egana -DPEC Member ,District E ,,,,LA,,,ORLEANS,Yolanda Evans,4635 Camelia St.,,New Orleans,LA,70126,504-231-9496,B,F,D,056,02/20/2012,02/20/2008,Ms. Evans -DPEC Member ,District E ,,,,LA,,,ORLEANS,"Errol T. George, ",11248 Notaway Ln,,New Orleans,LA,70128,,,,,056,,01/07/2010 -DPEC Member ,District E ,,,,LA,,,ORLEANS,"James A. Gray, II","2 Canal St., Ste. 2707",,New Orleans,LA,70130,504-628-2795,B,M,D,056,02/20/2012,02/20/2008,Mr. Gray -DPEC Member ,District E ,,,,LA,,,ORLEANS,Carl Haydel,P.O. Box 871081,,New Orleans,LA,70187-1081,504-430-4630,B,M,D,056,02/20/2012,02/20/2008,Mr. Haydel -DPEC Member ,District E ,,,,LA,,,ORLEANS,Dana Henry,7600 Hansbrough Ave.,,New Orleans,LA,70127,504-246-3408,B,M,D,056,02/20/2012,02/20/2008,Mr. Henry -DPEC Member ,District E ,,,,LA,,,ORLEANS,Charmaine L. Marchand,1730 Andry St.,,New Orleans,LA,70117,504-945-8151,B,F,D,056,02/20/2012,02/20/2008,Ms. Marchand -DPEC Member ,District E ,,,,LA,,,ORLEANS,Sabrina Mays-Montana,"812 Joe Yenni Blvd., Apt. 19",,New Orleans,LA,70065,504-305-3046,B,F,D,056,02/20/2012,02/20/2008,Ms. Mays-Montana -RPEC Member ,District A ,,,,LA,,,ORLEANS,"John ""Jay"" Batt, Jr.",230 Carondelet St.,,New Orleans,LA,70130,504-528-1073,W,M,R,066,02/20/2012,02/20/2008 -RPEC Member ,District A ,,,,LA,,,ORLEANS,Brett A. Bonin,6628 General Diaz St.,,New Orleans,LA,70124,504-547-3238,W,M,R,066,02/20/2012,02/20/2008,Mr. Bonin -RPEC Member ,District A ,,,,LA,,,ORLEANS,Adrian Bruneau,145 Robert E. Lee Blvd. Ste. 206,,New Orleans,LA,70124,504-858-2832,W,M,R,066,02/20/2012,02/20/2008,Ms. Bruneau -RPEC Member ,District A ,,,,LA,,,ORLEANS,"Christine ""Chrissy"" Bruneau",145 Robert E. Lee Blvd. Ste. 206,,New Orleans,LA,70124,504-458-6272,O,F,R,066,02/20/2012,02/20/2008,Ms. Bruneau -RPEC Member ,District A ,,,,LA,,,ORLEANS,"""Jeb"" Bruneau",7038 General Haig St.,,New Orleans,LA,70124,504-459-6628,W,M,R,066,02/20/2012,02/20/2008,Mr. Bruneau -RPEC Member ,District A ,,,,LA,,,ORLEANS,"Robert ""Bob"" Ellis",8006 Nelson St.,,New Orleans,LA,70125,504-669-7977,W,M,R,066,02/20/2012,02/20/2008 -RPEC Member ,District A ,,,,LA,,,ORLEANS,"John ""Fenn"" French",230 Carondelet St.,,New Orleans,LA,,504-593-9953,W,M,R,066,02/20/2012,02/20/2008,Mr. French -RPEC Member ,District A ,,,,LA,,,ORLEANS,Michele Gaudin,866 City Park Ave.,,New Orleans,LA,70119,504-486-0188,W,F,R,066,02/20/2012,02/20/2008,Ms. Gaudin -RPEC Member ,District A ,,,,LA,,,ORLEANS,"""Peggy"" Gehbauer",87 Avant Garde,,Kenner,LA,70065,504-220-9433,W,F,R,066,02/20/2012,02/20/2008,Ms. Gehbauer -RPEC Member ,District A ,,,,LA,,,ORLEANS,"Alexander ""Alex"" Heaton",7703 Nelson St.,,New Orleans,LA,70125,504-861-2130,W,M,R,066,02/20/2012,02/20/2008,Mr.Heaton -RPEC Member ,District A ,,,,LA,,,ORLEANS,"Nicholas J. ""Nick"" Lorusso",1133 Robert E. Lee Blvd.,,New Orleans,LA,70124,504-282-4001,W,M,R,066,02/20/2012,02/20/2008,Mr. Landry -RPEC Member ,District A ,,,,LA,,,ORLEANS,Robert E. Smith Lupo,78 Tern St.,,New Orleans,LA,70124,504-288-2593,W,M,R,066,02/20/2012,02/20/2008,Mr. Lupo -RPEC Member ,District A ,,,,LA,,,ORLEANS,Murray Nelson,5500 Prytania St. Suite 116,,New Orleans,LA,70115,504-717-7115,W,M,R,066,02/20/2012,02/20/2008,Mr. Nelson -RPEC Member ,District A ,,,,LA,,,ORLEANS,Sal Palmisano,3135 De Saix Blvd.,,New Orleans,LA,70119,504-858-3137,W,M,R,066,02/20/2012,03/18/2008,Mr. Palmisano -RPEC Member ,District B ,,,,LA,,,ORLEANS,Marc Behar,1422 Jackson Avenue,,New Orleans,LA,70130,504-361-3333,,M,R,066,02/20/2012,02/20/2008,Mr. Behar -RPEC Member ,District B ,,,,LA,,,ORLEANS,Randy Boudreaux,2533 Jefferson Ave.,,New Orleans,LA,70115,504-862-5868,W,M,R,066,02/20/2012,02/20/2008,Mr. Boudreaux -RPEC Member ,District B ,,,,LA,,,ORLEANS,Mark M. Cassidy,1201 St. Mary St.,,New Orleans,LA,70130,504-524-2272,W,M,R,066,02/20/2012,02/20/2008,Mr. Cassidy -RPEC Member ,District B ,,,,LA,,,ORLEANS,"Anthony J. Clesi, Jr.",926 Leontine St.,,New Orleans,LA,70115,504-899-4601,W,M,R,066,02/20/2012,02/20/2008,Mr. Clesi -RPEC Member ,District B ,,,,LA,,,ORLEANS,"Hosea J. Doucet, III",1201 St. Mary St.,,New Orleans,LA,70130,504-524-5524,W,M,R,066,02/20/2012,02/20/2008,Mr. Doucet -RPEC Member ,District B ,,,,LA,,,ORLEANS,Barbara A. Lill,1423 Cadiz St.,,New Orleans,LA,70115,504-899-7156,W,F,R,066,02/20/2012,02/20/2008,Ms. Lill -RPEC Member ,District B ,,,,LA,,,ORLEANS,"John Musser, IV",1201 First St.,,New Orleans,LA,70130,504-289-2589,W,M,R,066,02/20/2012,02/20/2008,Mr. Musser -RPEC Member ,District B ,,,,LA,,,ORLEANS,"John Musser, V",1218 Napoleon Ave.,,New Orleans,LA,70115,504-899-4411,W,M,R,066,,,Mr. Huser -RPEC Member ,District B ,,,,LA,,,ORLEANS,Peter A. Nass,5204 Prytania St.,,New Orleans,LA,70115,504-723-6369,W,M,R,066,02/20/2012,02/20/2008,Mr. Nass -RPEC Member ,District B ,,,,LA,,,ORLEANS,Alicia Ohlmeyer,2825 Jefferson Avenue,,New Orleans,LA,70115,504-812-7405,W,F,R,066,02/20/2012,02/20/2008,Ms. Ohlmeyer -RPEC Member ,District B ,,,,LA,,,ORLEANS,Christopher Roos,1685 Soniat St.,,New Orleans,LA,70115,504-895-1685,W,M,R,066,02/20/2012,02/20/2008,Mr. Roos -RPEC Member ,District B ,,,,LA,,,ORLEANS,Bryan Wagner,625 St. Charles Ave. 6C,,New Orleans,LA,70130,504-866-0550,W,M,R,066,02/20/2012,02/20/2008,Mr. Wagner -RPEC Member ,District B ,,,,LA,,,ORLEANS,Judy W. Wagner,"625 St. Charles Ave, 6C",,New Orleans,LA,70130,504-866-0550,W,F,R,066,02/20/2012,02/20/2008,Ms. Wagner -RPEC Member ,District B ,,,,LA,,,ORLEANS,George White,1205 Jefferson Ave.,,New Orleans,LA,70115,504-895-0488,W,M,R,066,02/20/2012,02/20/2008,Mr. White -RPEC Member ,District C ,,,,LA,,,ORLEANS,"Walter P. ""Pete"" Abercrombie",1119 N. Dupre St.,,New Orleans,LA,70119,504-458-0396,W,M,R,066,02/20/2012,02/20/2008,Mr. Ambercrombie -RPEC Member ,District C ,,,,LA,,,ORLEANS,Terri L. Baker,1322 Esplanade Ave.#D,,New Orleans,LA,70116,504-330-7187,W,F,R,066,02/20/2012,02/20/2008,Mr. Baker -RPEC Member ,District C ,,,,LA,,,ORLEANS,Robert Claypool,3935 S. Pin Oak Ave.,,New Orleans,LA,70131,504-391-0120,W,M,R,066,02/20/2012,02/20/2008,Mr. Claypool -RPEC Member ,District C ,,,,LA,,,ORLEANS,Andre Guichard,2071 West Bend Parkway Unit # 284,,New Orleans,LA,70114,504-366-6180,W,M,R,066,02/20/2012,02/20/2008,Mr. Guichard -RPEC Member ,District C ,,,,LA,,,ORLEANS,"John J. Kelly, III",601 Poydras St. Suite 2625,,New Orleans,LA,70130,504-299-3101,,,R,066,02/20/2012,02/20/2008,Mr. Kelly -RPEC Member ,District C ,,,,LA,,,ORLEANS,Edward Markle,126 Lakewood Estates Dr.,,New Orleans,LA,70131,504-392-8127,W,M,R,066,02/20/2012,02/20/2008,Mr. Markle -RPEC Member ,District C ,,,,LA,,,ORLEANS,"""Thomas Long"" Nguyen",3 Grand Teton Court,,New Orleans,LA,70131,504-994-0209,O,M,R,066,02/20/2012,02/20/2008,Mr. Nguyen -RPEC Member ,District C ,,,,LA,,,ORLEANS,James Pfeiffer,3640 Mimosa Ct.,,New Orleans,LA,70131,504-715-7251,W,M,R,066,02/20/2012,02/20/2008,Mr. Pfeiffer -RPEC Member ,District C ,,,,LA,,,ORLEANS,Patrick T. Phillpott,525 Huey P.Long Ave.,,Gretna,LA,70053,504-577-5036,W,M,R,066,02/20/2012,02/20/2008,Mr. Phillpott -RPEC Member ,District C ,,,,LA,,,ORLEANS,Paul Richard,10 Annandale Ct.,,New Orleans,LA,70131,504-394-5056,W,M,R,066,02/20/2012,02/20/2008,Mr. Richard -RPEC Member ,District C ,,,,LA,,,ORLEANS,Darrell H. Richards,2668 Mercedes Blvd.,,New Orleans,LA,70114,504-392-7440,W,M,R,066,02/20/2012,02/20/2008,Mr. Richards -RPEC Member ,District C ,,,,LA,,,ORLEANS,Jacob Rickoll,3227 St. Philip St.,,New Orleans,LA,70119,504-473-6943,W,M,R,066,02/20/2012,02/20/2008,Mr. Rickoll -RPEC Member ,District C ,,,,LA,,,ORLEANS,Stephen M. Swain,1129 Bourbon St.,,New Orleans,LA,70116,504-523-7047,,M,R,066,02/20/2012,02/20/2008,Mr. Swain -RPEC Member ,District C ,,,,LA,,,ORLEANS,"William ""Bill"" Thibaut",816 Orleans St. Apt.-B,,New Orleans,LA,70116,504-522-6650,W,M,R,066,02/20/2012,02/20/2008,Mr. Thibaut -RPEC Member ,District D ,,,,LA,,,ORLEANS,"Oliver ""Bishop O.C."" Coleman",P.O. Box 8800,,New Orleans,LA,70182,504-452-7797,B,M,R,066,02/20/2012,02/20/2008,Mr. Bishop -RPEC Member ,District D ,,,,LA,,,ORLEANS,Meryl B. Duroncelet,46 Forest Oaks Dr.,,New Orleans,LA,70131,504-439-2812,,F,R,066,02/20/2012,02/20/2008,Ms. Duroncelet -RPEC Member ,District D ,,,,LA,,,ORLEANS,Eustis Guillemet,"5985 W. Forrest Isle Dr., Apt. 399",,New Orleans,LA,70131,504-218-5347,,,,066,02/20/2012,02/20/2008,Mr. Guillemet -RPEC Member ,District D ,,,,LA,,,ORLEANS,"Eustis Guillemet, Jr.","5985 W. Forrest Isle Dr., Apt. 399",,New Orleans,LA,70131,504-218-5347,,,,066,02/20/2012,02/20/2008,Mr. Guillemet -RPEC Member ,District D ,,,,LA,,,ORLEANS,"Eustis Guillemet, Jr.","5985 W. Forrest Isle Dr., Apt. 399",,New Orleans,LA,70131,504-218-5347,B,M,R,066,02/20/2012,02/20/2008,Mr. Guillemet -RPEC Member ,District D ,,,,LA,,,ORLEANS,Lloyd A. Harsch,4337 Seminary Pl.,,New Orleans,LA,70126,817-733-0260,W,M,R,066,02/20/2012,02/20/2008,Mr. Harsch -RPEC Member ,District D ,,,,LA,,,ORLEANS,Claire DiRosa Simno,1728 Oriole St.,,New Orleans,LA,70122,504-283-6261,W,F,R,066,02/20/2012,02/20/2008,Ms. Simno -RPEC Member ,District D ,,,,LA,,,ORLEANS,"Elizabeth ""Betsy"" Stoner","3443 Esplanade Ave., Apt. 207",,New Orleans,LA,70119,504-908-0242,W,F,R,066,02/20/2012,02/20/2008,Ms. Stoner -RPEC Member ,District E ,,,,LA,,,ORLEANS,"Anh ""Joseph"" Cao",4371 Murano Rd.,,New Orleans,LA,70129,504-368-0491,O,M,R,066,02/20/2012,02/20/2008,MR. CAO -RPEC Member ,District E ,,,,LA,,,ORLEANS,"Hieu ""Kathie"" Hoang",4371 Murano Rd.,,New Orleans,LA,70129,504-813-0835,O,F,R,066,02/20/2012,02/20/2008,Ms. Hoang -RPEC Member ,District E ,,,,LA,,,ORLEANS,Robert Myers,916 Louisa,,New Orleans,LA,70117,504-417-9607,W,M,R,066,02/20/2012,02/20/2008,Mr. Myers -RPEC Member ,District E ,,,,LA,,,ORLEANS,Bac Cao Nguyen,13900 Chef Menteur Hwy.,,New Orleans,LA,70129,504-638-6555,O,M,R,066,02/20/2012,02/20/2008,Mr. Nguyen -RPEC Member ,District E ,,,,LA,,,ORLEANS,"Hoa ""Monica"" Nguyen",4818 Bergerac St.,,New Orleans,LA,70129,504-717-3396,O,F,R,066,02/20/2012,02/20/2008,Ms. Ngyuen -RPEC Member ,District E ,,,,LA,,,ORLEANS,"Thanh ""Martin"" Nguyen",13937 Dwyer Blvd.,,New Orleans,LA,70129,504-710-3876,O,M,R,066,02/20/2012,02/20/2008,Mr.Nguyen -Judge ,"Juvenile Court, Section A ",421 Loyola Ave.,,New Orleans,LA,70112,504-565-7324,ORLEANS,Ernestine S. Gray,421 Loyola Ave.,,New Orleans,LA,70112,504-565-7325,B,F,D,220,12/31/2014,01/01/2003,Judge Gray -Judge ,"Juvenile Court, Section B ",421 Loyola Ave.,,New Orleans,LA,70112,504-565-7315,ORLEANS,Tammy Stewart,1631 Elysian Fields Ave.#298,,New Orleans,LA,70117,504-512-1833,B,F,D,220,12/31/2014,04/14/2009,Ms. Stewart -Judge ,"Juvenile Court, Section C ",421 Loyola Ave.,,New Orleans,LA,70112,504-565-7370,ORLEANS,David L. Bell,421 Loyola Ave.,,New Orleans,LA,70112,504-484-0880,B,M,D,220,12/31/2014,12/16/2004,Judge Bell -Judge ,"Juvenile Court, Section D ",421 Loyola Ave.,,New Orleans,LA,70112,504-565-7380,ORLEANS,"Lawrence L. ""Larry"" Lagarde, Jr.",6350 Vicksburg St.,,New Orleans,LA,70124,504-488-4777,W,M,D,220,12/31/2014,01/01/2003,Judge Lagarde -Judge ,"Juvenile Court, Section E ",421 Loyola Ave.,,New Orleans,LA,70112,225-565-7383,ORLEANS,"Tracey Flemings-Davillier, ",3624 Pin Oak Ave.,,New Orleans,LA,70131-8444,504-270-5258,B,F,D,220,12/31/2014,02/17/2010 -Judge ,"Juvenile Court, Section F ",421 Loyola Ave.,,New Orleans,LA,70112,504-565-7381,ORLEANS,Mark Doherty,6415 West End Blvd.,,New Orleans,LA,70124,504-482-2262,W,M,D,220,12/31/2014,01/01/2001,Judge Doherty -Civil Sheriff ,,"421 Loyola Ave., Ste. 403",,New Orleans,LA,70112,504-523-6143,ORLEANS,"Paul R. Valteau, Jr.","421 Loyola Ave., Ste. 403",,New Orleans,LA,70112,504-891-1549,B,M,D,225,05/02/2010,05/01/2006,Sheriff Valteau -Criminal Sheriff ,,2800 Gravier St.,,New Orleans,LA,70119,504-827-8501,ORLEANS,Marlin N. Gusman,2800 Gravier St.,,New Orleans,LA,70119,504-339-6270,B,M,D,225,05/02/2010,05/02/2006,Sheriff Gusman -Sheriff,,,,,,,,ORLEANS,"Marlin N. Gusman, ",4478 Venus St.,,New Orleans,LA,70122-4906,504-826-7034,B,M,D,225 -Clerk ,Civil District Court ,"421 Loyola Ave., Ste. 402",,New Orleans,LA,70112,504-592-9100,ORLEANS,"Dale Atkins, ",2411 Oriole St.,,New Orleans,LA,70122-1813,504-286-0229,B,F,D,230 -Clerk ,Civil District Court ,"421 Loyola Ave., Ste. 402",,New Orleans,LA,70112,504-592-9100,ORLEANS,Dale N. Atkins,"421 Loyola Ave., Ste. 402",,New Orleans,LA,70112,504-592-3472,B,F,D,230,05/02/2010,05/02/2006,Ms. Atkins -Clerk ,Criminal District Court ,2800 Gravier St.,,New Orleans,LA,70119,504-339-6270,ORLEANS,Arthur A. Morrell,2800 Gravier St.,,New Orleans,LA,70119,504-400-3691,B,M,D,230,05/02/2010,05/31/2006,Mr. Morrell -Clerk ,Criminal District Court ,2800 Gravier St.,,New Orleans,LA,70119,504-339-6270,ORLEANS,"Arthur A. Morrell, ",4925 Moore Drive,,New Orleans,LA,70122-2515,504-282-7812,B,M,D,230 -Assessor ,,,,,LA,,,ORLEANS,,,,,,,,,,,235 -Assessor ,1st Municipal District ,P.O. Box 57373,,New Orleans,LA,70157-7373,504-658-1310,ORLEANS,Darren Mire,P.O. Box 57373,,New Orleans,LA,70157-7373,504-913-9692,B,M,D,235,05/02/2010,05/31/2006,Mr. Mire -Assessor ,2nd Municipal District ,441 Jewel St.,,New Orleans,LA,70124,504-565-7066,ORLEANS,Claude Mauberret,441 Jewel St.,,New Orleans,LA,70124,504-658-1320,W,M,D,235,05/02/2010,05/02/2006,Mr. Mauberret -Assessor ,3rd Municipal District ,4741 General Early Dr.,,New Orleans,LA,70126,504-565-7071,ORLEANS,Erroll Williams,4741 Gen. Early Dr.,,New Orleans,LA,70126,504-658-1313,B,M,D,235,05/02/2010,05/02/2006,Mr. Williams -Assessor ,4th Municipal District ,963 Jackson Ave.,,New Orleans,LA,70130,504-658-1340,ORLEANS,Betty Jefferson,936 Jackson Ave.,,New Orleans,LA,70130,504-523-6245,B,F,D,235,05/02/2010,05/31/2006,Ms. Jefferson -Assessor ,5th Municipal District ,2407 Danbury Dr.,,New Orleans,LA,70131,504-368-7642,ORLEANS,"""Tom"" Arnold",2407 Danbury Dr.,,New Orleans,LA,70131,504-394-3749,W,M,R,235,05/02/2010,05/02/2006,Mr. Arnold -Assessor ,6th Municipal District ,7303 Spruce St.,,New Orleans,LA,70118,504-658-1360,ORLEANS,Nancy Marshall,625 Lowerline St.,,New Orleans,LA,70118,504-866-8395,W,F,D,235,05/02/2010,05/02/2006,Ms. Marshall -Assessor ,7th Municipal District ,1300 Perdido St.,,New Orleans,LA,70112,504-658-1370,ORLEANS,Henry F. Heaton,231 36th St.,,New Orleans,LA,70124,504-486-6142,W,M,D,235,05/02/2010,05/02/2006,Mr. Heaton -Coroner ,,2700 Tulane Ave.,,New Orleans,LA,70119,504-827-3583,ORLEANS,Frank Minyard,718 Barracks St.,,New Orleans,LA,70116,504-228-9719,W,M,D,240,05/02/2010,05/01/2006,Mr. Minyard -Coroner ,,2700 Tulane Ave.,,New Orleans,LA,70119,504-827-3583,ORLEANS,"Frank Minyard, ",1111 S. Peters St. #221,,New Orleans,LA,70130-1798,504-658-9660,W,M,D,240 -Mayor ,City of New Orleans ,Clerk of City Council,,1300 Perdido St.,LA,70112,504-658-1085,ORLEANS,"Mitchell ""Mitch"" Landrieu, ",2336 Octavia St.,,New Orleans,LA,70115-6532,000-000-0000,W,M,D,243 -Mayor ,City of New Orleans ,Clerk of City Council,,1300 Perdido St.,LA,70112,504-658-1085,ORLEANS,C. Ray Nagin,"1615 Poydras St., Ste. 660",,New Orleans,LA,70112,504-304-8196,B,M,D,243,05/02/2010,05/31/2006,Mayor Nagin -Councilmember at Large ,,"1300 Perdido St., Rm. 1E09",,New Orleans,LA,70112,504-658-1085,ORLEANS,Jacquelyn Brechtel Clarkson,2657 Danbury Dr.,,New Orleans,LA,70131,504-392-2092,W,F,D,244,05/02/2010,11/27/2007,Ms. Clarkson -Councilmember at Large ,,"1300 Perdido St., Rm. 1E09",,New Orleans,LA,70112,504-658-1085,ORLEANS,"Jacquelyn Brechtel Clarkson, ",2657 Danbury Dr.,,New Orleans,LA,70131-3845,504-392-2092,W,F,D,244 -Councilmember at Large ,,"1300 Perdido St., Rm. 1E09",,New Orleans,LA,70112,504-658-1085,ORLEANS,Arnie Fielkow,2220 Palmer Ave.,,New Orleans,LA,70118,504-234-0600,W,M,D,244,05/02/2010,05/31/2006,Mr. Fielkow -Councilmember at Large ,,"1300 Perdido St., Rm. 1E09",,New Orleans,LA,70112,504-658-1085,ORLEANS,"""Arnie"" D. Fielkow, ",2220 Palmer Ave.,,New Orleans,LA,70118-6370,504-905-9025,W,M,D,244 -Councilmember ,District A ,"1300 Perdido St., Rm. 1E09",,New Orleans,LA,,504-658-1085,ORLEANS,Shelley Stephenson Midura,83 Flamingo St.,,New Orleans,LA,70124,504-284-5999,W,F,D,245,05/02/2010,05/31/2006,Ms. Midura -Councilmember ,District B ,"1300 Perdido St., Rm. 1E09",,New Orleans,LA,70112,504-658-1085,ORLEANS,Stacy Head,1675 Soniat St.,,New Orleans,LA,70115,504-891-6957,W,F,D,245,05/02/2010,05/31/2006,Ms. Head -Councilmember ,District B ,"1300 Perdido St., Rm. 1E09",,New Orleans,LA,70112,504-658-1085,ORLEANS,"Stacy Head, ",1675 Soniat St.,,New Orleans,LA,70115-4957,504-891-6957,W,F,D,245 -Councilmember ,District C ,"1300 Perdido St., Rm. 1E09",,New Orleans,LA,70112,504-658-1085,ORLEANS,James Carter,600 Belleville St.,,New Orleans,LA,70114,504-914-1847,B,M,D,245,05/02/2010,05/31/2006,Mr. Carter -Councilmember ,District C ,"1300 Perdido St., Rm. 1E09",,New Orleans,LA,70112,504-658-1085,ORLEANS,"Kristin Gisleson Palmer, ",119 Vallette Street,,New Orleans,LA,70114-1145,504-361-4978,W,F,D,245 -Councilmember ,District D ,"1300 Perdido St., Rm. 1E09",,New Orleans,LA,70112,504-658-1085,ORLEANS,Cynthia Hedge-Morrell,4925 Moore Drive,,New Orleans,LA,70122,504-342-5403,B,F,D,245,05/02/2010,05/02/2006,Ms. Hedge-Morrell -Councilmember ,District D ,"1300 Perdido St., Rm. 1E09",,New Orleans,LA,70112,504-658-1085,ORLEANS,"Cynthia Hedge-Morrell, ",4925 Moore Dr.,,New Orleans,LA,70122-2515,504-282-7812,B,F,D,245 -Councilmember ,District E ,"1300 Perdido St., Rm. 1E09",,New Orleans,LA,70112,504-658-1085,ORLEANS,Cynthia Willard-Lewis,10911 Willowbrae Dr.,,Harvey,LA,70058,504-874-5814,B,F,D,245,05/02/2010,05/02/2006,Ms. Willard-Lewis -Judge ,"1st City Court, Sect. A, City of New Orleans ",421 Loyola Ave.,,New Orleans,LA,70112,504-592-9240,ORLEANS,Charles A. Imbornone,6020 Kensington Blvd.,,New Orleans,LA,70127,504-592-9240,W,M,D,250,12/31/2010,01/01/2005,Judge Imbornone -Judge ,"1st City Court, Sect. B, City of New Orleans ",421 Loyola Ave.,,New Orleans,LA,70112,504-592-9243,ORLEANS,Angelique A. Reed,3438 Octavia St.,,New Orleans,LA,70125,504-592-9243,B,M,D,250,12/31/2010,01/01/2005,Judge Reed -Judge ,"1st City Court, Sect. C, City of New Orleans ",421 Loyola Ave.,,New Orleans,LA,70112,504-592-9247,ORLEANS,Sonja Spears,"421 Loyola Ave., Rm. 201",,New Orleans,LA,70112,504-593-9500,B,F,D,250,12/31/2010,01/01/2005,Mr. Spears -Judge ,"2nd City Court, City of New Orleans ",225 Morgan St.,,New Orleans,LA,70114,504-368-4099,ORLEANS,"Mary ""KK"" Norman",25 English Turn Dr.,,New Orleans,LA,70131,504-394-7452,W,F,D,250,12/31/2012,01/01/2007,Judge Norman -Judge ,Municipal Court ,"727 S. Broad St., Rm. 105",,New Orleans,LA,70119,504-827-5081,ORLEANS,Desiree M. Charbonnet,"365 Canal St., Ste. 1155",,New Orleans,LA,70130,504-949-0996,B,F,D,250,12/31/2016,01/01/2009,Judge Charbonnet -Judge ,Municipal Court ,"727 S. Broad St., Rm. 105",,New Orleans,LA,70119,504-827-5081,ORLEANS,Sean Early,7246 Ring St.,,New Orleans,LA,70124,504-283-0055,W,M,D,250,12/31/2014,01/01/2007,Judge Early -Judge ,Municipal Court ,"727 S. Broad St., Rm. 105",,New Orleans,LA,70119,504-827-5081,ORLEANS,"Joseph ""Joe"" Landry",7027 Argonne Blvd.,,New Orleans,LA,70124,504-309-7029,W,M,D,250,12/31/2010,05/10/2009,Judge Landry -Judge ,Municipal Court ,"727 S. Broad St., Rm. 105",,New Orleans,LA,70119,504-827-5081,ORLEANS,Paul N. Sens,7009 General Haig St.,,New Orleans,LA,70124,504-288-3929,W,M,D,250,12/31/2012,01/01/2005,Judge Sens -Judge ,"Traffic Court, Div. A, City of New Orleans ",727 S. Broad St.,,New Orleans,LA,70119,504-827-5096,ORLEANS,Dennis J. Dannel,6128 Pratt Dr.,,New Orleans,LA,70122,504-286-1330,B,M,D,250,12/31/2012,01/01/2005,Judge Dannel -Judge ,"Traffic Court, Div. B, City of New Orleans ",727 S. Broad St.,,New Orleans,LA,70119,504-827-5095,ORLEANS,"Robert E.""Bobby"" Jones, III",3749 Red Oak Crt.,,New Orleans,LA,70131,504-433-4045,B,M,D,250,12/31/2010,01/01/2003,Judge Jones -Judge ,"Traffic Court, Div. C, City of New Orleans ",727 S. Broad St.,,New Orleans,LA,70119,504-827-5064,ORLEANS,Mark J. Shea,6417 Bertha Dr.,,New Orleans,LA,70122,504-482-5100,W,M,D,250,12/31/2014,04/14/2009,Judge Shea -Judge ,"Traffic Court, Div. D, City of New Orleans ",727 S. Broad St.,,New Orleans,LA,70119,504-827-5005,ORLEANS,"Ronald J. ""Ron"" Sholes",180 Lakewood Estates Dr.,,New Orleans,LA,70131,504-433-4343,B,M,D,250,12/31/2014,01/01/2007,Judge Sholes -Clerk ,"1st City Court, City of New Orleans ",421 Loyola Ave.,,New Orleans,LA,70112,504-592-9155,ORLEANS,Ellen M. Hazeur,5121 Easterlyn Circle,,New Orleans,LA,70128,504-246-9576,B,F,D,252,12/31/2010,01/01/2005,Ms. Hazeur -Clerk ,"2nd City Court, City of New Orleans ",225 Morgan St.,,New Orleans,LA,70114,504-368-4245,ORLEANS,"Martin L. ""Marty"" Broussard",4420 Lennox Blvd.,,New Orleans,LA,70131,504-368-4245,W,M,D,252,12/31/2012,01/01/2007,Mr. Broussard -Constable ,"1st City Court, City of New Orleans ",421 Loyola Ave.,,New Orleans,LA,70112,504-523-3258,ORLEANS,"Lambert C. Boissiere, Jr.",2358 Lake Oaks Parkway,,New Orleans,LA,70122,504-523-3258,B,M,D,253,12/31/2014,01/01/2009,Mr. Boissiere -Constable ,"2nd City Court, City of New Orleans ",225 Morgan St.,,New Orleans,LA,70114,504-368-1101,ORLEANS,Ennis Grundmeyer,1241 Kabel Dr.,,New Orleans,LA,70131,504-392-3800,W,M,D,253,12/31/2012,01/01/2007 -Member of School Board ,District 1 ,3510 General DeGaulle Dr.,,New Orleans,LA,70114,504-304-5702,ORLEANS,Ira Thomas,6931 Queensway Dr.,,New Orleans,LA,70128,504-319-9331,B,M,D,255,12/31/2012,01/01/2009,Ms. Thomas -Member of School Board ,District 2 ,3510 General DeGaulle Dr.,,New Orleans,LA,70114,504-304-5702,ORLEANS,Cynthia Cade,P. O. Box 870986,,New Orleans,LA,70187,504-717-5130,B,F,D,255,12/31/2012,01/01/2009,Ms. Cade -Member of School Board ,District 3 ,3510 General DeGaulle Dr.,,New Orleans,LA,70114,504-304-5702,ORLEANS,Brett A. Bonin,6628 General Diaz Street,,New Orleans,LA,70124,504-482-9589,W,M,R,255,12/31/2012,01/01/2009,Mr. Bonin -Member of School Board ,District 4 ,3510 General DeGaulle Dr.,,New Orleans,LA,70114,504-304-5702,ORLEANS,Lourdes Moran,2620 Ramsey Drive,,New Orleans,LA,70131,504-717-5013,O,F,D,255,12/31/2012,01/01/2009,Ms. Moran -Member of School Board ,District 5 ,3510 General DeGaulle Dr.,,New Orleans,LA,70114,504-304-5702,ORLEANS,Seth J. Bloom,700 Camp St.,,New Orleans,LA,70130,504-599-9997,W,M,R,255,12/31/2012,01/01/2009,Mr. Bloom -Member of School Board ,District 6 ,3510 General DeGaulle Dr.,,New Orleans,LA,70114,504-304-5702,ORLEANS,Woody Koppel,"1215 Prytania St., Ste.238",,New Orleans,LA,70130,504-525-3067,W,M,D,255,12/31/2012,01/01/2009,Mr. Koppel -Member of School Board ,District 7 ,3510 General DeGaulle Dr.,,New Orleans,LA,70114,504-304-5702,ORLEANS,Thomas A. Robichaux,1805 Esplanade Ave.,,New Orleans,LA,70116,504-945-4003,W,M,D,255,12/31/2012,01/01/2009,Mr. Robichaux -DPEC Member ,at Large ,,,,LA,,,OUACHITA,Billye Burns,219 Jackson St.,,West Monroe,LA,71291,318-323-5210,B,F,D,054,02/20/2012,02/20/2008,Mr. Burns -DPEC Member ,at Large ,,,,LA,,,OUACHITA,Mary D. Hall,1398 Parker Rd.,,Monroe,LA,71202,318-330-9092,B,F,D,054,02/20/2012,02/20/2008,Ms. Hall -DPEC Member ,at Large ,,,,LA,,,OUACHITA,"Turner Hayden, Jr.",1111 S. Sixth,,Monroe,LA,71202,318-557-2187,B,M,D,054,02/20/2012,02/20/2008,Mr. Hayden -DPEC Member ,at Large ,,,,LA,,,OUACHITA,Shameka Jones,1413 Crescent Dr.,,Monroe,LA,71202,318-387-2507,B,F,D,054,02/20/2012,02/20/2008,Ms. Jones -DPEC Member ,at Large ,,,,LA,,,OUACHITA,Nikki Wade,1016 N. Seventh St.,,Monroe,LA,71201,318-387-4980,B,F,D,054,02/20/2012,02/20/2008,Ms. Wade -DPEC Member ,District A ,,,,LA,,,OUACHITA,Wayne Trichel,201 Butler Ave.,,West Monroe,LA,71291,318-396-2384,W,M,D,056,02/20/2012,02/20/2008,Mr. Trichel -DPEC Member ,District B ,,,,LA,,,OUACHITA,,,,,,,,,,,056 -DPEC Member ,District C ,,,,LA,,,OUACHITA,"Patton D. McHenry, Jr.",P.O. Box 7177,,Monroe,LA,71211-7177,318-388-0619,W,M,D,056,02/20/2012,02/20/2008,Mr. McHenry -DPEC Member ,District D ,,,,LA,,,OUACHITA,David Pivont,500 Stubbs Ave.,,Monroe,LA,71201,318-388-2136,W,M,D,056,02/20/2012,02/20/2008,Mr. Pivont -DPEC Member ,District E ,,,,LA,,,OUACHITA,,,,,,,,,,,056 -DPEC Member ,District F ,,,,LA,,,OUACHITA,"Rodney McFarland, Sr.",1017 Ouachita Ave.,,Monroe,LA,71201,318-323-0163,B,M,D,056,02/20/2012,02/20/2008,Mr. McFarland -RPEC Member ,at Large ,,,,LA,,,OUACHITA,Bradley Adair,402 Mckinley St.,,Monroe,LA,71201,318-381-2529,W,M,R,064,02/20/2012,02/20/2008,Mr. Adair -RPEC Member ,at Large ,,,,LA,,,OUACHITA,Jack B. Files,2110 Pargoud Blvd.,,Monroe,LA,71201,318-387-2312,W,M,R,064,02/20/2012,02/20/2008,Mr. Files -RPEC Member ,at Large ,,,,LA,,,OUACHITA,Jean Halsell,205 Elmwood Dr.,,West Monroe,LA,71291,318-396-0832,W,F,R,064,02/20/2012,02/20/2008,Ms. Halsell -RPEC Member ,at Large ,,,,LA,,,OUACHITA,Lois P. Hoover,5468 Horseshoe Lake Rd.,,Monroe,LA,71203,318-665-0628,W,F,R,064,02/20/2012,02/20/2008,Ms. Hoover -RPEC Member ,at Large ,,,,LA,,,OUACHITA,Kay Kellogg Katz,2905 Lamy Cr.,,Monroe,LA,71201,318-387-7728,W,F,R,064,02/20/2012,02/20/2008,Ms. Katz -RPEC Member ,District A ,,,,LA,,,OUACHITA,"Charles E. Jackson, III",121 Lafayette Cr.,,West Monroe,LA,71291,318-397-1153,W,M,R,066,02/20/2012,02/20/2008,Mr. Jackson -RPEC Member ,District B ,,,,LA,,,OUACHITA,,,,,,,,,,,066 -RPEC Member ,District C ,,,,LA,,,OUACHITA,Ruth Ulrich,406 Forsythe Ave.,,Monroe,LA,71201,318-330-9780,W,F,R,066,02/20/2012,02/20/2008,Ms. Ulrich -RPEC Member ,District D ,,,,LA,,,OUACHITA,Ben Katz,2905 Lamy Cr.,,Monroe,LA,71201,318-387-7728,W,M,R,066,02/20/2012,02/20/2008,MR. Katz -RPEC Member ,District E ,,,,LA,,,OUACHITA,Shane Smiley,3602 Deborah Dr.,,Monroe,LA,71201,318-855-4401,W,M,R,066,02/20/2012,02/20/2008,Mr. Smiley -RPEC Member ,District F ,,,,LA,,,OUACHITA,,,,,,,,,,,066 -Sheriff ,,P. O. Box 1803,,Monroe,LA,71210-1803,318-329-1200,OUACHITA,Royce Toney,P.O. Box 1803,,Monroe,LA,71210-1803,318-329-1216,W,M,R,225,06/30/2012,07/01/2008,Sheriff Toney -Clerk of Court ,,P. O. Box 1862,,Monroe,LA,71210-1862,318-327-1444,OUACHITA,"""Bill"" Hodge",P. O. Box 1862,,Monroe,LA,71210-1862,318-325-1565,W,M,D,230,06/30/2012,07/01/2008,Mr. Hodge -Assessor ,,P.O. Box 1127,,Monroe,LA,71210,318-327-1300,OUACHITA,"""Rich"" Bailey",134 Marty Ln.,,West Monroe,LA,71291,318-396-8943,W,M,R,235,12/31/2012,01/01/2009,Mr. Bailey -Coroner ,,"1300 N. 7th Street, Suite G",,West Monroe,LA,71291,318-327-1362,OUACHITA,Teri O'Neal,101 Jason Dr.,,West Monroe,LA,71291,318-388-3674,W,F,R,240,03/25/2012,03/24/2008,Mr. O'Neal -Police Juror,District A,P. O. Box 3007,,Monroe,LA,71210-3007,318-327-1340,OUACHITA,"Charles E. Jackson, III",121 Lafayette Cir.,,West Monroe,LA,71291,318-397-1153,W,M,R,245,01/08/2012,01/14/2008,Mr. Jackson -Police Juror ,District B ,P. O. Box 3007,,Monroe,LA,71210-3007,318-327-1340,OUACHITA,"""Mack"" Calhoun",854 Red Cut Rd.,,West Monroe,LA,71292,318-387-2659,W,M,R,245,01/08/2012,01/14/2008,Mr. Calhoun -Police Juror ,District C ,P. O. Box 3007,,Monroe,LA,71210-3007,318-327-1340,OUACHITA,"Walter M. ""Walt"" Caldwell, IV",104 Madelyn Pl.,,West Monroe,LA,71291,318-397-2684,W,M,R,245,01/08/2012,01/14/2008,Mr. Cladwell -Police Juror ,District D ,P. O. Box 3007,,Monroe,LA,71210-3007,318-327-1340,OUACHITA,Ollibeth Reddix,1629 Richwood Rd #1,,Monroe,LA,71202,318-267-8274,B,F,D,245,01/08/2012,10/27/2009,Ms. Reddix -Police Juror ,District E ,P. O. Box 3007,,Monroe,LA,71210-3007,318-327-1340,OUACHITA,Shane Smiley,3602 Deborah Dr.,,Monroe,LA,71201,318-267-8659,W,M,R,245,01/08/2012,01/14/2008,Mr. Smiley -Police Juror ,District F ,P. O. Box 3007,,Monroe,LA,71210-3007,318-327-1340,OUACHITA,Pat Moore,2306 Ticheli Rd.,,Monroe,LA,71202,318-325-5951,B,F,D,245,01/08/2012,01/14/2008,Ms. Moore -City Judge ,"City Court, City of West Monroe ",2303 N. Seventh St.,,West Monroe,LA,71291,318-396-2767,OUACHITA,"""Jim"" Norris",500 Island Dr.,,West Monroe,LA,71291,318-323-1124,W,M,D,250,12/31/2014,01/01/2009,Judge Norris -City Judge ,"City Court, Division A, City of Monroe ",P. O. Box 777,,Monroe,LA,71210,318-329-2580,OUACHITA,Tammy D. Lee,1206 Walton Ln.,,Monroe,LA,71202,318-322-2848,B,F,D,250,12/31/2014,01/01/2009,Judge Lee -City Judge ,"City Court, Division B, City of Monroe ",P. O. Box 777,,Monroe,LA,71210,318-329-2580,OUACHITA,"""Fred"" Amman",3309 Stowers Dr.,,Monroe,LA,71201,318-325-4878,W,M,D,250,12/31/2014,01/01/2009,Judge Amman -City Judge ,"City Court, Division C, City of Monroe ",P. O. Box 777,,Monroe,LA,71210,318-329-2580,OUACHITA,Larry D. Jefferson,6511 Cypress Point Dr.,,Monroe,LA,71203,318-343-1877,B,M,D,250,12/31/2014,01/01/2009,Judge Jefferson -City Marshal ,"City Court, City of Monroe ",P. O. Box 777,,Monroe,LA,71210,318-329-2532,OUACHITA,"Wince Highshaw, Jr.",4704 Bon Aire Dr.,,Monroe,LA,71203,318-343-6393,B,M,D,250,12/31/2014,01/01/2009,Marshal Highshaw -City Marshal ,"City Court, City of West Monroe ",2303 N. Seventh St.,,West Monroe,LA,71291,318-396-8192,OUACHITA,William M. Guyton,2425 North 9th St.,,West Monroe,LA,71291,318-396-4058,W,M,D,250,12/31/2014,01/01/2009,Marshal Guyton -Member of School Board ,"District 1, City of Monroe ",P. O. Box 4180,,Monroe,LA,71211-4180,318-325-0601,OUACHITA,Vickie Dayton,4113 Woodway Dr.,,Monroe,LA,71201,318-329-9320,W,F,R,255,12/31/2010,01/01/2007,Ms. Dayton -Member of School Board ,"District 2, City of Monroe ",P. O. Box 4180,,Monroe,LA,71211-4180,318-325-0601,OUACHITA,Vickie Krutzer,3018 River Oaks Dr.,,Monroe,LA,71201,318-388-1686,W,F,D,255,12/31/2010,01/01/2007,Ms. Krutzer -Member of School Board ,"District 3, City of Monroe ",P. O. Box 4180,,Monroe,LA,71211-4180,318-325-0601,OUACHITA,Mickey Traweek,2507 Brierfield Dr.,,Monroe,LA,71201,318-388-0596,W,M,R,255,12/31/2010,01/01/2007,Mr. Traweek -Member of School Board ,"District 4, City of Monroe ",P. O. Box 4180,,Monroe,LA,71211-4180,318-325-0601,OUACHITA,Jessie L. Handy,3015 Owl St.,,Monroe,LA,71201,318-387-0445,B,M,D,255,12/31/2010,01/01/2007,Mr. Handy -Member of School Board ,"District 5, City of Monroe ",P. O. Box 4180,,Monroe,LA,71211-4180,318-325-0601,OUACHITA,"Rodney McFarland, Sr.",1017 Ouachita Ave.,,Monroe,LA,71201,318-323-0163,B,M,D,255,12/31/2010,01/01/2007,Mr. McFarland -Member of School Board ,"District 6, City of Monroe ",P. O. Box 4180,,Monroe,LA,71211-4180,318-325-0601,OUACHITA,Stephine Shoulders Smith,2003 S. 6th St.,,Monroe,LA,71202-5132,318-361-9295,B,F,D,255,12/31/2010,01/01/2007,Ms. Smith -Member of School Board ,"District 7, City of Monroe ",P.O. Box 4180,,Monroe,LA,71211-4180,318-325-0601,OUACHITA,Brenda Shelling,140 King Oak Dr.,,Monroe,LA,71202,318-323-9150,B,F,D,255,12/31/2010,01/01/2007,Ms. Shelling -Member of School Board ,District A ,100 Bry St.,,Monroe,LA,71201,318-388-2711,OUACHITA,Jack White,412 Maridale Dr.,,,LA,71291,318-322-9837,W,M,D,255,12/31/2010,01/01/2007,Mr. White -Member of School Board ,District B ,100 Bry St.,,Monroe,LA,71201,318-388-2711,OUACHITA,Scott Robinson,805 Avant Rd.,,West Monroe,LA,71291,318-397-9953,W,M,R,255,12/31/2010,01/01/2007,Mr. Robinson -Member of School Board ,District C ,100 Bry St.,,Monroe,LA,71201,318-388-2711,OUACHITA,"A. R. ""Red"" Sims",339 Marion Sims Rd.,,West Monroe,LA,71292,318-322-4696,W,M,D,255,12/31/2010,01/01/2007,Mr. Sims -Member of School Board ,District D ,100 Bry St.,,Monroe,LA,71201,318-388-2711,OUACHITA,Jerry R. Hicks,351 Kendalwood Rd.,,West Monroe,LA,71291,318-396-7118,W,M,D,255,12/31/2010,01/01/2007,Mr. Hicks -Member of School Board ,District E ,100 Bry St.,,Monroe,LA,71201,318-388-2711,OUACHITA,John L. Russell,3615 Reddix Ln.,,Monroe,LA,71202,318-387-1667,B,M,D,255,12/31/2010,01/01/2007,Mr. Russell -Member of School Board ,District F ,100 Bry St.,,Monroe,LA,71201,318-388-2711,OUACHITA,Carey Walker,58 Quail Ridge Dr.,,Monroe,LA,71203,318-343-7272,W,M,R,255,12/31/2010,01/01/2007,Mr. Walker -Member of School Board ,District G ,100 Bry St.,,Monroe,LA,71201,318-388-2711,OUACHITA,Susan Bolton Spence,683 Keystone Rd.,,Monroe,LA,71203,318-665-2422,W,F,R,255,12/31/2010,10/30/2007,Ms. Spence -Justice of the Peace ,Justice of the Peace Ward 1 ,16 Audubon Dr.,,Monroe,LA,71203-2703,318-343-2723,OUACHITA,Lynnette Vining,348 Cypress Knee Dr.,,Monroe,LA,71203,318-503-4391,W,F,R,265,12/31/2014,10/27/2009,Ms. Vining -Justice of the Peace ,Justice of the Peace Ward 2 ,26 Quail Ridge Dr.,,Monroe,LA,71203,318-343-5685,OUACHITA,"""Tommy"" Brunt",26 Quailridge Dr.,,Monroe,LA,71203,318-343-5685,W,M,R,265,12/31/2014,01/01/2009,Mr. Brunt -Justice of the Peace ,Justice of the Peace Ward 6 ,643 Hwy.837,,Calhoun,LA,71225,318-644-2688,OUACHITA,Dorothy Heacock,643 Hwy. 837,,Calhoun,LA,71225,318-644-2688,W,F,,265,12/31/2014,01/01/2009,Ms. Heacock -Justice of the Peace ,Justice of the Peace Ward 7 ,3638 Caples Rd.,,West Monroe,LA,71292,318-396-2457,OUACHITA,Helen Roberts Johnston,3638 Caples Rd.,,West Monroe,LA,71292,318-396-2457,W,F,R,265,12/31/2014,01/01/2009,Ms. Johnston -Justice of the Peace ,Justice of the Peace Ward 8 ,100 Mockingbird Ln.,,West Monroe,LA,71292,318-323-5646,OUACHITA,"James E. ""Jim"" Nolan",100 Mockingbird Ln.,,West Monroe,LA,71292,318-323-5646,W,M,R,265,12/31/2014,01/01/2009,Mr. Nolan -Justice of the Peace ,Justice of the Peace Ward 9 ,1532 Cyress School Rd.,,West Monroe,LA,71292,318-387-5517,OUACHITA,"""Benny"" Owens",1532 Cypress School Rd.,,West Monroe,LA,71292,318-387-5517,W,M,R,265,12/31/2014,01/01/2009,Mr. Owens -Constable ,Justice of the Peace Ward 1 ,178 Saterfield Rd.,,Fairbanks,LA,71240,318-665-2347,OUACHITA,Gerald R. York,P.O. Box 249,,Fairbanks,LA,71240,318-665-2347,W,M,R,267,12/31/2014,01/01/2009,Mr. York -Constable ,Justice of the Peace Ward 2 ,2547 Stubbs Vinson Rd.,,Monroe,LA,71203,318-343-0895,OUACHITA,"Dewey R. Allen, Sr.",350 Springhill Rd.,,Monroe,LA,71203,318-343-4955,W,M,R,267,12/31/2014,01/01/2009,Mr. Allen -Constable ,Justice of the Peace Ward 6 ,P.O. Box 81,,Calhoun,LA,71255,318-644-2250,OUACHITA,Bobby Joe Graves,1623 Griggs Rd.,,Calhoun,LA,71225,318-644-2375,W,M,R,267,12/31/2014,10/27/2009,Mr. Graves -Constable ,Justice of the Peace Ward 7 ,3638 Caples Rd.,,West Monroe,LA,71292,318-396-2457,OUACHITA,Charles H. Johnston,3638 Caples Rd.,,West Monroe,LA,71292,318-396-2457,W,M,R,267,12/31/2014,01/01/2009,Mr. Johnston -Constable ,Justice of the Peace Ward 8 ,375 Caples Rd.,,West Monroe,LA,71292,318-398-0400,OUACHITA,"""Greg"" Sims",375 Caples Rd.,,West Monroe,LA,71292,318-398-0400,W,M,R,267,12/31/2014,01/01/2009,Mr. Sims -Constable ,Justice of the Peace Ward 9 ,222 Owens Rd.,,West Monroe,LA,71292,318-388-4506,OUACHITA,"""Benji"" Owens, ",222 Owens Rd.,,West Monroe,LA,71292-1349,318-388-4506,W,M,R,267,,02/15/2010 -Mayor ,City of Monroe ,P. O. Box 123,,Monroe,LA,,318-329-2252,OUACHITA,Jamie Mayo,318 King Oaks Dr.,,Monroe,LA,71202,318-325-7387,B,M,D,300,07/02/2012,07/07/2008,Mr. Mayo -Mayor ,City of West Monroe ,2305 N. Seventh St.,,West Monroe,LA,,318-396-2600,OUACHITA,Dave Norris,1514 Woodland,,West Monroe,LA,71291,318-396-4451,W,M,D,300,06/30/2010,07/01/2006,Mayor Norris -Mayor ,City of West Monroe ,2305 N. Seventh St.,,West Monroe,LA,,318-396-2600,OUACHITA,"Dave Norris, ",1514 Woodland,,West Monroe,LA,71291-7116,318-396-4451,W,M,D,300 -Mayor ,Town of Richwood ,5130 Brown Rd.,,Richwood,LA,,318-322-2104,OUACHITA,Simeon Profit,5130 Brown Rd.,,Richwood,LA,71202-7004,,,,,300,,10/22/2009,Mayor Profit -Mayor ,Town of Sterlington ,503 Hwy 2,,Sterlington,LA,,318-665-2157,OUACHITA,Vern Breland,P.O. Box 88,,Sterlington,LA,71280,318-450-2707,W,M,R,300,12/31/2010,01/01/2007,Mayor Breland -Chief of Police ,Town of Sterlington ,P. O. Box 1000,,Sterlington,LA,71280,318-665-2157,OUACHITA,Barry Bonner,P.O. Box 1184,,Sterlington,LA,71280,318-665-0524,W,M,R,305,12/31/2010,01/01/2007,Chief Bonner -Alderman ,City of West Monroe ,2305 N. Seventh St.,,West Monroe,LA,71291-5299,318-396-2600,OUACHITA,"James ""Sonny"" Bennett",3000 N. 12th St.,,West Monroe,LA,71291,318-396-0119,W,M,D,310,06/30/2010,07/01/2006,Mr. Bennett -Alderman ,City of West Monroe ,2305 N. Seventh St.,,West Monroe,LA,71291-5299,318-396-2600,OUACHITA,"James ""Polk"" Brian",110 Wilhite,,West Monroe,LA,71291,318-397-5865,W,M,D,310,06/30/2010,07/01/2006,Mr. Brian -Alderman ,City of West Monroe ,2305 N. Seventh St.,,West Monroe,LA,71291-5299,318-396-2600,OUACHITA,Alice Pearson,408 Ferndale Ave.,,West Monroe,LA,71291,318-322-5854,W,F,D,310,06/30/2010,07/01/2006,Ms. Pearson -Alderman ,City of West Monroe ,2305 N. Seventh St.,,West Monroe,LA,71291-5299,318-396-2600,OUACHITA,"Fred Ragland, Jr.",304 Marie St.,,West Monroe,LA,71291,318-323-3572,W,M,,310,06/30/2010,07/01/2006,Mr. Ragland -Alderman ,City of West Monroe ,2305 N. Seventh St.,,West Monroe,LA,71291-5299,318-396-2600,OUACHITA,"L. O. ""Sam"" Yeager",1003 Parkwood St.,,West Monroe,LA,71291,318-396-1527,W,M,D,310,06/30/2010,07/01/2006,Mr. Yeager -Alderman ,Town of Richwood ,5130 Brown Rd.,,Richwood,LA,71202-7004,318-322-2104,OUACHITA,Lavern Hester,5110 Highland St.,,Richwood,LA,71202,318-323-2652,B,M,D,310,06/30/2012,07/01/2008,Mr. Hester -Alderman ,Town of Richwood ,5130 Brown Rd.,,Richwood,LA,71202-7004,318-322-2104,OUACHITA,Alvin Jackson,2939 Lynn Dr.,,Monroe,LA,71202,318-387-1239,B,M,D,310,06/30/2012,07/01/2008,Mr. Jackson -Alderman ,Town of Richwood ,5130 Brown Rd.,,Richwood,LA,71202-7004,318-322-2104,OUACHITA,Leo Kelly,5500 Highland Rd.,,Richwood,LA,71202,318-388-8802,B,M,D,310,06/30/2012,07/01/2008,Mr. Kelly -Alderman ,Town of Richwood ,5130 Brown Rd.,,Richwood,LA,71202-7004,318-322-2104,OUACHITA,Leola Goins Keys,5019 Brown Rd.,,Richwood,LA,71202,318-323-7738,B,F,D,310,06/30/2012,07/01/2008,Ms. Keys -Alderman ,Town of Richwood ,5130 Brown Rd.,,Richwood,LA,71202-7004,318-322-2104,OUACHITA,"Lavenia McKinley, ",5130 Brown Rd.,,Richwood,LA,71202-7004,318-388-6819,,,,310,,11/19/2009,Ms. McKinley -Alderman ,Town of Sterlington ,P. O. Box 1000,,Sterlington,LA,71280,318-665-2157,OUACHITA,Clifford Bullock,P.O. Box 908,,,LA,71280,318-665-2778,W,M,D,310,12/31/2010,01/01/2007,Mr. Bullock -Alderman ,Town of Sterlington ,P. O. Box 1000,,Sterlington,LA,71280,318-665-2157,OUACHITA,Bonnie Dilmore,P.O. Box 77,,,LA,71280,318-665-2571,W,F,,310,12/31/2010,01/01/2007,Ms. Dilmore -Alderman ,Town of Sterlington ,P. O. Box 1000,,Sterlington,LA,71280,318-665-2157,OUACHITA,Ronald A. Hill,620 Bayou Dr.,,,LA,71280,318-665-9810,W,M,R,310,12/31/2010,01/01/2007,Mr. Hill -Alderman ,Town of Sterlington ,P. O. Box 1000,,Sterlington,LA,71280,318-665-2157,OUACHITA,Caesar Velasquez,P.O. Box 37,,Sterlington,LA,71280,318-665-9168,W,M,R,310,12/31/2010,04/14/2009,Mr. Velasquez -Alderman ,Town of Sterlington ,P. O. Box 1000,,Sterlington,LA,71280,318-665-2157,OUACHITA,Ladd Williams,P.O. Box 490,,Sterlington,LA,71280,318-665-4551,W,M,D,310,12/31/2010,01/01/2007,Mr. Williams -Councilman ,"District 1, City of Monroe ",P. O. Box 123,,Monroe,LA,71210,318-329-2252,OUACHITA,"""Jay"" Marx",2602 Point Dr.,,Monroe,LA,71201,318-323-7521,W,M,D,310,07/02/2012,07/07/2008,Mr. Marx -Councilman ,"District 2, City of Monroe ",P. O. Box 123,,Monroe,LA,71210,318-329-2252,OUACHITA,"Gretchen H. Ezernack, ",2109 Redwood Dr.,,Monroe,LA,71201,318-325-7648,,,,310,,01/21/2010,Ms. Ezernack -Councilman ,"District 3, City of Monroe ",P. O. Box 123,,Monroe,LA,71210,318-329-2252,OUACHITA,"Arthur Gilmore, Jr.",4100 Grammont St.,,Monroe,LA,71203,318-345-3557,B,M,D,310,07/02/2012,07/07/2008,Mr. Gilmore -Councilman ,"District 4, City of Monroe ",P. O. Box 123,,Monroe,LA,71210,318-329-2252,OUACHITA,"Robert ""Red"" Stevens",1410 S. Sixth St.,,Monroe,LA,71202,318-388-3339,B,M,D,310,07/02/2012,07/07/2008,Mr. Stevens -Councilman ,"District 5, City of Monroe ",P. O. Box 123,,Monroe,LA,71210,318-329-2252,OUACHITA,Eddie M. Clark,582 Buckhorn Bend Loop Rd.,,Monroe,LA,71202,225-279-1100,B,M,D,310,07/02/2012,05/12/2009,Mr. Clark -DPEC Member ,at Large ,,,,LA,,,PLAQUEMINES,"Amos Cormier, III",106 Woodchase Dr.,,Port Sulphur,LA,70037,504-394-0568,W,M,D,054,02/20/2012,02/20/2008,Mr. Cormier -DPEC Member ,at Large ,,,,LA,,,PLAQUEMINES,Alicia Gravolet,P.O. Box 281,,Belle Chasse,LA,70037,504-394-0937,W,F,D,054,02/20/2012,02/20/2008,Ms. Gravolet -DPEC Member ,at Large ,,,,LA,,,PLAQUEMINES,Herman Gravolet,P.O. Box 261,,Belle Chasse,LA,70037,504-450-1651,W,M,D,054,02/20/2012,02/20/2008,Mr. Gravolet -DPEC Member ,District 1 ,,,,LA,,,PLAQUEMINES,,,,,,,,,,,056 -DPEC Member ,District 2 ,,,,LA,,,PLAQUEMINES,,,,,,,,,,,056 -DPEC Member ,District 3 ,,,,LA,,,PLAQUEMINES,,,,,,,,,,,056 -DPEC Member ,District 4 ,,,,LA,,,PLAQUEMINES,Mack Cormier,106 Highland Ave.,,Belle Chasse,LA,70037,504-920-0169,W,M,D,056,02/20/2012,02/20/2008,Mr. Cormier -DPEC Member ,District 5 ,,,,LA,,,PLAQUEMINES,,,,,,,,,,,056 -DPEC Member ,District 6 ,,,,LA,,,PLAQUEMINES,,,,,,,,,,,056 -DPEC Member ,District 7 ,,,,LA,,,PLAQUEMINES,"E. W. ""Duffy"" LaVigne",28784 Hwy. 23,,Port Sulphur,LA,70083,985-564-0283,W,M,D,056,02/20/2012,02/20/2008,Mr. LaVigne -DPEC Member ,District 8 ,,,,LA,,,PLAQUEMINES,,,,,,,,,,,056 -DPEC Member ,District 9 ,,,,LA,,,PLAQUEMINES,,,,,,,,,,,056 -RPEC Member ,at Large ,,,,LA,,,PLAQUEMINES,Eric Lundin,102 Royal Oaks Ct.,,Belle Chasse,LA,70037,504-392-8221,W,M,R,064,02/20/2012,02/20/2008,Mr. Lundin -RPEC Member ,at Large ,,,,LA,,,PLAQUEMINES,"""Mike"" Mariana",112-A Live Oak Dr.,,Belle Chasse,LA,70037,504-394-8749,W,M,R,064,02/20/2012,02/20/2008,Mr. Mariana -RPEC Member ,District 1 ,,,,LA,,,PLAQUEMINES,,,,,,,,,,,066 -RPEC Member ,District 2 ,,,,LA,,,PLAQUEMINES,Thomas Craine,107 Theta St.,,Belle Chasse,LA,70037,504-391-2979,W,M,R,066,02/20/2012,02/20/2008,Mr. Craine -RPEC Member ,District 3 ,,,,LA,,,PLAQUEMINES,"Harold L. ""Rocky"" Asevedo",433 Oak Tree Rd.,,Belle Chasse,LA,70037,504-392-0038,W,M,R,066,02/20/2012,02/20/2008,Mr. Asevedo -RPEC Member ,District 4 ,,,,LA,,,PLAQUEMINES,Nelson Chaisson,108 Gondrella Dr.,,Belle Chasse,LA,70037,504-433-2929,W,M,R,066,02/20/2012,02/20/2008,Mr. Chaisson -RPEC Member ,District 5 ,,,,LA,,,PLAQUEMINES,,,,,,,,,,,066 -RPEC Member ,District 6 ,,,,LA,,,PLAQUEMINES,,,,,,,,,,,066 -RPEC Member ,District 7 ,,,,LA,,,PLAQUEMINES,,,,,,,,,,,066 -RPEC Member ,District 8 ,,,,LA,,,PLAQUEMINES,,,,,,,,,,,066 -RPEC Member ,District 9 ,,,,LA,,,PLAQUEMINES,,,,,,,,,,,066 -Sheriff ,,P. O. Box 99,,Pointe-a-la-Hache,LA,70082,504-333-4401,PLAQUEMINES,"I. F. ""Jiff"" Hingle",302 Main St.,,Belle Chasse,LA,70037,504-297-5425,W,M,R,225,06/30/2012,07/01/2008,Sheriff Hingle -Clerk of Court ,,P. O. Box 40,,Belle Chasse,LA,70037,504-297-5180,PLAQUEMINES,Dorothy Marvin Lundin,P. O. Box 40,,Belle Chasse,LA,70037,504-392-8221,W,F,R,230,06/30/2012,07/01/2008,Ms. Lundin -Assessor ,,P.O. Box 7129,,Belle Chasse,LA,70037,504-297-5256,PLAQUEMINES,"Robert R. ""Bobby"" Gravolet",108 Cambridge Dr.,,Belle Chasse,LA,70037,504-394-2606,W,M,D,235,12/31/2012,01/01/2009,Mr. Gravolet -Coroner ,,P.O. Box 345,,Port Sulphur,LA,70083,504-398-1100,PLAQUEMINES,Lawrence A. Giambelluca,8200 Hwy. 233,,Belle Chasse,LA,70037,504-398-1100,W,M,D,240,03/25/2012,03/24/2008,Mr. Giambelluca -Parish President ,,P.O. Box 61,,Pointe-a-la-Hache,LA,70082,985-333-4287,PLAQUEMINES,"""Billy"" Nungesser",P.O. Box 743,,Balle Chasse,LA,70037,504-433-1200,W,M,R,243,12/31/2010,01/01/2007,Mr. Nungesser -Member of Parish Council ,District 1 ,P. O. Box 61,,Pointe-a-la-Hache,LA,,985-333-4287,PLAQUEMINES,Don Beshel,8603 Hwy. 39,,Braithwaite,LA,70040,504-682-8004,W,M,R,245,12/31/2010,01/01/2007,Mr. Beshel -Member of Parish Council ,District 2 ,P. O. Box 61,,Pointe-a-la-Hache,LA,70082,985-333-4287,PLAQUEMINES,Keith Hinkley,112 Liberty St.,,Belle Chasse,LA,70037,504-394-6328,W,M,R,245,12/31/2010,01/01/2007,Mr. Hinkley -Member of Parish Council ,District 3 ,P. O. Box 61,,Pointe-a-la-Hache,LA,70082,985-333-4287,PLAQUEMINES,Jerry Hodnett,413 Schlief Dr.,,Belle Chasse,LA,70037,504-394-3699,W,M,R,245,12/31/2010,01/01/2007,Mr. Hodnett -Member of Parish Council ,District 4 ,P. O. Box 61,,Pointe-a-la-Hache,LA,70082,985-333-4287,PLAQUEMINES,"Stuart J. Guey, Jr.",136 Magnolia Dr.,,Belle Chasse,LA,70037,504-394-2441,W,M,R,245,12/31/2010,10/14/2008,Mr. Guey -Member of Parish Council ,District 5 ,P. O. Box 61,,Pointe-a-la-Hache,LA,70082,985-333-4287,PLAQUEMINES,"Anthony L. Buras, Jr.",13158 Hwy. 23,,Belle Chasse,LA,70037,504-656-0003,W,M,R,245,12/31/2010,01/01/2007,Mr. Buras -Member of Parish Council ,District 6 ,P. O. Box 61,,Pointe-a-la-Hache,LA,70082,985-333-4287,PLAQUEMINES,Burghart H. Turner,P.O. Box 137,,Port Sulphur,LA,70083,504-912-1050,B,M,D,245,12/31/2010,01/01/2007,Mr. Turner -Member of Parish Council ,District 7 ,P. O. Box 61,,Pointe-a-la-Hache,LA,70082,985-333-4287,PLAQUEMINES,"John ""Jay"" Friedman",P.O. Box 105,,Buras,LA,70041,504-416-3280,W,M,D,245,12/31/2010,01/01/2007,Mr. Friedman -Member of Parish Council ,District 8 ,P. O. Box 61,,Pointe-a-la-Hache,LA,70082,985-333-4287,PLAQUEMINES,Lynda G. Banta,35600 Hwy. 11,,Buras,LA,70041,504-421-4670,W,F,D,245,12/31/2010,01/01/2007,Ms. Banta -Member of Parish Council ,District 9 ,P. O. Box 61,,Pointe-a-la-Hache,LA,70082,985-333-4287,PLAQUEMINES,Marla Fisher Cooper,42941 Hwy. 23,,Venice,LA,70091,985-534-1447,W,F,D,245,12/31/2010,01/01/2007,Ms. Cooper -Member of School Board ,District 1 ,P. O. Box 69,,Belle Chasse,LA,70037,504-392-4970,PLAQUEMINES,"Michael Wade Jiles, Sr.",2895 English Turn Rd.,,Braithwaite,LA,70040,504-682-8639,B,M,D,255,12/31/2010,10/30/2007,Mr. Jiles -Member of School Board ,District 2 ,P. O. Box 69,,Belle Chasse,LA,70037,504-392-4970,PLAQUEMINES,Nancy LaHaye,108 Louise St.,,Belle Chasse,LA,70037,504-392-2644,W,F,D,255,12/31/2010,01/01/2007,Ms. LaHaye -Member of School Board ,District 3 ,P. O. Box 69,,Belle Chasse,LA,70037,504-392-4970,PLAQUEMINES,"Anthony ""Tony"" St. Philip",422 Dr. Gorman Dr.,,Belle Chasse,LA,70037,504-393-2309,W,M,R,255,12/31/2010,01/01/2007,Mr. St. Philip -Member of School Board ,District 4 ,P. O. Box 69,,Belle Chasse,LA,70037,504-392-4970,PLAQUEMINES,Joyce C. Lamkin,105 Ft. Jackson St.,,Belle Chasse,LA,70037,504-392-1995,W,F,D,255,12/31/2010,01/01/2007,Ms. Lamkin -Member of School Board ,District 5 ,P. O. Box 69,,Belle Chasse,LA,70037,504-392-4970,PLAQUEMINES,Sharon Branan,11781 Hwy. 23,,Belle Chasse,LA,70037,504-656-7270,W,F,D,255,12/31/2010,01/01/2007,Ms. Branan -Member of School Board ,District 6 ,P. O. Box 69,,Belle Chasse,LA,70037,504-392-4970,PLAQUEMINES,"Carlton M. LaFrance, Sr.",24562 Diamond Rd.,,Port Sulphur,LA,70083,504-281-5353,B,M,D,255,12/31/2010,01/01/2007,Mr. LaFrance -Member of School Board ,District 7 ,P. O. Box 69,,Belle Chasse,LA,70037,504-392-4970,PLAQUEMINES,Paul Lemaire,P.O. Box 226,,Port Sulphur,LA,70083,504-912-8562,W,M,D,255,12/31/2010,01/01/2007,MR. Lemaire -Member of School Board ,District 8 ,P. O. Box 69,,Belle Chasse,LA,70037,504-392-4970,PLAQUEMINES,Helen E. Barrois,119 Nu St.,,Belle Chasse,LA,70037,504-214-3839,W,F,R,255,12/31/2010,01/01/2007,Ms. Barrois -Member of School Board ,District 9 ,P. O. Box 69,,Belle Chasse,LA,70037,504-392-4970,PLAQUEMINES,William F. Mertz,39506 Boothville River Rd.,,Buras,LA,70041,985-534-1152,W,M,R,255,12/31/2010,01/01/2007,Mr. Mertz -Justice of the Peace ,Justice of the Peace Ward 1 ,3295 English Turn Rd.,,Braithwaite,LA,70040,504-682-5159,PLAQUEMINES,Mary Seibert,3295 English Turn Rd.,,Braithwaite,LA,70040,504-682-5159,W,F,D,265,12/31/2014,01/01/2009,Ms. Seibert -Justice of the Peace ,Justice of the Peace Ward 2 ,12925 Hwy.15,,Phoenix,LA,70040,985-333-4232,PLAQUEMINES,"Herbert Williams, Jr.",12925 Hwy. 15,,Phoenix,LA,70040,504-874-0300,B,M,D,265,12/31/2014,01/01/2009,Mr. Williams -Justice of the Peace ,Justice of the Peace Ward 3 ,P.O. Box 162,,Pointe-a-la-Hache,LA,70082,985-333-4161,PLAQUEMINES,Chadwick J. Encalade,P.O. Box 162,,Pointe-ala-Hache,LA,70082,504-491-7688,B,M,D,265,12/31/2014,01/01/2009,Mr. Encalade -Justice of the Peace ,Justice of the Peace Ward 4 ,23 Pilottown Ln.,,Pilottown,LA,70081,985-657-2539,PLAQUEMINES,"Davey Lee Naquin, Jr.",104 New Orleans St.,,Belle Chasse,LA,70037,,,,,265,,06/01/2009,Mr. Naquin -Justice of the Peace ,Justice of the Peace Ward 5 ,P.O. Box 173,,Boothville,LA,70038,985-534-9076,PLAQUEMINES,"Robert ""Hot Rod"" Kruithof",P.O. Box 486,,Boothville,LA,70038,504-915-1957,W,M,O,265,12/31/2014,01/01/2009,Mr. Kruithof -Justice of the Peace ,Justice of the Peace Ward 6 ,509 Dr.Gorman Dr.,,Belle Chasse,LA,70037,504-392-4045,PLAQUEMINES,"Davey L. Naquin, Jr.",509 Dr. Gorman Dr.,,Belle Chasse,LA,70037,504-392-4045,W,M,R,265,12/31/2014,01/01/2009,Mr. Naquin -Justice of the Peace ,Justice of the Peace Ward 7 ,281 Rocky Rd.,,Belle Chasse,LA,70037,504-656-0054,PLAQUEMINES,"Paul C. Macaluso, Jr.",281 Rocky Rd.,,Belle Chasse,LA,70037,504-656-7157,W,M,R,265,12/31/2014,01/01/2009,Mr. Macaluso -Justice of the Peace ,Justice of the Peace Ward 8 ,P.O.Box 650,,Port Sulphur,LA,70083,985-564-3604,PLAQUEMINES,"Lorne L. ""Boo"" Landry",P.O. Box 650,,Port Sulphur,LA,70083,504-564-1901,B,M,D,265,12/31/2014,01/01/2009,Mr. Landry -Justice of the Peace ,Justice of the Peace Ward 9 ,144 Holiday Dr.,,Port Sulphur,LA,70083,504-392-6690,PLAQUEMINES,Mary Lou Everage,P.O. Box 726,,Port Sulphur,LA,70083,504-564-0706,W,F,D,265,12/31/2014,01/01/2009,Ms. Everage -Justice of the Peace ,Justice of the Peace Ward 10 ,35161 Hwy. 11,,Buras,LA,70041,985-657-6252,PLAQUEMINES,"""Chuck"" Soileau",31108 Hwy. 23,,Buras,LA,70041,504-382-1519,W,M,R,265,12/31/2014,01/01/2009,Mr. Soileau -Constable ,Justice of the Peace Ward 1 ,5655 Hwy. 39,,Braithwaite,LA,70040,504-682-7471,PLAQUEMINES,Eugene White,5655 Hwy. 39,,Braithwaite,LA,70040,504-682-7471,W,M,D,267,12/31/2014,01/01/2009,Mr. White -Constable ,Justice of the Peace Ward 2 ,P.O. Box 1466,,Braithwaite,LA,70040,985-333-9373,PLAQUEMINES,Hilry Thomas,P.O. Box 1273,,Braithwaite,LA,70040,504-329-4519,B,M,D,267,12/31/2014,01/01/2009,Mr. Thomas -Constable ,Justice of the Peace Ward 3 ,P.O. Box 162,,Pointe-a-la-Haiche,LA,70082,985-333-4161,PLAQUEMINES,Byron L. Encalade,P.O. Box 219,,Pointe-ala-Hache,LA,70082,504-236-1527,B,M,D,267,12/31/2014,01/01/2009,Mr. Enclade -Constable ,Justice of the Peace Ward 4 ,23 Pilottown Ln.,,Pilottown,LA,70081,985-657-2539,PLAQUEMINES,Charles C. Gerkin,412 Good News Dr.,,Belle Chasse,LA,70037,504-715-4640,W,M,D,267,12/31/2014,01/01/2009,Mr. Gerkin -Constable ,Justice of the Peace Ward 5 ,P.O. Box 261,,Boothville,LA,70038,985-534-7515,PLAQUEMINES,Bobbie Gaubert-Holland,P.O. Box 261,,Boothville,LA,70038,504-228-9192,W,F,D,267,12/31/2014,01/01/2009,Ms. Gaubert-Holland -Constable ,Justice of the Peace Ward 6 ,509 Dr. Gorman Dr.,,Belle Chasse,LA,70037,506-392-4045,PLAQUEMINES,"Debra C. ""Debbie"" Naquin",509 Dr. Gorman Dr.,,Belle Chasse,LA,70037,504-392-4045,W,F,R,267,12/31/2014,01/01/2009,Ms. Naquin -Constable ,Justice of the Peace Ward 7 ,172 Rue Acadian,,Belle Chasse,LA,70037,504-656-2217,PLAQUEMINES,David L. Freeman,172 Rue Acadian,,Belle Chasse,LA,70037,504-656-2217,W,M,R,267,12/31/2014,01/01/2009,Mr. Freeman -Constable ,Justice of the Peace Ward 8 ,P.O. Box 650,,Port Sulphur,LA,70083,985-564-3604,PLAQUEMINES,"Andria ""Pal"" Barthelemy",P.O. Box 650,,Port Sulphur,LA,70083,504-289-1208,B,F,D,267,12/31/2014,01/01/2009,Ms. Barthelemy -Constable ,Justice of the Peace Ward 9 ,P.O. Box 183,,Port Sulphur,LA,70083,985-564-3541,PLAQUEMINES,Mary Jo Hebert,28763 Hwy. 23,,Port Sulphur,LA,70083,504-564-2356,W,F,D,267,12/31/2014,01/01/2009,Ms. Hebert -Constable ,Justice of the Peace Ward 10 ,125 Ave. C,,Buras,LA,70041,985-657-8033,PLAQUEMINES,Martha Sue Callais Cook,125 Avenue C,,Buras,LA,70041,504-657-8033,W,F,D,267,12/31/2014,01/01/2009,Ms. Cook -DPEC Member ,at Large ,,,,LA,,,POINTE COUPEE,,,,,,,,,,,054 -DPEC Member ,District 1 ,,,,LA,,,POINTE COUPEE,,,,,,,,,,,056 -DPEC Member ,District 2 ,,,,LA,,,POINTE COUPEE,,,,,,,,,,,056 -DPEC Member ,District 3 ,,,,LA,,,POINTE COUPEE,,,,,,,,,,,056 -DPEC Member ,District 4 ,,,,LA,,,POINTE COUPEE,,,,,,,,,,,056 -DPEC Member ,District 5 ,,,,LA,,,POINTE COUPEE,,,,,,,,,,,056 -DPEC Member ,District 6 ,,,,LA,,,POINTE COUPEE,,,,,,,,,,,056 -DPEC Member ,District 7 ,,,,LA,,,POINTE COUPEE,J. Roosevelt Gremillion,8677 St. Jospeh St.,,New Roads,LA,70760,225-618-0221,B,M,D,056,02/20/2012,02/20/2008,Mr. Gremillion -DPEC Member ,District 8 ,,,,LA,,,POINTE COUPEE,,,,,,,,,,,056 -DPEC Member ,District 9 ,,,,LA,,,POINTE COUPEE,,,,,,,,,,,056 -DPEC Member ,District 10 ,,,,LA,,,POINTE COUPEE,,,,,,,,,,,056 -DPEC Member ,District 11 ,,,,LA,,,POINTE COUPEE,,,,,,,,,,,056 -DPEC Member ,District 12 ,,,,LA,,,POINTE COUPEE,,,,,,,,,,,056 -RPEC Member ,at Large ,,,,LA,,,POINTE COUPEE,,,,,,,,,,,064 -RPEC Member ,District 1 ,,,,LA,,,POINTE COUPEE,,,,,,,,,,,066 -RPEC Member ,District 2 ,,,,LA,,,POINTE COUPEE,,,,,,,,,,,066 -RPEC Member ,District 3 ,,,,LA,,,POINTE COUPEE,,,,,,,,,,,066 -RPEC Member ,District 4 ,,,,LA,,,POINTE COUPEE,,,,,,,,,,,066 -RPEC Member ,District 5 ,,,,LA,,,POINTE COUPEE,,,,,,,,,,,066 -RPEC Member ,District 6 ,,,,LA,,,POINTE COUPEE,Madeleine Caillet,6249 False River Rd.,,Oscar,LA,70762,225-627-4175,W,F,R,066,02/20/2012,02/20/2008,Ms. Caillet -RPEC Member ,District 7 ,,,,LA,,,POINTE COUPEE,,,,,,,,,,,066 -RPEC Member ,District 8 ,,,,LA,,,POINTE COUPEE,,,,,,,,,,,066 -RPEC Member ,District 9 ,,,,LA,,,POINTE COUPEE,,,,,,,,,,,066 -RPEC Member ,District 10 ,,,,LA,,,POINTE COUPEE,,,,,,,,,,,066 -RPEC Member ,District 11 ,,,,LA,,,POINTE COUPEE,,,,,,,,,,,066 -RPEC Member ,District 12 ,,,,LA,,,POINTE COUPEE,,,,,,,,,,,066 -Sheriff ,,P. O. Box 248,,New Roads,LA,70760,225-638-5400,POINTE COUPEE,"Beauregard ""Bud"" Torres, III",P.O. Box 248,,New Roads,LA,70760,225-625-3312,W,M,D,225,06/30/2012,07/01/2008,Sheriff Torres -Clerk of Court ,,P. O. Box 86,,New Roads,LA,70760,225-638-9596,POINTE COUPEE,Lanell Swindler Landry,P.O. Box 86,,New Roads,LA,70760,225-694-8551,W,F,D,230,06/30/2012,07/01/2008,Ms. Landry -Assessor ,,211 E. Main St. Ste. 4,,New Roads,LA,70760,225-638-7077,POINTE COUPEE,"James A. ""Jimmy"" Laurent, Jr.",9638 False River Rd.,,New Roads,LA,70760,225-638-4061,W,M,D,235,12/31/2012,12/18/2009,Mr. Laurent -Coroner ,,P.O. Box 40,,New Roads,LA,70760,225-718-2807,POINTE COUPEE,Harry J. Kellerman,2417 False River Dr.,,New Roads,LA,70760,225-638-7348,W,M,D,240,03/25/2012,03/24/2008,Mr. Kellerman -Police Juror,District 1,P. O. Box 290,,New Roads,LA,70760,225-638-9556,POINTE COUPEE,Allen S. Monk,P.O. Box 285,,Batchelor,LA,70715,225-492-3704,W,M,D,245,01/08/2012,01/14/2008,Mr. Monk -Police Juror ,District 2 ,P. O. Box 290,,New Roads,LA,70760,225-638-9556,POINTE COUPEE,"John ""Sassy"" Pourciau",3768 La. Hwy. 419 W.,,Batchelor,LA,70715,225-492-2701,W,M,D,245,01/08/2012,01/14/2008,Mr. Pourciau -Police Juror ,District 3 ,P. O. Box 290,,New Roads,LA,70760,225-638-9556,POINTE COUPEE,Russell Joseph Young,9005 Mandela Dr.,,New Roads,LA,70760,225-638-3941,B,M,D,245,01/08/2012,01/14/2008,Mr. Young -Police Juror ,District 4 ,P. O. Box 290,,New Roads,LA,70760,225-638-9556,POINTE COUPEE,Glenn Ray Cline,14110 Chenal Rd.,,Jarreau,LA,70749,225-627-9511,W,M,D,245,01/08/2012,01/14/2008,Mr. Cline -Police Juror ,District 5 ,P. O. Box 290,,New Roads,LA,70760,225-638-9556,POINTE COUPEE,"Willard ""Willie"" Olinde, Jr.",P.O. Box 256,,Ventress,LA,70783,225-638-8726,W,M,D,245,01/08/2012,01/14/2008,Mr. Olinde -Police Juror ,District 6 ,P. O. Box 290,,New Roads,LA,70760,225-638-9556,POINTE COUPEE,"Melanie ""Miss Mel"" Bueche",11850 Hwy. 416,,Lakeland,LA,70752,225-627-4055,W,F,R,245,01/08/2012,01/14/2008,Ms. Bueche -Police Juror ,District 7 ,P. O. Box 290,,New Roads,LA,70760,225-638-9556,POINTE COUPEE,"Albert ""Dewey"" Dukes",8979 Rodney Dr.,,New Roads,LA,70760,225-638-3383,B,M,D,245,01/08/2012,01/14/2008,Mr. Dukes -Police Juror ,District 8 ,P. O. Box 290,,New Roads,LA,70760,225-638-9556,POINTE COUPEE,Cornell T. Dukes,309 Rail Road St.,,New Roads,LA,70760,225-638-8778,B,M,D,245,01/08/2012,01/14/2008,Mr. Dukes -Police Juror ,District 9 ,P. O. Box 290,,New Roads,LA,70760,225-638-9556,POINTE COUPEE,Janet P. Vosburg,9431 False River Rd.,,New Roads,LA,70760,225-638-8328,W,F,D,245,01/08/2012,01/14/2008,Mr. Vosburg -Police Juror ,District 10 ,P. O. Box 290,,New Roads,LA,70760,225-638-9556,POINTE COUPEE,Kurt J. Jarreau,P.O. Box 383,,Livonia,LA,70755,225-637-2540,W,M,D,245,01/08/2012,01/14/2008,Mr. Jarreau -Police Juror ,District 11 ,P. O. Box 290,,New Roads,LA,70760,225-638-9556,POINTE COUPEE,"Joseph ""Bozo"" Bergeron",P. O. Box 90,,Fordoche,LA,70732,225-637-3486,W,M,D,245,01/08/2012,01/14/2008,Mr. Bergeron -Police Juror ,District 12 ,P. O. Box 290,,New Roads,LA,70760,225-638-9556,POINTE COUPEE,"Clifford ""Ted"" Nelson",P.O. Box 336,,Ventress,LA,70783,225-638-3589,B,M,D,245,01/08/2012,01/14/2008,Mr. Nelson -Member of School Board ,District A ,P. O. Drawer 579,,New Roads,LA,70760,225-638-8674,POINTE COUPEE,Debbie Collins,13315 Third St.,,Batchelor,LA,70715,225-492-2446,B,F,D,255,12/31/2010,01/01/2007,Ms. Collins -Member of School Board ,District B ,P. O. Drawer 579,,New Roads,LA,70760,225-638-8674,POINTE COUPEE,Brandon Bergeron,13209 Bayou Fordoche Rd.,,Morganza,LA,70759,225-694-2626,W,M,R,255,12/31/2010,01/01/2007,Mr. Bergeron -Member of School Board ,District C ,P. O. Drawer 579,,New Roads,LA,70760,225-638-8674,POINTE COUPEE,"""Tom"" Nelson",9353 Saizon Rd.,,New Roads,LA,70760,225-638-6823,B,M,D,255,12/31/2010,01/01/2007,Mr. Nelson -Member of School Board ,District D ,P. O. Drawer 579,,New Roads,LA,70760,225-638-8674,POINTE COUPEE,Chad A. Aguillard,14163 Patin Dyke Rd.,,Ventress,LA,70783,225-638-9571,B,M,D,255,12/31/2010,01/01/2007,Mr. Aguillard -Member of School Board ,District E ,P. O. Drawer 579,,New Roads,LA,70760,225-638-8674,POINTE COUPEE,"Frank R. ""Frankie"" Aguillard, Jr.",10664 Island Rd.,,Ventress,LA,70783,225-638-6705,W,M,D,255,12/31/2010,01/01/2007,Mr. Aguillard -Member of School Board ,District F ,P. O. Drawer 579,,New Roads,LA,70760,225-638-8674,POINTE COUPEE,Anita LeJeune,3987 Wye Rd.,,Lakeland,LA,70752,225-627-6912,W,F,D,255,12/31/2010,02/23/2009,Ms. LeJeune -Member of School Board ,District G ,P. O. Drawer 579,,New Roads,LA,70760,225-638-8674,POINTE COUPEE,Kevin Hotard,9368 False River Rd.,,New Roads,LA,70760,225-638-7575,W,M,R,255,12/31/2010,01/01/2007,Mr. Hotard -Member of School Board ,District H ,P. O. Drawer 579,,New Roads,LA,70760,225-638-8674,POINTE COUPEE,"James ""Bado"" Cline",P.O. Box 781,,Livonia,LA,70755,225-637-4930,W,M,D,255,12/31/2010,01/01/2007,Mr. Cline -Justice of the Peace ,Justice of the Peace District 1 ,P.O. Box 1,,Lettsworth,LA,70753,225-492-2445,POINTE COUPEE,"Charles ""Chuck"" Lemoine",20236 La. Hwy. 417,,Lettsworth,LA,70753,225-718-3893,W,M,O,265,12/31/2014,01/01/2009,Mr. Lemoine -Justice of the Peace ,Justice of the Peace District 2 ,P.O. Box 9,,Batchelor,LA,70715,225-492-2020,POINTE COUPEE,Sharon Carroll Hebert,P.O. Box 9,,Batchelor,LA,70715,225-492-2020,W,F,D,265,12/31/2014,01/01/2009,Ms. Hebert -Justice of the Peace ,Justice of the Peace District 3 ,8257 Hwy.1,,Morganza,LA,70759,225-694-2414,POINTE COUPEE,"George Molex, III",8257 Hwy. 1,,Morganza,LA,70759,225-694-2414,B,M,D,265,12/31/2014,01/01/2009,Mr. Molex -Justice of the Peace ,Justice of the Peace District 4 ,5278 Noah's Ln.,,Jarreau,LA,70749,225-627-6752,POINTE COUPEE,Stacie P. Myers,5278 Noah's Lane,,Jarreau,LA,70749,225-718-4567,W,F,D,265,12/31/2014,01/01/2009 -Justice of the Peace ,Justice of the Peace District 5 ,8011 Island Rd.,,Ventress,LA,70783,225-638-4326,POINTE COUPEE,Ida J. Chustz,8011 Island Rd.,,Ventress,LA,70783,225-638-4326,W,F,D,265,12/31/2014,01/01/2009,Ms. Chustz -Justice of the Peace ,Justice of the Peace District 6 ,3101 Oakland Rd.,,Lakeland,LA,70752,225-627-5414,POINTE COUPEE,Leona J. Jarreau,3101 Oakland Rd.,,Lakeland,LA,70752,225-627-5414,W,F,D,265,12/31/2014,01/01/2009,Ms. Jarreau -Justice of the Peace ,Justice of the Peace District 7 ,8677 St.Joseph St.,,New Roads,LA,70760,225-618-0221,POINTE COUPEE,J. Roosevelt Gremillion,8677 St. Joseph St.,,New Roads,LA,70760,225-618-0221,B,M,D,265,12/31/2014,01/01/2009,Mr. Gremillion -Justice of the Peace ,Justice of the Peace District 8 ,209 E.Fifth St.,,New Roads,LA,70760,225-638-7023,POINTE COUPEE,Claiborne Ashford,209 East 5th St.,,New Roads,LA,70760,225-638-7023,B,M,D,265,12/31/2014,01/01/2009,Mr. Ashford -Justice of the Peace ,Justice of the Peace District 9 ,P.O. Box 66,,New Roads,LA,70760,225-638-4892,POINTE COUPEE,J. Randy Guidroz,P.O. Box 66,,Ventress,LA,70783,225-638-4892,W,M,D,265,12/31/2014,01/01/2009,Mr. Guidroz -Justice of the Peace ,Justice of the Peace District 10 ,P.O. Box 234,,Livonia,LA,70755,225-637-2915,POINTE COUPEE,John H. Cline,P.O. Box 234,,Livonia,LA,70755,225-637-2915,W,M,D,265,12/31/2014,01/01/2009,Mr. Cline -Justice of the Peace ,Justice of the Peace District 11 ,P.O.Box 178,,Lottie,LA,70756,225-637-2787,POINTE COUPEE,Lillian L. Montgomery,P.O. Box 178,,Lottie,LA,70756,225-637-2787,W,F,D,265,12/31/2014,01/01/2009,Ms. Montgomery -Justice of the Peace ,Justice of the Peace District 12 ,1006 Singletary St.,,New Roads,LA,70760,225-638-6928,POINTE COUPEE,"Kevin ""Gizmo"" St. Cyr, Sr.",P.O. Box 41,,New Roads,LA,70760,225-638-3155,B,M,D,265,12/31/2014,01/01/2009,Mr. St. Cyr -Constable ,Justice of the Peace District 1 ,P.O. Box 15,,Lettsworth,LA,70753,225-492-2394,POINTE COUPEE,Matt Hartford,P.O. Box 15,,Lettsworth,LA,70753,225-492-2394,B,M,D,267,12/31/2014,01/01/2009,Mr. Hartford -Constable ,Justice of the Peace District 2 ,6212 Hwy. 1,,Batchelor,LA,70715,225-492-2390,POINTE COUPEE,"Charles ""Hop"" Hopkins",6212 Hwy. 1,,Batchelor,LA,70715,225-492-2390,W,M,D,267,12/31/2014,01/01/2009,Mr. Hopkins -Constable ,Justice of the Peace District 3 ,8775 Delta Place Rd.,,New Roads,LA,70760,225-638-6122,POINTE COUPEE,"Michael ""Mike"" Porche",8775 Delta Place Road,,New Roads,LA,70760,225-638-6122,B,M,D,267,12/31/2014,01/01/2009,Mr. Porche -Constable ,Justice of the Peace District 4 ,P.O. Box 131,,Jarreau,LA,70749,225-627-4868,POINTE COUPEE,Randy L. Pourciau,5982 Island Rd.,,Jarreau,LA,70749,225-627-4762,W,M,D,267,12/31/2014,01/01/2009,Mr. Pourciau -Constable ,Justice of the Peace District 5 ,P.O. Box 289,,Ventress,LA,70783,225-638-7133,POINTE COUPEE,"Joseph A. ""Boy"" Ballard",P.O. Box 289,,Ventress,LA,70783,225-638-7133,W,M,D,267,12/31/2014,01/01/2009,Mr. Ballard -Constable ,Justice of the Peace District 6 ,P.O. Box 114,,Oscar,LA,70762,225-627-5334,POINTE COUPEE,"Ronald A. ""Ron"" Pourciau",4871 Luther Robillard St.,,Livonia,LA,70755,225-637-3590,W,M,D,267,12/31/2014,01/11/2009,Mr. Pourciau -Constable ,Justice of the Peace District 7 ,P.O. Box 978,,New Roads,LA,70760,225-638-6400,POINTE COUPEE,Gloria J. Facione,P.O. Box 978,,New Roads,LA,70760,225-638-6250,B,F,D,267,12/31/2014,01/01/2009,Ms. Facione -Constable ,Justice of the Peace District 8 ,104 Park Ave.,,New Roads,LA,70760,225-638-8283,POINTE COUPEE,Elie J. Part,407 North Carolina Ave.,,New Roads,LA,70760,225-638-9241,W,M,D,267,12/31/2014,01/01/2009,Mr. Part -Constable ,Justice of the Peace District 9 ,435 Fairfield Ave.,,New Roads,LA,70760,225-638-9346,POINTE COUPEE,George Miller,406 Gretchen St.,,New Roads,LA,70760,225-638-5968,W,M,O,267,12/31/2014,01/01/2009,Mr. Miller -Constable ,Justice of the Peace District 10 ,P.O. Box 721,,Livonia,LA,70755,225-637-3913,POINTE COUPEE,"Christopher ""Scotty"" LeJeune",3611 Church St.,,Livionia,LA,70755,225-718-5209,W,M,D,267,12/31/2014,01/01/2009,Mr. LeJeune -Constable ,Justice of the Peace District 11 ,4300 Oak Dr.,,Fordoche,LA,70732,225-637-3722,POINTE COUPEE,Floyd J. Meche,4300 Oak Dr.,,Fordoche,LA,70732,225-247-1146,W,M,D,267,12/31/2014,01/01/2009,Mr. Meche -Constable ,Justice of the Peace District 12 ,302 Morningside St.,,New Roads,LA,70760,225-638-9622,POINTE COUPEE,Roger D. Dixon,302 Morningside St.,,New Roads,LA,70760,225-638-9622,B,M,D,267,12/31/2014,01/01/2009,Mr. Dixon -Mayor ,City of New Roads ,P. O. Box 280,,New Roads,LA,,225-638-5360,POINTE COUPEE,"""Tommy"" Nelson",P.O. Box 593,,New Roads,LA,70760,225-638-4540,B,M,D,300,12/31/2010,01/01/2007,Mr. Nelson -Mayor ,Town of Fordoche ,P. O. Box 10,,Fordoche,LA,,225-637-3112,POINTE COUPEE,Justin K. Cox,P.O. Box 269,,Fordoche,LA,70732,225-637-3201,W,M,D,300,12/31/2010,01/01/2007,Mr. Cox -Mayor ,Town of Livonia ,P. O. Box 307,,Livonia,LA,,225-637-2981,POINTE COUPEE,Troy Chustz,P.O. Box 313,,Livonia,LA,70755,225-637-3845,W,M,D,300,12/31/2012,01/01/2009,Mr. Chustz -Mayor ,Village of Morganza ,P. O. Box 66,,Morganza,LA,,225-694-3655,POINTE COUPEE,"S. J. ""Boobie"" Tuminello",P. O. Box 123,,Morganza,LA,70759,225-694-2268,W,M,D,300,12/31/2010,07/21/2008,Mr. Tuminello -Chief of Police ,Town of Fordoche ,P. O. Box 10,,Fordoche,LA,70732,225-637-3112,POINTE COUPEE,"""Fred"" Gueho, Jr.",P.O. Box 23,,Fordoche,LA,70737,225-637-2861,W,M,D,305,12/31/2010,01/01/2007,Mr. Guecho -Chief of Police ,Town of Livonia ,P. O. Box 307,,Livonia,LA,70755,225-637-2981,POINTE COUPEE,"""Brad"" E. Joffrion",P.O. Box 772,,Livonia,LA,70755,225-637-3755,W,M,D,305,12/31/2012,01/01/2009,Chief Joffrion -Council Member at Large ,City of New Roads ,P. O. Box 280,,New Roads,LA,70760,225-638-5360,POINTE COUPEE,Anthony Daisy,1112 St. Mary St.,,New Roads,LA,70760,225-638-9009,B,M,D,308,12/31/2010,01/01/2007 -Alderman ,Town of Fordoche ,P. O. Box 10,,Fordoche,LA,70732,225-637-3112,POINTE COUPEE,Teddy Gros,4435 Ammie Dr.,,Fordoche,LA,70732,225-637-3979,W,M,D,310,12/31/2010,01/01/2007,Mr. Gros -Alderman ,Town of Fordoche ,P. O. Box 10,,Fordoche,LA,70732,225-637-3112,POINTE COUPEE,Corey E. Gueho,P.O. Box 431,,Fordoche,LA,70732,225-637-2181,W,M,D,310,12/31/2010,01/01/2007,Mr. Gueho -Alderman ,Town of Fordoche ,P. O. Box 10,,Fordoche,LA,70732,225-637-3112,POINTE COUPEE,Randy St. Romain,P.O. Box 125,,Fordoche,LA,70732,225-637-3843,W,M,D,310,12/31/2010,01/01/2007,Mr. St. Romain -Alderman ,Town of Fordoche ,P. O. Box 10,,Fordoche,LA,70732,225-637-3112,POINTE COUPEE,Don Sonnier,P.O. Box 203,,Fordoche,LA,70732,225-637-4893,W,M,D,310,12/31/2010,01/01/2007,Mr. Sonnier -Alderman ,Town of Fordoche ,P. O. Box 10,,Fordoche,LA,70732,225-637-3112,POINTE COUPEE,"Scott ""Boner"" Wright",P.O. Box 275,,Fordoche,LA,70732,225-637-4923,W,M,D,310,12/31/2010,01/01/2007,Mr. Wright -Council Member ,"District 1, City of New Roads ",P. O. Box 280,,New Roads,LA,70760,225-638-5360,POINTE COUPEE,Vernell Davis,603 Rita St.,,New Roads,LA,70760,225-718-0371,B,M,D,310,12/31/2010,01/01/2007,Mr. Davis -Council Member ,"District 1, City of New Roads ",P. O. Box 280,,New Roads,LA,70760,225-638-5360,POINTE COUPEE,"Walter Warr, Jr.",P.O. Box 622,,New Roads,LA,70760,225-638-4778,B,M,D,310,12/31/2010,01/01/2007,Mr. Warr -Council Member ,"District 2, City of New Roads ",P. O. Box 280,,New Roads,LA,70760,225-638-5360,POINTE COUPEE,Kurt Kellerman,1705 False River Dr.,,New Roads,LA,70760,225-638-4435,W,M,D,310,12/31/2010,01/01/2007,Mr. Kellerman -Council Member ,"District 2, City of New Roads ",P. O. Box 280,,New Roads,LA,70760,225-638-5360,POINTE COUPEE,"Kirk ""Clipper"" White",602 Louisiana St.,,New Roads,LA,70760,225-638-3864,W,M,R,310,12/31/2010,01/01/2007,Mr. White -Council Member ,Town of Livonia ,P. O. Box 307,,Livonia,LA,70755,225-637-2981,POINTE COUPEE,"James ""Lil Buck"" Bergeron",P. O. Box 717,,Livonia,LA,70755,225-718-0271,W,M,D,310,12/31/2012,01/01/2009,Mr. Bergeron -Council Member ,Town of Livonia ,P. O. Box 307,,Livonia,LA,70755,225-637-2981,POINTE COUPEE,Keith Davidson,P. O. Box 471,,Livonia,LA,70755,225-637-2408,W,M,D,310,12/31/2012,01/01/2009,Mr. Davidson -Council Member ,Town of Livonia ,P. O. Box 307,,Livonia,LA,70755,225-637-2981,POINTE COUPEE,"John ""Terry"" Jarreau",P.O. Box 283,,Livonia,LA,70755,225-637-2001,W,M,D,310,12/31/2012,01/01/2009,Mr. Jarreau -Council Member ,Town of Livonia ,P. O. Box 307,,Livonia,LA,70755,225-637-2981,POINTE COUPEE,Barbara A. LeJeune,P. O. Box 282,,Livonia,LA,70755,225-637-2494,W,F,D,310,12/31/2012,01/01/2009,Ms. LeJeune -Council Member ,Town of Livonia ,P. O. Box 307,,Livonia,LA,70755,225-637-2981,POINTE COUPEE,"James ""Rhett"" Pourciau",P. O. Box 311,,Livonia,LA,70755,225-637-2866,W,M,D,310,12/31/2012,01/01/2009,Mr. Pourciau -Council Member ,Village of Morganza ,P. O. Box 66,,Morganza,LA,70759,225-694-3655,POINTE COUPEE,Carmella N. Guedry,P.O. Box 14,,Morganza,LA,70759,225-694-2218,W,F,D,310,12/31/2010,01/01/2007,Ms. Guedry -Council Member ,Village of Morganza ,P. O. Box 66,,Morganza,LA,70759,225-694-3655,POINTE COUPEE,"""Mitch"" Langlois",P.O. Box 312,,Morganza,LA,70759,225-694-2177,W,M,O,310,12/31/2010,01/01/2007,Mr. Langlois -Council Member ,Village of Morganza ,P. O. Box 66,,Morganza,LA,70759,225-694-3655,POINTE COUPEE,Stephanie A. Savoy,P. O. Box 407,,Morganza,LA,70759,225-694-2049,W,F,D,310,12/31/2010,10/14/2008,Ms. Savoy -DPEC Member ,at Large ,,,,LA,,,RAPIDES,"Richard E. ""Dick"" Lee",3204 Robert Dr.,,Pineville,LA,71360,318-473-8769,W,M,D,054,02/20/2012,02/20/2008,Mr. Lee -DPEC Member ,at Large ,,,,LA,,,RAPIDES,Rosia G. Metoyer,910 Papin St.,,Alexandria,LA,71302,318-443-2439,B,F,D,054,02/20/2012,02/20/2008,Ms. Metoyer -DPEC Member ,at Large ,,,,LA,,,RAPIDES,Helen W. Moore,3216 Skyline Dr.,,Pineville,LA,71360,318-448-4464,W,F,D,054,02/20/2012,02/20/2008,Ms. Moore -DPEC Member ,at Large ,,,,LA,,,RAPIDES,"Chris J. Roy, Sr.",2050 Marye St.,,Alexandria,LA,71301,318-443-8027,W,M,D,054,02/20/2012,02/20/2008,Mr. Roy -DPEC Member ,at Large ,,,,LA,,,RAPIDES,Mary L. Wardsworth,3223 Redwood Dr.,,Alexandria,LA,71301,318-448-4036,B,F,D,054,02/20/2012,02/20/2008,Ms. Wardsworth -DPEC Member ,District A ,,,,LA,,,RAPIDES,,,,,,,,,,,056 -DPEC Member ,District B ,,,,LA,,,RAPIDES,Lauren Saucier Hill,5601 Pinekraft Dr.,,Pineville,LA,71360,318-561-2631,W,F,D,056,02/20/2012,02/20/2008,Ms. Hill -DPEC Member ,District C ,,,,LA,,,RAPIDES,,,,,,,,,,,056 -DPEC Member ,District D ,,,,LA,,,RAPIDES,"Theodore Fountaine, III",509 Evangeline Ln.,,Alexandria,LA,71302,318-445-1998,B,M,D,056,02/20/2012,02/20/2008,Mr. Fountaine -DPEC Member ,District E ,,,,LA,,,RAPIDES,,,,,,,,,,,056 -DPEC Member ,District F ,,,,LA,,,RAPIDES,,,,,,,,,,,056 -DPEC Member ,District G ,,,,LA,,,RAPIDES,,,,,,,,,,,056 -DPEC Member ,District H ,,,,LA,,,RAPIDES,,,,,,,,,,,056 -DPEC Member ,District I ,,,,LA,,,RAPIDES,,,,,,,,,,,056 -RPEC Member ,at Large ,,,,LA,,,RAPIDES,John Bradas,1212 Lancaster Dr.,,Alexandria,LA,71303,318-445-1839,W,M,R,064,02/20/2012,02/20/2008,Mr. Bradas -RPEC Member ,at Large ,,,,LA,,,RAPIDES,Kim P. Knight,810 18th St.,,Alexandria,LA,71301,,,,,064,02/20/2012,02/20/2008,Ms. Knight -RPEC Member ,at Large ,,,,LA,,,RAPIDES,Carolyn F. Ledet,1617 Audubon Dr.,,Alexandria,LA,71301,318-484-2876,W,F,R,064,02/20/2012,02/20/2008,Ms. Ledet -RPEC Member ,at Large ,,,,LA,,,RAPIDES,Edan D. Moran,3210 Parkway Dr.,,Alexandria,LA,71301,318-473-1059,W,M,R,064,02/20/2012,02/20/2008,Mr. Moran -RPEC Member ,at Large ,,,,LA,,,RAPIDES,Wayne E. Ryan,6205 Bradford Dr.,,Alexandria,LA,71303,318-613-2202,W,M,R,064,02/20/2012,02/20/2008,Mr. Ryan -RPEC Member ,District A ,,,,LA,,,RAPIDES,"""Gena"" Gore",8940 Hwy. 71N,,Dry Prong,LA,71423,318-640-3811,W,F,R,066,02/20/2012,02/20/2008,Ms. Gore -RPEC Member ,District B ,,,,LA,,,RAPIDES,Robert C. Anderson,281 Stilley Rd.,,Pineville,LA,71360,,,,,066,02/20/2012,02/20/2008,Mr. Anderson -RPEC Member ,District C ,,,,LA,,,RAPIDES,"George Bennett, Jr.",P.O. Box 417,,Libuse,LA,71348,318-308-7287,W,M,R,066,02/20/2012,02/20/2008,Mr. Bennett -RPEC Member ,District D ,,,,LA,,,RAPIDES,Elizabeth Weber Levy,2022 Polk St.,,Alexandria,LA,71301-6341,318-445-3093,W,F,R,066,02/20/2012,02/20/2008,Ms. Levy -RPEC Member ,District E ,,,,LA,,,RAPIDES,Steve Mahoney,2451 Coulee Crossing,,Woodworth,LA,71485,,,,,066,,08/28/2009,Mr. Mahoney -RPEC Member ,District F ,,,,LA,,,RAPIDES,Cynthia M. Delaney,3911 Pecan Dr.,,Alexandria,LA,71302,,,,,066,02/20/2012,02/20/2008,Ms. Delaney -RPEC Member ,District G ,,,,LA,,,RAPIDES,"""Chuck"" Tosten",4202 Wellington Blvd.,,Alexandria,LA,71303-2828,318-442-1016,W,M,R,066,02/20/2012,02/20/2008,Mr. Tosten -RPEC Member ,District H ,,,,LA,,,RAPIDES,Timothy A. Holloway,5006 Laura St.,,Woodworth,LA,71485,,,,,066,02/20/2012,02/20/2008,Mr. Holloway -RPEC Member ,District I ,,,,LA,,,RAPIDES,Karen Kay Haymon,1809 Bush Ave.,,Alexandria,LA,71301,318-449-1108,W,F,R,066,02/20/2012,02/20/2008,Ms. Haymon -Sheriff ,,P. O. Box 1510,,Alexandria,LA,71309,318-473-6704,RAPIDES,"Charles F. ""Chuck"" Wagner, Jr.",P.O. Box 1510,,Alexandria,LA,71309,318-473-6700,W,M,D,225,06/30/2012,07/01/2008,Sheriff Wagner -Clerk of Court ,,P. O. Box 952,,Alexandria,LA,71309,318-473-8153,RAPIDES,Carolyn Jones Ryland,P. O. Box 952,,Alexandria,LA,71309,318-445-7365,W,F,D,230,06/30/2012,07/01/2008,Ms. Ryland -Assessor ,,P.O. Box 2002,,Alexandria,LA,71309,318-448-8511,RAPIDES,Ralph Gill,430 Belgard Bend,,Boyce,LA,71409,318-793-2666,W,M,D,235,12/31/2012,01/01/2009,Mr. Gill -Coroner ,,P.O. Box 747,,Alexandria,LA,71309,318-473-6831,RAPIDES,"Francis Marion Brian, Jr.",P. O. Box 747,,Alexandria,LA,71309,318-473-6831,W,M,R,240,03/25/2012,03/24/2008,Mr. Brian -Police Juror,District A,P. O. Box 1150,,Alexandria,LA,71309-1150,318-473-6660,RAPIDES,"John ""Buck"" Lincecum",6502 Springhill Rd.,,Ball,LA,71405,318-640-4344,W,M,D,245,01/08/2012,01/14/2008,Mr. Lincecum -Police Juror ,District B ,P. O. Box 1150,,Alexandria,LA,71309-1150,318-473-6660,RAPIDES,"""Joe"" Bishop",205 Greer St.,,Pineville,LA,71360,318-443-5690,W,M,D,245,01/08/2012,01/14/2008,Mr. Bishop -Police Juror ,District C ,P. O. Box 1150,,Alexandria,LA,71309-1150,318-473-6660,RAPIDES,Jamie L. Floyd,32 G. Ryder Rd.,,Deville,LA,71328,318-481-2657,W,M,R,245,01/08/2012,01/14/2008,Mr. Floyd -Police Juror ,District D ,P. O. Box 1150,,Alexandria,LA,71309-1150,318-473-6660,RAPIDES,"Theodore Fountaine, Jr.",509 Evangeline Ln.,,Alexandria,LA,71302,318-445-1998,B,M,D,245,01/08/2012,01/14/2008,Mr. Fountaine -Police Juror ,District E ,P. O. Box 1150,,Alexandria,LA,71309-1150,318-473-6660,RAPIDES,Richard Gerald Vanderlick,400 Gladys Dr.,,Alexandria,LA,71303,318-445-4378,W,M,R,245,01/08/2012,01/14/2008,Mr. Vanderlick -Police Juror ,District F ,P. O. Box 1150,,Alexandria,LA,71309-1150,318-473-6660,RAPIDES,"Oliver ""Ollie"" Overton",3809 Spencer St.,,Alexandria,LA,71302,318-484-3532,B,M,D,245,01/08/2012,10/14/2008,Mr. Overton -Police Juror ,District G ,P. O. Box 1150,,Alexandria,LA,71309-1150,318-473-6660,RAPIDES,"""Steve"" Coco",328 Windermere Blvd.,,Alexandria,LA,71303,318-487-0057,W,M,O,245,01/08/2012,01/14/2008,Mr. Coco -Police Juror ,District H ,P. O. Box 1150,,Alexandria,LA,71309-1150,318-473-6660,RAPIDES,Richard W. Billings,P.O. BOX 1150,,Alexandria,LA,71309-1150,318-748-4345,W,M,R,245,01/08/2012,01/14/2008,Mr. Billings -Police Juror ,District I ,P. O. Box 1150,,Alexandria,LA,71309-1150,318-473-6660,RAPIDES,"Scott Perry, Jr.",4324 England Dr.,,Alexandria,LA,71303,318-443-3630,B,M,D,245,01/08/2012,01/14/2008,Mr. Perry -City Judge ,"City Court, City of Alexandria ",P.O. Box 30,,Alexandria,LA,71309,318-449-5151,RAPIDES,"Richard E. Starling, Jr.",6206 Coty Dr.,,Alexandria,LA,71303,318-448-2469,W,M,D,250,12/31/2014,01/01/2009,Judge Starling -City Judge ,"City Court, City of Pineville ",P. O. Box 3671,,Pineville,LA,71361,318-449-5656,RAPIDES,Phillip Terrell,200 Northwood Dr.,,Pineville,LA,71360,318-641-8833,W,M,D,250,12/31/2014,01/01/2009,Judge Terrell -City Marshal ,"City Court, City of Alexandria ",P.O. Box 30,,Alexandria,LA,71309,318-449-5149,RAPIDES,James Byrd,5105 Robinson Dr.,,Alexandria,LA,71301,318-442-9986,B,M,D,250,12/31/2014,01/01/2009,Marshal Byrd -City Marshal ,"City Court, City of Pineville ",P.O. Box 3671,,Pineville,LA,71361,318-449-5657,RAPIDES,Larry W. Jeane,175 Northwood Dr.,,Pineville,LA,71360,318-641-0498,W,M,R,250,12/31/2014,01/01/2009,Marshal Jean -Member of School Board ,District A ,P. O. Box 1230,,Alexandria,LA,71309-1230,318-487-0888,RAPIDES,"Wilton Barrios, Jr.",P.O. Box 655,,Tioga,LA,71477,318-640-4274,W,M,R,255,12/31/2010,01/01/2007,Mr. Barrios -Member of School Board ,District B ,P. O. Box 1230,,Alexandria,LA,71309-1230,318-487-0888,RAPIDES,Steve Berry,110 Myrtlewood Dr.,,Pineville,LA,71360,318-448-8300,W,M,R,255,12/31/2010,01/01/2007,Mr. Berry -Member of School Board ,District C ,P. O. Box 1230,,Alexandria,LA,71309-1230,318-487-0888,RAPIDES,"""E. L."" Paulk",6750 Dogwood Dr.,,Pineville,LA,71360,318-466-3139,W,M,D,255,12/31/2010,01/01/2007,Mr. Paulk -Member of School Board ,District D ,P. O. Box 1230,,Alexandria,LA,71309-1230,318-487-0888,RAPIDES,Janet H. Dixon,2701 3rd St.,,Alexandria,LA,71302,318-709-1423,B,F,D,255,12/31/2010,10/14/2008,Ms. Dixon -Member of School Board ,District E ,P. O. Box 1230,,Alexandria,LA,71309-1230,318-487-0888,RAPIDES,Stephen Chapman,1135 Lake Dr.,,Woodworth,LA,71485,318-448-4382,W,M,R,255,12/31/2010,01/01/2007,Mr. Chapman -Member of School Board ,District F ,P. O. Box 1230,,Alexandria,LA,71309-1230,318-487-0888,RAPIDES,"John E. Allen, Jr.",1610 Van St.,,Alexandria,LA,71301,318-442-1036,B,M,D,255,12/31/2010,01/01/2007,Mr. Allen -Member of School Board ,District G ,P. O. Box 1230,,Alexandria,LA,71309-1230,318-487-0888,RAPIDES,Paul Dauzat,1220 Windsor Place,,Alexandria,LA,71301,318-443-3977,W,M,R,255,12/31/2010,01/01/2007,Mr. Dauzat -Member of School Board ,District H ,P. O. Box 1230,,Alexandria,LA,71309-1230,318-487-0888,RAPIDES,"""Al"" Davis",P.O. Box 137,,Elmer,LA,71424,318-659-4226,W,M,D,255,12/31/2010,01/01/2007,Mr. Davis -Member of School Board ,District I ,P. O. Box 1230,,Alexandria,LA,71309-1230,318-487-0888,RAPIDES,"""Pam"" Webb",1420 S. City Park,,Alexandria,LA,71301,318-443-1457,W,F,R,255,12/31/2010,01/01/2007,Ms. Webb -Justice of the Peace ,Justice of the Peace Ward 2 ,516 River Rd.,,Alexandria,LA,71302,318-563-4452,RAPIDES,"""Mike"" Herrin",699 Hwy. 457,,Lecompte,LA,71346,318-776-6469,W,M,D,265,12/31/2014,01/01/2009,Mr. Herrin -Justice of the Peace ,"Justice of the Peace Ward 3, 1st Just. Court",P.O. Box 45,,Cheneyville,LA,71325,318-279-2272,RAPIDES,Edward M. Beaver,P.O. Box 106,,Cheneyville,LA,71325,318-279-2415,W,M,R,265,12/31/2014,01/01/2009,Mr. Beaver -Justice of the Peace ,"Justice of the Peace Ward 3, 2nd Just. Court",,,,LA,,,RAPIDES,Kermit Bowman,P.O. Box 766,,Lecompte,LA,71346,318-776-5328,W,M,D,265,12/31/2014,01/01/2009,Mr. Bowman -Justice of the Peace ,"Justice of the Peace Ward 4, 1st Just. Court",P.O. Box 68,,Forest Hill,LA,71430,318-748-6784,RAPIDES,"""John"" Ethridge",P.O. Box 68,,Forest Hill,LA,71430,318-748-6784,W,M,D,265,12/31/2014,01/01/2009,Mr. Ethridge -Justice of the Peace ,"Justice of the Peace Ward 4, 2nd Just. Court",P.O.Box 277,,Glenmora,LA,71433,318-748-4582,RAPIDES,"Paula Brady, ",P.O. Box 277,,Glenmora,LA,71433,318-748-4582,W,F,D,265,12/31/2014,01/01/2009,Ms. Brady -Justice of the Peace ,"Justice of the Peace Ward 5, 1st Just. Court",157 Dixie Church Rd.,,Sieper,LA,71472,318-793-4815,RAPIDES,Carolyn N. Holt,157 Dixie Church Rd.,,Sieper,LA,71472,318-793-4815,W,,D,265,12/31/2014,01/01/2009,Ms. Holt -Justice of the Peace ,"Justice of the Peace Ward 5, 2nd Just. Court",36 Ed Miller Rd.,,Elmer,LA,71424,318-659-4357,RAPIDES,Margaruette H. Beard,36 Ed Miller Rd.,,Elmer,LA,71424,318-659-4357,W,F,D,265,12/31/2014,01/01/2009,Ms. Beard -Justice of the Peace ,Justice of the Peace Ward 6 ,93 Humble Church Rd.,,Glenmora,LA,71433,318-634-7425,RAPIDES,Darrell Rodriguez,93 Humble Church Rd.,,Glenmora,LA,71433,318-634-7425,W,M,D,265,12/31/2014,01/01/2009,Mr. Rodriguez -Justice of the Peace ,"Justice of the Peace Ward 7, 1st Just. Court",890 Hwy 8,,Lena,LA,71447,318-793-2586,RAPIDES,Raymond E. Cupples,890 Hwy. 8,,Lena,LA,71447,318-793-2586,,,O,265,12/31/2014,01/01/2009,Mr. Cupples -Justice of the Peace ,"Justice of the Peace Ward 7, 2nd Just. Court",4990 Hot Wells Rd.,,Boyce,LA,71409,318-793-9912,RAPIDES,Joe Keith Nichols,5230 Hwy. 121,,Boyce,LA,71409,318-793-8889,W,M,R,265,12/31/2014,01/01/2009,Mr. Nichols -Justice of the Peace ,Justice of the Peace Ward 8 ,536 N Bayou Rapides,,Alexandria,LA,71303,318-487-2077,RAPIDES,"Jennifer ""Jenni"" Peterman",536 N. Bayou Rapides Rd.,,Alexandria,LA,71303,318-487-2077,W,F,R,265,12/31/2014,01/01/2009 -Justice of the Peace ,Justice of the Peace Ward 10 ,6502 Springhill Rd.,,Pineville,LA,71360,318-640-4344,RAPIDES,Edwin Bonial,4221 Aspen Ct.,,Pineville,LA,71360,318-640-5073,W,M,R,265,12/31/2014,01/01/2009,Mr. Bonial -Justice of the Peace ,Justice of the Peace Ward 11 ,1006 Windy Dr.,,Pineville,LA,71360,318-473-9216,RAPIDES,"""Artie"" Cole",1006 Windy Dr.,,Pineville,LA,71360,318-473-9216,W,M,,265,12/31/2014,01/01/2009,Mr. Cole -Constable ,Justice of the Peace Ward 2 ,P.O. Box 189,,Woodworth,LA,71485,318-487-8548,RAPIDES,Charles R. Butler,P.O. Box 189,,Woodworth,LA,71485,318-487-8548,,,D,267,12/31/2014,01/01/2009,Mr. Butler -Constable ,"Justice of the Peace Ward 3, 1st Just. Court",179 Munson Rd.,,Cheneyville,LA,71325,318-279-2103,RAPIDES,John Buddie Guillory,177 Munson Rd.,,Cheneyville,LA,71325,318-481-8193,W,M,D,267,12/31/2014,01/01/2009,Mr. Guillory -Constable ,"Justice of the Peace Ward 3, 2nd Just. Court",P.O. Box 878,,Lecompte,LA,71346,318-776-0533,RAPIDES,Frank J. Spears,P.O. Box 878,,Lecompte,LA,71346,318-776-9960,W,M,D,267,12/31/2014,01/01/2009,Mr. Spears -Constable ,"Justice of the Peace Ward 4, 1st Just. Court",P.O. Box 308,,Forest Hill,LA,71430,318-748-6422,RAPIDES,"""Rob"" Hewitt",210 Butter Cemetary Rd.,,Forest Hill,LA,71430,318-451-9165,W,M,D,267,12/31/2014,10/27/2009,Mr. Hewitt -Constable ,"Justice of the Peace Ward 4, 2nd Just. Court",P.O. Box 1032,,Glenmore,LA,71433,318-748-4065,RAPIDES,"Matt A. Martin, III",P. O. Box 603,,Glenmora,LA,71433,318-792-5884,W,M,D,267,12/31/2014,10/27/2009,Mr. Martin -Constable ,"Justice of the Peace Ward 5, 1st Just. Court",410 Ian Johnson Rd.,,Sieper,LA,71472,318-793-8977,RAPIDES,Clyde W. George,410 Ian Johnson Rd.,,Sieper,LA,71472,318-793-8977,W,M,D,267,12/31/2014,01/01/2009,Mr. George -Constable ,"Justice of the Peace Ward 5, 2nd Just. Court",8444 Twin Bridges Rd.,,Elmer,LA,71424,318-659-4585,RAPIDES,Hershel Williamson,6382 Hwy. 112,,Glenmora,LA,71433,318-659-4987,,,D,267,12/31/2014,01/01/2009,Mr. Williamson -Constable ,Justice of the Peace Ward 6 ,117 Chester MC Rd.,,Pitkin,LA,70656,318-634-7184,RAPIDES,"""L. C."" Coker",117 Chester Mc Rd.,,Pitkin,LA,70656,318-634-7184,W,M,D,267,12/31/2014,01/01/2009,Mr. Coker -Constable ,"Justice of the Peace Ward 7, 1st Just. Court",1677 Lena-Flatwoods Rd.,,Lena,LA,71447,318-793-2996,RAPIDES,"Robert ""R.K."" Beebe",P.O. Box 311,,Boyce,LA,71409-0311 ,318-793-2996,W,M,D,267,12/31/2014,01/01/2009,Mr. Beebe -Constable ,"Justice of the Peace Ward 7, 2nd Just. Crt. ",335 Red Store Hill Rd.,,Boyce,LA,71409,318-793-2552,RAPIDES,Jason T. Beebe,15 Knight Rd.,,Lena,LA,71447,318-793-9358,W,M,O,267,12/31/2014,01/01/2009,Mr. Beebe -Constable ,Justice of the Peace Ward 8 ,8822 Hwy. 28 W.,,Alexandria,LA,71303,318-449-8509,RAPIDES,Vernon G. Mathews,8822 Hwy. 28 West,,Alexandria,LA,71303,318-449-8509,,,D,267,12/31/2014,01/01/2009,Mr. Mathews -Constable ,Justice of the Peace Ward 10 ,6502 Springhill Rd.,,Pineville,LA,71360,318-640-4344,RAPIDES,James E. Deslatte,1225 Oriole Ln.,,Ball,LA,71405,318-640-9265,W,M,D,267,12/31/2014,01/01/2009,Mr. Deslatte -Constable ,Justice of the Peace Ward 11 ,P.O. Box 493,,Deville,LA,71328,318-466-3542,RAPIDES,Hayden A. Paul,110 Reed Lawrence Rd.,,Deville,LA,71328,318-446-2241,W,M,D,267,12/31/2014,01/01/2009,Mr. Paul -Mayor ,City of Alexandria ,P. O. Box 71,,Alexandria,LA,,318-449-5047,RAPIDES,Jacques M. Roy,715 Kimball Ave.,,Alexandria,LA,71301,318-442-1622,W,M,D,300,12/06/2010,12/04/2006,Mayor Roy -Mayor ,City of Pineville ,P. O. Box 3820,,Pineville,LA,,318-449-5658,RAPIDES,Clarence R. Fields,103 North Bend,,Pineville,LA,71360,318-443-8429,B,M,D,300,06/30/2010,07/01/2006,Mayor Fields -Mayor ,City of Pineville ,P. O. Box 3820,,Pineville,LA,,318-449-5658,RAPIDES,"Clarence R. Fields, ",103 N. Bend Dr.,,Pineville,LA,71360,318-487-9429,B,M,D,300 -Mayor ,Town of Ball ,P. O. Box 800,,Ball,LA,,318-640-9604,RAPIDES,Roy Hebron,152 Dryden Ln.,,Ball,LA,71405,318-640-4697,W,M,D,300,12/31/2010,01/01/2007,Mayor Hebron -Mayor ,Town of Boyce ,P. O. Box 146,,Boyce,LA,,318-793-2175,RAPIDES,Donald W. Welch,P.O. Box 726,,Boyce,LA,71409,318-793-4342,W,M,D,300,12/31/2010,04/10/2007,Mayor Welch -Mayor ,Town of Cheneyville ,P. O. Box 322,,Cheneyville,LA,,318-279-2155,RAPIDES,"Reginald ""Reggie"" Allen",P.O. Box 471,,Cheneyville,LA,71325,318-359-2847,B,M,D,300,06/30/2013,07/01/2009,Mayor Allen -Mayor ,Town of Glenmora ,P. O. Box 265,,Glenmora,LA,,318-748-4885,RAPIDES,"Joe ""Coach"" Rivers",1633 7th Ave.,,Glenmora,LA,71433,318-748-6350,W,M,D,300,12/31/2010,01/01/2007,Mr. Rivers -Mayor ,Town of Lecompte ,P. O. Box 649,,Lecompte,LA,,318-776-5488,RAPIDES,"Gregory ""Greg"" Clark",P.O. Box 986,,Lecompte,LA,71346,318-776-5709,B,M,D,300,12/31/2010,05/15/2007,Mayor Clark -Mayor ,Town of Woodworth ,P.O. Box 228,,Woodworth,LA,,318-442-1198,RAPIDES,"David C. Butler, II",767 Robinson Bridge Rd.,,Woodworth,LA,71485,318-442-0659,W,M,R,300,12/31/2010,01/01/2007,Mayor Butler -Mayor ,Village of Forest Hill ,P. O. Box 309,,Forest Hill,LA,,318-748-6300,RAPIDES,Marcia F. Young,P.O. Box 126,,Forest Hill,LA,71430,318-748-6810,W,F,R,300,12/31/2010,01/01/2007,Mr. Young -Mayor ,Village of McNary ,P. O. Box 1197,,McNary,LA,,318-748-8264,RAPIDES,"Don Parker, II",P.O. Box 194,,McNary,LA,71433,318-748-6022,W,M,D,300,12/31/2010,01/01/2007,Mr. Parker -Chief of Police ,Town of Ball ,P. O. Box 800,,Ball,LA,71405,318-640-9604,RAPIDES,Jay L. Barber,42 Hammack Ln.,,Ball,LA,71405,318-640-1692,W,M,D,305,12/31/2010,07/21/2008,Chief Barber -Chief of Police ,Town of Boyce ,P. O. Box 146,,Boyce,LA,71409,318-793-2175,RAPIDES,Elvin Lee Wren,P.O. Box 606,,Boyce,LA,71409,318-447-0773,W,M,,305,12/31/2010,04/14/2009,Mr. wren -Chief of Police ,Town of Glenmora ,P. O. Box 265,,Glenmora,LA,71433,318-748-4885,RAPIDES,Bennie L. Coker,P.O. Box 1171,,Glenmora,LA,71433,318-748-4381,W,M,D,305,12/31/2010,01/01/2007,Mr. Coker -Chief of Police ,Village of Forest Hill ,P. O. Box 309,,Forest Hill,LA,71430,318-748-6300,RAPIDES,"Garland ""Bear"" Carroll",2133 10th St.,,Forest Hill,LA,71430,318-748-6422,W,M,,305,12/31/2010,01/01/2007,Mr. Carroll -Councilman at Large ,City of Alexandria ,P. O. Box 71,,Alexandria,LA,71309,318-449-5047,RAPIDES,Roosevelt L. Johnson,5714 Samuel St.,,Alexandria,LA,71302,318-448-3177,,,D,308,12/03/2012,12/01/2008,Mr. Johnson -Councilman at Large ,City of Alexandria ,P. O. Box 71,,Alexandria,LA,71309,318-449-5047,RAPIDES,Myron K. Lawson,6417 Taylor Oaks Ln.,,Alexandria,LA,71301,318-443-8913,B,M,D,308,12/06/2010,12/04/2006,Mr. Lawson -Alderman ,"Seat A, Town of Ball ",P. O. Box 800,,Ball,LA,71405,318-640-9604,RAPIDES,"Curtis ""Buster"" Robertson",420 Shanghai Rd.,,Ball,LA,71405,318-640-2846,W,M,R,310,12/31/2010,01/01/2007,Mr. Robertson -Alderman ,"Seat B, Town of Ball ",P. O. Box 800,,Ball,LA,71405,318-640-9604,RAPIDES,Willie Bishop,P.O. Box 463,,Ball,LA,71405,318-640-3357,W,F,D,310,12/31/2010,01/01/2007,Mr. Bishop -Alderman ,"Seat C, Town of Ball ",P. O. Box 800,,Ball,LA,71405,318-640-9604,RAPIDES,Jerry Giddings,P.O. Box 604,,Ball,LA,71405,318-640-1531,W,M,D,310,12/31/2010,01/01/2007,Mr. Giddings -Alderman ,"Seat D, Town of Ball ",P. O. Box 800,,Ball,LA,71405,318-640-9604,RAPIDES,Bryan Adams,506 Huckleberry Trace,,Ball,LA,71405,318-640-4429,W,M,D,310,12/31/2010,01/01/2007,Mr. Admas -Alderman ,"Seat E, Town of Ball ",P. O. Box 800,,Ball,LA,71405,318-640-9604,RAPIDES,"""Genny"" Poteet",6920 Monroe Hwy.,,Ball,LA,71405,318-640-8967,W,F,D,310,12/31/2010,01/01/2007,Ms. Poteet -Alderman ,Town of Boyce ,P. O. Box 146,,Boyce,LA,71409,318-793-2175,RAPIDES,"""E.C."" Bobb",P.O. Box 733,,Boyce,LA,71409,318-793-2699,B,M,D,310,12/31/2010,01/01/2007,Mr. Bobb -Alderman ,Town of Boyce ,P. O. Box 146,,Boyce,LA,71409,318-793-2175,RAPIDES,"""Randy"" Bond",P.O. Box 436,,Boyce,LA,71409,318-793-8857,W,M,D,310,12/31/2010,01/01/2007,Mr. Bond -Alderman ,Town of Boyce ,P. O. Box 146,,Boyce,LA,71409,318-793-2175,RAPIDES,Vivian R. Brossett,P.O. Box 358,,Boyce,LA,71409,318-793-5576,W,F,D,310,12/31/2010,01/01/2007,Mr. Brossett -Alderman ,Town of Boyce ,P. O. Box 146,,Boyce,LA,71409,318-793-2175,RAPIDES,Cathy D. Fisher,P.O. Box 801,,Boyce,LA,71409,318-793-9924,W,F,D,310,12/31/2010,01/01/2007,Ms. Fisher -Alderman ,Town of Boyce ,P. O. Box 146,,Boyce,LA,71409,318-793-2175,RAPIDES,Alma Scott Moore,P.O. Box 412,,Boyce,LA,71409,318-793-9106,B,F,D,310,12/31/2010,01/01/2007,Mr. Moore -Alderman ,Town of Cheneyville ,P. O. Box 322,,Cheneyville,LA,71325,318-279-2155,RAPIDES,Charles Wesley Allen,P.O. Box 492,,Cheneyville,LA,71325,318-279-2618,,,D,310,06/30/2013,07/01/2009,Mr. Allen -Alderman ,Town of Cheneyville ,P. O. Box 322,,Cheneyville,LA,71325,318-279-2155,RAPIDES,"""Mickey"" Allen",P.O. Box 24,,Cheneyville,LA,71325,318-201-5516,W,M,R,310,06/30/2013,07/01/2009,Mr. Allen -Alderman ,Town of Cheneyville ,P. O. Box 322,,Cheneyville,LA,71325,318-279-2155,RAPIDES,Charles L. Collins,P.O. Box 27,,Cheneyville,LA,71325,318-279-2422,B,M,R,310,06/30/2013,07/01/2009,Mr. Collins -Alderman ,Town of Cheneyville ,P. O. Box 322,,Cheneyville,LA,71325,318-279-2155,RAPIDES,Ollie Crittle,P.O. Box 113,,Cheneyville,LA,71325,318-279-2408,,,D,310,06/30/2013,07/01/2009,Mr. Crittle -Alderman ,Town of Cheneyville ,P. O. Box 322,,Cheneyville,LA,71325,318-279-2155,RAPIDES,Derrick Johnson,502 Klock St.,,Cheneyville,LA,71325,318-229-8947,B,M,D,310,06/30/2013,07/01/2009,Mr. Johnson -Alderman ,Town of Glenmora ,P. O. Box 265,,Glenmora,LA,71433,318-748-4885,RAPIDES,Malcolm L. English,P.O. Box 1693,,Glenmora,LA,71433,318-748-8264,W,M,D,310,12/31/2010,01/01/2007,Mr. English -Alderman ,Town of Glenmora ,P. O. Box 265,,Glenmora,LA,71433,318-748-4885,RAPIDES,Willie E. Moore,P.O. Box 149,,Glenmora,LA,71433,318-748-8490,B,M,D,310,12/31/2010,01/01/2007,Mr. Moore -Alderman ,Town of Glenmora ,P. O. Box 265,,Glenmora,LA,71433,318-748-4885,RAPIDES,Clyde Myers,P.O. Box 963,,Glenmora,LA,71433,318-748-4520,W,M,,310,12/31/2010,01/01/2007,Mr. Myers -Alderman ,Town of Glenmora ,P. O. Box 265,,Glenmora,LA,71433,318-748-4885,RAPIDES,"Howard Shaw, Jr.",P.O. Box 1048,,Glenmora,LA,71433,318-748-8814,B,M,D,310,12/31/2010,08/24/2009,Mr. Shaw -Alderman ,Town of Glenmora ,P. O. Box 265,,Glenmora,LA,71433,318-748-4885,RAPIDES,Mark Snyder,P.O. Box 852,,Glenmora,LA,71433,318-748-7919,W,M,R,310,12/31/2010,01/01/2007,Mr. Snyder -Alderman ,Town of Lecompte ,P. O. Box 649,,Lecompte,LA,71346,318-776-5488,RAPIDES,Virginia L. Bailey,P.O. Box 832,,Lecompte,LA,71346,318-776-9561,,,D,310,12/31/2010,01/01/2007,Ms. Bailey -Alderman ,Town of Lecompte ,P. O. Box 649,,Lecompte,LA,71346,318-776-5488,RAPIDES,Debbie Charlene Davis,P.O. Box 787,,Lecompte,LA,71346,318-776-5473,B,F,D,310,12/31/2010,01/01/2007,Ms. Davis -Alderman ,Town of Lecompte ,P. O. Box 649,,Lecompte,LA,71346,318-776-5488,RAPIDES,Melford Jones,P.O. Box 1007,,Lecompte,LA,71346,318-776-5038,,,D,310,12/31/2010,01/01/2007,Mr. Jones -Alderman ,Town of Lecompte ,P. O. Box 649,,Lecompte,LA,71346,318-776-5488,RAPIDES,Leroy Kirk,P.O. Box 404,,Lecompte,LA,71346,318-776-5184,B,M,D,310,12/31/2010,01/01/2007,Mr. Kirk -Alderman ,Town of Lecompte ,P. O. Box 649,,Lecompte,LA,71346,318-776-5488,RAPIDES,"""Teena"" Satcher",29 Hwy. 457,,Lecompte,LA,71346,318-776-5157,W,F,D,310,12/31/2010,01/01/2007,Ms. Satcher -Alderman ,Village of Forest Hill ,P. O. Box 309,,Forest Hill,LA,71430,318-748-6300,RAPIDES,Glenda Droddy Bordelon,116 Butter Cemetery Rd.,,Forest Hill,LA,71430,318-664-6807,W,F,D,310,12/31/2010,01/01/2007,Ms. Bordelon -Alderman ,Village of Forest Hill ,P. O. Box 309,,Forest Hill,LA,71430,318-748-6300,RAPIDES,Anna Cloud,P.O. Box 215,,Forest Hill,LA,71430,318-748-6696,W,F,D,310,12/31/2010,01/01/2007,Ms. Cloud -Alderman ,Village of Forest Hill ,P. O. Box 309,,Forest Hill,LA,71430,318-748-6300,RAPIDES,"Samuel O. ""Sam"" Echols",140 Earl Linzay Rd.,,Forest Hill,LA,71430,318-748-7380,W,M,R,310,12/31/2010,01/01/2007,Mr. Echols -Alderman ,Village of McNary ,P. O. Box 1197,,McNary,LA,71433,318-748-8264,RAPIDES,Barbara Billings,P.O. Box 984,,McNary,LA,71433,318-748-4045,W,F,D,310,12/31/2010,01/01/2007,Ms. Billings -Alderman ,Village of McNary ,P. O. Box 1197,,McNary,LA,71433,318-748-8264,RAPIDES,Billy E. Billings,P.O. Box 1103,,Glenmora,LA,71433,318-748-4679,W,M,D,310,12/31/2010,01/01/2007,Mr. Billings -Alderman ,Village of McNary ,P. O. Box 1197,,McNary,LA,71433,318-748-8264,RAPIDES,Billy Brian Goree,1521 5th Ave.,,Glenmora,LA,71433,318-447-7143,W,M,R,310,12/31/2010,01/01/2007,Mr. Goree -Council Member ,"District 1, City of Pineville ",P. O. Box 3820,,Pineville,LA,71361,318-449-5658,RAPIDES,Mary Bishop Galloway,400 Main St.,,Pineville,LA,71360,318-443-9786,W,F,D,310,06/30/2010,10/14/2008,Ms. Galloway -Council Member ,"District 1, City of Pineville ",P. O. Box 3820,,Pineville,LA,71361,318-449-5658,RAPIDES,"Mary Bishop Galloway, ",400 Main St.,,Pineville,LA,71360,318-443-9786,W,F,D,310 -Council Member ,"District 2, City of Pineville ",P. O. Box 3820,,Pineville,LA,71361,318-449-5658,RAPIDES,Kevin Dorn,116 Gordon St.,,Pineville,LA,71360,318-442-7853,B,M,D,310,06/30/2010,07/01/2006,Mr. Dorn -Council Member ,"District 3, City of Pineville ",P. O. Box 3820,,Pineville,LA,71361,318-449-5658,RAPIDES,Carol Jeukens VanMol,1813 Jewell St.,,Pineville,LA,71360,318-445-3352,W,F,R,310,06/30/2010,07/01/2006,Ms. VanMol -Council Member ,"District 3, City of Pineville ",P. O. Box 3820,,Pineville,LA,71361,318-449-5658,RAPIDES,"Carol Jeukens VanMol, ",1813 Jewell St.,,Pineville,LA,71360,318-445-3352,W,F,R,310 -Council Member ,"District 4, City of Pineville ",P. O. Box 3820,,Pineville,LA,71361,318-449-5658,RAPIDES,"Thomas ""Tom"" Bouchie",216 Iris Ln.,,Pineville,LA,71360,318-640-3009,W,M,R,310,06/30/2010,07/01/2006,Mr. Bouchie -Council Member ,"District 4, City of Pineville ",P. O. Box 3820,,Pineville,LA,71361,318-449-5658,RAPIDES,"Thomas ""Tom"" Bouchie, ",216 Iris Ln.,,Pineville,LA,71360,318-640-3009,W,M,R,310 -Council Member ,"District 5, City of Pineville ",P. O. Box 3820,,Pineville,LA,71361,318-449-5658,RAPIDES,Nathan Martin,107 Valley Dr.,,Pineville,LA,71360,318-641-0987,W,M,R,310,06/30/2010,07/01/2006,Mr. Martin -Council Member ,"District 5, City of Pineville ",P. O. Box 3820,,Pineville,LA,71361,318-449-5658,RAPIDES,"Nathan Martin, ",107 Valley Dr.,,Pineville,LA,71360,318-641-0987,W,M,N,310 -Council Member ,Town of Woodworth ,P.O. Box 228,,Woodworth,LA,71485,318-442-1198,RAPIDES,Richard A. Butler,778 Robinson Bridge Rd.,,Woodworth,LA,71485,318-487-8505,W,M,D,310,12/31/2010,01/01/2007,Mr. Butler -Council Member ,Town of Woodworth ,P.O. Box 228,,Woodworth,LA,71485,318-442-1198,RAPIDES,Jimmie S. Cranford,839 Robinson Bridge Rd.,,Woodworth,LA,71485,318-443-8013,W,M,R,310,12/31/2010,01/01/2007,Mr. Cranford -Council Member ,Town of Woodworth ,P.O. Box 228,,Woodworth,LA,71485,318-442-1198,RAPIDES,Michael Doiron,9224 Hwy. 165-S,,Woodworth,LA,71485,318-443-7151,W,M,R,310,12/31/2010,01/01/2007,Mr. Doiron -Council Member ,Town of Woodworth ,P.O. Box 228,,Woodworth,LA,71485,318-442-1198,RAPIDES,Gail B. Dunn,9268 Hwy. 165 S.,,Woodworth,LA,71485,318-443-0044,W,F,D,310,12/31/2010,01/01/2007,Ms. Dunn -Council Member ,Town of Woodworth ,P.O. Box 228,,Woodworth,LA,71485,318-442-1198,RAPIDES,"Charles ""Chuck"" Reich",100 Drummond Ln.,,Woodworth,LA,71485,318-473-9677,W,M,R,310,12/31/2010,01/01/2007,Mr. Reich -Councilman ,"District 1, City of Alexandria ",P. O. Box 71,,Alexandria,LA,71309,318-449-5047,RAPIDES,"Edward Larvadain, III",P.O. Box 47,,Alexandria,LA,71309-0047 ,318-484-9907,,M,D,310,12/03/2012,12/01/2008,Mr. Larvadain -Councilman ,"District 2, City of Alexandria ",P. O. Box 71,,Alexandria,LA,71309,318-449-5047,RAPIDES,Everett C. Hobbs,3911 Lisa St.,,Alexandria,LA,71302,318-445-3966,B,M,D,310,12/06/2010,12/04/2006,Mr. Hobbs -Councilman ,"District 3, City of Alexandria ",P. O. Box 71,,Alexandria,LA,71309,318-449-5047,RAPIDES,Jonathan D. Goins,P.O. Box 24,,Alexandria,LA,71309,318-393-3388,B,M,D,310,12/03/2012,12/01/2008,Mr. Goins -Councilman ,"District 4, City of Alexandria ",P. O. Box 71,,Alexandria,LA,71309,318-449-5047,RAPIDES,Harry B. Silver,3117 Marye St.,,Alexandria,LA,71301,318-443-1624,W,M,R,310,12/06/2010,12/04/2006,Mr. Silver -Councilman ,"District 5, City of Alexandria ",P. O. Box 71,,Alexandria,LA,71309,318-449-5047,RAPIDES,"""Chuck"" Fowler",4400 Wendover Blvd.,,Alexandria,LA,71303,318-448-3157,W,M,R,310,12/03/2012,12/01/2008,Mr. Fowler -DPEC Member ,at Large ,,,,LA,,,RED RIVER,,,,,,,,,,,054 -DPEC Member ,District 1 ,,,,LA,,,RED RIVER,,,,,,,,,,,056 -DPEC Member ,District 2 ,,,,LA,,,RED RIVER,,,,,,,,,,,056 -DPEC Member ,District 3 ,,,,LA,,,RED RIVER,,,,,,,,,,,056 -DPEC Member ,District 4 ,,,,LA,,,RED RIVER,,,,,,,,,,,056 -DPEC Member ,District 5 ,,,,LA,,,RED RIVER,,,,,,,,,,,056 -DPEC Member ,District 6 ,,,,LA,,,RED RIVER,,,,,,,,,,,056 -DPEC Member ,District 7 ,,,,LA,,,RED RIVER,,,,,,,,,,,056 -RPEC Member ,at Large ,,,,LA,,,RED RIVER,,,,,,,,,,,064 -RPEC Member ,District 1 ,,,,LA,,,RED RIVER,,,,,,,,,,,066 -RPEC Member ,District 2 ,,,,LA,,,RED RIVER,,,,,,,,,,,066 -RPEC Member ,District 3 ,,,,LA,,,RED RIVER,,,,,,,,,,,066 -RPEC Member ,District 4 ,,,,LA,,,RED RIVER,,,,,,,,,,,066 -RPEC Member ,District 5 ,,,,LA,,,RED RIVER,,,,,,,,,,,066 -RPEC Member ,District 6 ,,,,LA,,,RED RIVER,,,,,,,,,,,066 -RPEC Member ,District 7 ,,,,LA,,,RED RIVER,,,,,,,,,,,066 -Sheriff ,,P. O. Box 375,,Coushatta,LA,71019,318-932-4221,RED RIVER,Johnny Ray Norman,P.O. Box 375,,Coushatta,LA,71019,318-932-6388,W,M,D,225,06/30/2012,07/01/2008,Sheriff Norman -Clerk of Court ,,P. O. Box 485,,Coushatta,LA,71019-0485 ,318-932-6741,RED RIVER,Stuart Shaw,P.O. Box 485,,Coushatta,LA,71019-0485 ,318-932-4171,W,M,D,230,06/30/2012,07/01/2008,Mr. Shaw -Assessor ,,P.O. Box 509,,Coushatta,LA,71019,318-932-4922,RED RIVER,"""Becky"" Craig",P.O. Box 25,,Coushatta,LA,71019,318-932-5626,W,F,D,235,12/31/2012,01/01/2009,Ms. Craig -Coroner ,,P.O. Box 152,,Coushatta,LA,71019,318-932-6903,RED RIVER,Wyche Coleman,Rt. 5 Box 13215,,Coushatta,LA,71019,318-932-9980,W,M,D,240,03/25/2012,03/24/2008,Mr. Coleman -Police Juror,District 1,P.O. Drawer 709,,Coushatta,LA,71019,318-932-5719,RED RIVER,William Brown,"Rt. 3, Box 297",,Coushatta,LA,71019,318-932-3675,W,M,D,245,01/08/2012,01/14/2008,Mr. Brown -Police Juror ,District 2 ,P.O. Drawer 709,,Coushatta,LA,71019,318-932-5719,RED RIVER,Reggie Green,"Rt. 2, Box 299",,Coushatta,LA,71019,318-932-6901,W,M,D,245,01/08/2012,01/14/2008,Mr. Green -Police Juror ,District 3 ,P.O. Drawer 709,,Coushatta,LA,71019,318-932-5719,RED RIVER,Billy Gay,"Rt. 1, Box 234B",,Coushatta,LA,71019,318-932-4729,W,M,D,245,01/08/2012,01/14/2008,Mr. Gay -Police Juror ,District 4 ,P.O. Drawer 709,,Coushatta,LA,71019,318-932-5719,RED RIVER,Jessie Davis,"Rt. 1, Box 355",,Shreveport,LA,71115,318-797-0827,B,M,D,245,01/08/2012,01/14/2008,Mr. Davis -Police Juror ,District 5 ,P.O. Drawer 709,,Coushatta,LA,71019,318-932-5719,RED RIVER,"John ""June Bug"" Moore","Rt. 4, Box 196",,Coushatta,LA,71019,318-932-6126,B,M,D,245,01/08/2012,01/14/2008,Mr. Moore -Police Juror ,District 6 ,P.O. Drawer 709,,Coushatta,LA,71019,318-932-5719,RED RIVER,"""Ben"" Taylor",P.O. Box 1027,,Coushatta,LA,71019,318-932-7162,B,M,D,245,01/08/2012,01/14/2008,Mr. Taylor -Police Juror ,District 7 ,P.O. Drawer 709,,Coushatta,LA,71019,318-932-5719,RED RIVER,Sammy Sledge,"Rt. 5, Box 119",,Coushatta,LA,71019,318-932-6212,W,M,D,245,01/08/2012,01/14/2008,Mr. Sledge -Member of School Board ,District 1 ,P. O. Box 1369,,Coushatta,LA,,318-932-4081,RED RIVER,Gene Longino,"Rt. 3, Box 316",,Coushatta,LA,71019,318-932-3297,W,M,D,255,12/31/2010,01/01/2007,Mr. Longino -Member of School Board ,District 2 ,P. O. Box 1369,,Coushatta,LA,71019,318-932-4081,RED RIVER,"""Ricky"" Cannon",P.O. Box 1269,,Coushatta,LA,71019,318-932-5451,W,M,D,255,12/31/2010,01/01/2007,Mr. Cannon -Member of School Board ,District 3 ,P. O. Box 1369,,Coushatta,LA,71019,318-932-4081,RED RIVER,Karen S. Womack,"Rt. 3, Box 529",,Ringgold,LA,71068,318-932-5832,W,F,R,255,12/31/2010,01/01/2007,Ms. Womack -Member of School Board ,District 4 ,P. O. Box 1369,,Coushatta,LA,71019,318-932-4081,RED RIVER,Cleve Miller,P.O. Box 1097,,Coushatta,LA,71019,318-932-5163,B,M,D,255,12/31/2010,01/01/2007,Mr. Miller -Member of School Board ,District 5 ,P. O. Box 1369,,Coushatta,LA,71019,318-932-4081,RED RIVER,Kasandria Wells White,P.O.Box 1224,,Coushatta,LA,71019,318-932-8760,B,F,D,255,12/31/2010,01/01/2007,Ms. White -Member of School Board ,District 6 ,P. O. Box 1369,,Coushatta,LA,71019,318-932-4081,RED RIVER,Valerie Cox,P.O. Box 1292,,Coushatta,LA,71019,318-932-9606,B,F,D,255,12/31/2010,01/01/2007,Ms. Cox -Member of School Board ,District 7 ,P. O. Box 1369,,Coushatta,LA,71019,318-932-4081,RED RIVER,"""J. B."" McElwee",904 Maple St.,,Coushatta,LA,71019,318-932-5440,W,M,D,255,12/31/2010,01/01/2007,Mr. McElwee -Justice of the Peace ,Justice of the Peace District A ,315 Church St.,,Coushatta,LA,71019,318-932-4539,RED RIVER,"William ""Bill"" Shelton",315 Church St.,,Coushatta,LA,71019,318-932-4539,W,M,R,265,12/31/2014,01/01/2009,Mr. Shelton -Justice of the Peace ,Justice of the Peace District B ,Rt.2 Box 1909,,Coushatta,LA,71019,318-932-4485,RED RIVER,"Randy Thomas, Jr.",Rt. 2 Box 1912,,Coushatta,LA,71019,318-932-4485,W,M,,265,12/31/2014,01/01/2009,Mr. Thomas -Justice of the Peace ,Justice of the Peace District C ,Rt.4 Box 278,,Coushatta,LA,71019,318-932-5984,RED RIVER,Robert Perkins,"Rt. 4, Box 278",,Coushatta,LA,71019,318-932-5984,B,M,D,265,12/31/2014,01/01/2009,Mr. Perkins -Constable ,Justice of the Peace District A ,1913 Spring St.,,Coushatta,LA,71019,318-932-6553,RED RIVER,Earl Webb,180 Smith Rd.,,Coushatta,LA,71019,318-932-4832,B,M,D,267,12/31/2014,01/01/2009,Mr. Webb -Constable ,Justice of the Peace District B ,"Rt. 2, Box 1909",,Coushatta,LA,71019,318-932-9998,RED RIVER,Randy Thomas,"Rt. 2, Box 1909",,Coushatta,LA,71019,318-932-9998,W,M,,267,12/31/2014,01/01/2009,Mr. Thomas -Constable ,Justice of the Peace District C ,"Rt. 4, Box 196",,Coushatta,LA,71019,318-932-5962,RED RIVER,"John ""Chuck"" Moore","Rt. 4, Box 196",,Coushatta,LA,71019,318-932-5962,B,M,D,267,12/31/2014,01/01/2009,Mr. Moore -Mayor ,Town of Coushatta ,P. O. Box 531,,Coushatta,LA,,318-932-4312,RED RIVER,Rose Byrd,100 E Riddle St. Apt. 6B,,Coushatta,LA,71019,318-932-3041,B,F,D,300,12/31/2012,01/01/2009,Mayor Byrd -Mayor ,Village of Edgefield ,P. O. Box 397,,Coushatta,LA,,318-932-0430,RED RIVER,Jimmy R. Stothart,422 Highway 371,,Coushatta,LA,71019,318-932-5268,W,M,R,300,12/31/2012,01/01/2009,Mayor Stothart -Mayor ,Village of Hall Summit ,P. O. Box 98,,Hall Summit,LA,,318-932-5355,RED RIVER,Lary Wimberly,P.O. Box 145,,Hall Summit,LA,71034,318-932-6424,W,M,D,300,12/31/2010,01/01/2007,Mr. Wimberly -Mayor ,Village of Martin ,"Rt. 2, Box 201",,Martin,LA,,318-932-4509,RED RIVER,Cody Hillman,P.O. Box 201,,Coushatta,LA,71019,318-932-9162,W,M,R,300,06/30/2012,07/01/2008,Mayor Hillman -Chief of Police ,Village of Edgefield ,P. O. Box 397,,Coushatta,LA,71019,318-932-0430,RED RIVER,James P. Murray,P.O. Box 371,,Coushatta,LA,71019,318-932-6263,W,M,R,305,12/31/2012,01/01/2009,Cheif Murray -Chief of Police ,Village of Hall Summit ,P. O. Box 98,,Hall Summit,LA,71034,318-932-5355,RED RIVER,"Charles Loftin, Jr.",P.O. Box 117,,Hall Summit,LA,71034,318-932-5034,W,M,D,305,12/31/2010,01/01/2007,Mr. Loftin -Chief of Police ,Village of Martin ,"Rt. 2, Box 201",,Martin,LA,71019,318-932-4509,RED RIVER,John B. Youngblood,"Rt. 2, Box 273 B",,Coushatta,LA,71019,318-932-4838,W,M,D,305,06/30/2012,07/01/2008,Chief Youngblood -Alderman ,Village of Edgefield ,,,,LA,,,RED RIVER,Vince Almond,107 Park Lane Dr.,,Coushatta,LA,71019,318-932-8812,W,M,R,310,12/31/2012,01/01/2009,Mr. Almond -Alderman ,Village of Edgefield ,,,,LA,,,RED RIVER,"""Trish"" Gamble",901 Maple St.,,Coushatta,LA,71019,318-932-3774,W,F,D,310,12/31/2012,01/01/2009,Ms. Gamble -Alderman ,Village of Edgefield ,,,,LA,,,RED RIVER,Clyde Stovall,P.O. Box 542,,Coushatta,LA,71019,318-932-5996,W,M,D,310,12/31/2012,01/01/2009,Mr. Stovall -Alderman ,Village of Hall Summit ,P. O. Box 98,,Hall Summit,LA,71034,318-932-5355,RED RIVER,Barbara A. Moore,P.O. Box 235,,Hall Summit,LA,71034,318-932-6790,W,F,D,310,12/31/2010,01/01/2007,Ms. Moore -Alderman ,Village of Hall Summit ,P. O. Box 98,,Hall Summit,LA,71034,318-932-5355,RED RIVER,Kathy Jordan Quick,Rt. 1 Box 2317,,Coushatta,LA,71019,318-932-8732,W,F,D,310,12/31/2010,01/01/2007,Ms. Quick -Alderman ,Village of Hall Summit ,P. O. Box 98,,Hall Summit,LA,71034,318-932-5355,RED RIVER,Antony Thomas,P.O. Box 233,,Hall Summit,LA,71034,318-932-3844,W,M,,310,12/31/2010,01/01/2007,Mr. Thomas -Alderman ,Village of Martin ,"Rt. 2, Box 201",,Martin,LA,71019,318-932-4509,RED RIVER,Dan Dupree,Rt 2 Box 261A,,,LA,71019,318-932-6476,W,M,R,310,06/30/2012,07/01/2008,Mr. Dupree -Alderman ,Village of Martin ,"Rt. 2, Box 201",,Martin,LA,71019,318-932-4509,RED RIVER,Tom Mangham,Rt 2 Box 2015,,,LA,71019,318-932-5299,W,M,R,310,06/30/2012,07/01/2008,Mr. Mangham -Alderman ,Village of Martin ,"Rt. 2, Box 201",,Martin,LA,71019,318-932-4509,RED RIVER,Myra F. Woodard,"Rt, 2 Box 244 A",,Coushatta,LA,71019,318-932-5669,W,F,R,310,06/30/2012,07/01/2008,Ms. Woodard -Councilman ,Town of Coushatta ,P. O. Box 531,,Coushatta,LA,71019,318-932-4312,RED RIVER,Virginia B. Calhoun,1714 Brittian St.,,Coushatta,LA,71019,318-932-9743,B,F,D,310,12/31/2012,01/01/2009,Ms. Calhoun -Councilman ,Town of Coushatta ,P. O. Box 531,,Coushatta,LA,71019,318-932-4312,RED RIVER,John D. Henry,P.O. Box 80,,Coushatta,LA,71019,318-932-3747,B,M,D,310,12/31/2012,01/01/2009,Mr. Henry -Councilman ,Town of Coushatta ,P. O. Box 531,,Coushatta,LA,71019,318-932-4312,RED RIVER,"Mallory ""Mack"" Parson",404 Circle Dr.,,Coushatta,LA,71019,318-932-8530,B,M,D,310,12/31/2012,01/01/2009,Mr. Parson -Councilman ,Town of Coushatta ,P. O. Box 531,,Coushatta,LA,71019,318-932-4312,RED RIVER,Edna M. Webb,P.O. Box 1245,,Coushatta,LA,71019,318-932-4445,B,F,D,310,12/31/2012,01/01/2009,Ms. Webb -Councilman ,Town of Coushatta ,P. O. Box 531,,Coushatta,LA,71019,318-932-4312,RED RIVER,Rosetta Wilson,1705 Brittian St.,,Coushatta,LA,71019,318-932-4373,B,F,D,310,12/31/2012,01/01/2009,Ms. Wilson -DPEC Member ,at Large ,,,,LA,,,RICHLAND,Tamarlon T. Carter,613 Third St.,,Delhi,LA,71232,318-557-1247,B,M,D,054,02/20/2012,02/20/2008,Mr. Carter -DPEC Member ,at Large ,,,,LA,,,RICHLAND,"George B. Tennant, Sr.",P.O. Box 959 .,,Rayville,LA,71269,318-728-5808,B,M,D,054,02/20/2012,02/20/2008,Mr. Tennant -DPEC Member ,District 1 ,,,,LA,,,RICHLAND,,,,,,,,,,,056 -DPEC Member ,District 2 ,,,,LA,,,RICHLAND,,,,,,,,,,,056 -DPEC Member ,District 3 ,,,,LA,,,RICHLAND,Valerie Allen,104 Russell St.,,Rayville,LA,71269,318-728-4562,B,F,D,056,02/20/2012,02/20/2008,Ms. Allen -DPEC Member ,District 4 ,,,,LA,,,RICHLAND,"Gerald ""Vincent"" Thomas",2039 Hwy. 583,,Rayville,LA,71269,318-728-5798,B,M,D,056,02/20/2012,02/20/2008,Mr. Thomas -DPEC Member ,District 5 ,,,,LA,,,RICHLAND,,,,,,,,,,,056 -DPEC Member ,District 6 ,,,,LA,,,RICHLAND,"Timothy ""Tim"" Tennant",514 Martin Luther King Dr.,,Rayville,LA,71269,318-728-6133,B,M,D,056,02/20/2012,02/20/2008,Mr. Tennant -DPEC Member ,District 7 ,,,,LA,,,RICHLAND,,,,,,,,,,,056 -DPEC Member ,District 8 ,,,,LA,,,RICHLAND,,,,,,,,,,,056 -DPEC Member ,District 9 ,,,,LA,,,RICHLAND,,,,,,,,,,,056 -RPEC Member ,at Large ,,,,LA,,,RICHLAND,Gaylon Tanner,1433 Hwy. 854,,Delhi,LA,71232,318-878-2505,W,M,R,064,02/20/2012,02/20/2008,Mr. Tanner -RPEC Member ,District 1 ,,,,LA,,,RICHLAND,,,,,,,,,,,066 -RPEC Member ,District 2 ,,,,LA,,,RICHLAND,,,,,,,,,,,066 -RPEC Member ,District 3 ,,,,LA,,,RICHLAND,,,,,,,,,,,066 -RPEC Member ,District 4 ,,,,LA,,,RICHLAND,,,,,,,,,,,066 -RPEC Member ,District 5 ,,,,LA,,,RICHLAND,,,,,,,,,,,066 -RPEC Member ,District 6 ,,,,LA,,,RICHLAND,,,,,,,,,,,066 -RPEC Member ,District 7 ,,,,LA,,,RICHLAND,,,,,,,,,,,066 -RPEC Member ,District 8 ,,,,LA,,,RICHLAND,,,,,,,,,,,066 -RPEC Member ,District 9 ,,,,LA,,,RICHLAND,,,,,,,,,,,066 -Sheriff ,,"708 Julia St., Ste. 113",,Rayville,LA,71269,318-728-2071,RICHLAND,Charles M. McDonald,"708 Julia St., Ste. 113",,Rayville,LA,71269,318-248-2642,W,M,D,225,06/30/2012,07/01/2008,Sheriff McDonald -Clerk of Court ,,P. O. Box 199,,Rayville,LA,71269,318-728-4171,RICHLAND,Ramona N. Haire,P. O. Box 199,,Rayville,LA,71269,318-728-5476,W,F,D,230,06/30/2012,07/01/2008,Ms. Haire -Assessor ,,708 Julia St.,,Rayville,LA,71269,318-728-4491,RICHLAND,"Emmett ""Lee"" Brown, III",412 Hwy. 135,,Rayville,LA,71269,318-728-3955,W,M,D,235,12/31/2012,01/01/2009,Mr. Brown -Coroner ,,107 Lela St.,,Mangham,LA,71259,318-728-2046,RICHLAND,W. David Thompson,1012 Louisa St.,,Rayville,LA,71269,318-728-2046,W,M,O,240,03/25/2012,03/24/2008,Mr. Thompson -Police Juror ,District 1 ,P. O. Box 668,,Rayville,LA,,318-728-2061,RICHLAND,"W. A. ""Bill"" Tatum",303 Little John Ln.,,Delhi,LA,71232,318-878-9386,W,M,D,245,01/08/2012,01/14/2008,Mr. Tatum -Police Juror ,District 2 ,P. O. Box 668,,Rayville,LA,71269,318-728-2061,RICHLAND,Jesse Washington,112 Valley St.,,Delhi,LA,71232,318-878-2178,B,M,D,245,01/08/2012,01/14/2008,Mr. Washington -Police Juror ,District 3 ,P. O. Box 668,,Rayville,LA,71269,318-728-2061,RICHLAND,Sharon Kelley Gee,34 Lewis Rd.,,Rayville,LA,71269,318-728-7777,B,F,D,245,01/08/2012,01/14/2008,Ms. Gee -Police Juror ,District 4 ,P. O. Box 668,,Rayville,LA,71269,318-728-2061,RICHLAND,"""Steve"" Lofton",1389 Hwy. 183,,Rayville,LA,71269,318-728-3732,W,M,R,245,01/08/2012,01/14/2008,Mr. Lofton -Police Juror ,District 5 ,P. O. Box 668,,Rayville,LA,71269,318-728-2061,RICHLAND,Judy Green,125 Zebedee Ln.,,Rayville,LA,71269,318-728-6966,W,F,R,245,01/08/2012,01/14/2008,Ms. Green -Police Juror ,District 6 ,P. O. Box 668,,Rayville,LA,71269,318-728-2061,RICHLAND,Althan Smith,302 Britton St.,,Rayville,LA,71269,318-728-6757,B,M,D,245,01/08/2012,01/14/2008,Mr. Smith -Police Juror ,District 7 ,P. O. Box 668,,Rayville,LA,71269,318-728-2061,RICHLAND,Kenneth M. McKay,P.O. Box 1,,Archibald,LA,71259,318-248-3609,W,M,D,245,01/08/2012,01/14/2008,Mr. McKay -Police Juror ,District 8 ,P. O. Box 668,,Rayville,LA,71269,318-728-2061,RICHLAND,"William T. ""Bubba"" Moore",96 Bayou Rd.,,Rayville,LA,71269,318-728-4859,W,M,R,245,01/08/2012,01/14/2008,Mr. Moore -Police Juror ,District 9 ,P. O. Box 668,,Rayville,LA,71269,318-728-2061,RICHLAND,"""Ronnie"" Gilley",3466 Hwy. 135,,Mangham,LA,71259,318-248-3197,W,M,D,245,01/08/2012,01/14/2008,Mr. Gilley -Member of School Board ,District 1 ,P. O. Box 599,,Rayville,LA,71269,318-728-4956,RICHLAND,"""Billy"" Calvert",214 Little John,,Delhi,LA,71232,318-878-2502,W,M,D,255,12/31/2010,01/01/2007,Mr. Calvert -Member of School Board ,District 2 ,P. O. Box 599,,Rayville,LA,71269,318-728-4956,RICHLAND,"Leonard Guine, Jr.",443 Church St.,,Delhi,LA,71232,318-878-5811,B,M,D,255,12/31/2010,01/01/2007,Mr. Guine -Member of School Board ,District 3 ,P. O. Box 599,,Rayville,LA,71269,318-728-4956,RICHLAND,Sharon B. Jones,P.O.Box 575,,Rayville,LA,71269,318-728-4532,B,F,D,255,12/31/2010,01/01/2007,Ms. Jone -Member of School Board ,District 4 ,P. O. Box 599,,Rayville,LA,71269,318-728-4956,RICHLAND,Danny Whitstine,117 Hwy. 585,,Rayville,LA,71269,318-728-2180,W,M,R,255,12/31/2010,01/01/2007,Mr. Whitstine -Member of School Board ,District 5 ,P. O. Box 599,,Rayville,LA,71269,318-728-4956,RICHLAND,"Robert ""Bob"" Adams",127 Ashley Ave.,,Rayville,LA,71269,318-728-2108,W,M,D,255,12/31/2010,01/01/2007,Mr. Adams -Member of School Board ,District 6 ,P. O. Box 599,,Rayville,LA,71269,318-728-4956,RICHLAND,Marie Lewis,312 Mansfield St.,,Rayville,LA,71269,318-728-4024,B,F,D,255,12/31/2010,01/01/2007,Ms. Lewis -Member of School Board ,District 7 ,P. O. Box 599,,Rayville,LA,71269,318-728-4956,RICHLAND,Patricia R. Jordan,128 Rushing Rd.,,Rayville,LA,71269,318-248-2778,W,F,R,255,12/31/2010,01/01/2007,Ms. Jordan -Member of School Board ,District 8 ,P. O. Box 599,,Rayville,LA,71269,318-728-4956,RICHLAND,Kevin Eppinette,103 Sullivan Loop,,Rayville,LA,71269,318-728-0469,W,M,O,255,12/31/2010,01/01/2007,Mr. Eppinette -Member of School Board ,District 9 ,P. O. Box 599,,Rayville,LA,71269,318-728-4956,RICHLAND,Todd Weed,1769 Hwy. 132,,Mangham,LA,71259,318-248-2436,W,M,R,255,12/31/2010,01/01/2007,Mr. Weed -Justice of the Peace ,Justice of the Peace Ward 1 ,811 Main St.,,Delhi,LA,71232,318-878-8217,RICHLAND,"Randol ""Mack"" McKinney",811 Main St.,,Delhi,LA,71232,318-878-8217,W,M,R,265,12/31/2014,01/01/2009,Mr. McKinney -Justice of the Peace ,Justice of the Peace Ward 2 ,P.O.Box 307,,Rayville,LA,71269,318-728-0806,RICHLAND,"""Joe"" Comeaux",3556 Hwy. 80 E.,,Rayville,LA,71269,318-728-4535,W,M,O,265,12/31/2014,01/01/2009,Mr. Comeaux -Justice of the Peace ,Justice of the Peace Ward 3 ,553 Charleston Dr.,,Oak Ridge,LA,71264,318-728-3872,RICHLAND,Inez Carroll,160 South Ridge Rd.,,Rayville,LA,71269,318-728-0527,W,F,,265,12/31/2014,01/01/2009,Ms. Carroll -Justice of the Peace ,Justice of the Peace Ward 4 ,P.O.Box 122,,Archibald,LA,71218,318-248-2300,RICHLAND,"""Jim"" Archibald",P.O. Box 122,,Archibald,LA,71218,318-237-0057,W,M,R,265,12/31/2014,01/01/2009,Mr. Archibald -Justice of the Peace ,Justice of the Peace Ward 5 ,146 Egypt St.,,Mangham,LA,71259,318-248-3669,RICHLAND,"William L. ""Bill"" Bruce",146 Egypt St.,,Mangham,LA,71259,318-248-3669,,,D,265,12/31/2014,01/01/2009,Mr. Bruce -Justice of the Peace ,Justice of the Peace Wards 6 & 7 ,1734 Hwy. 561,,Hebert,LA,71418,318-248-2780,RICHLAND,Brenda S. Daniels,1734 Hwy. 561,,Hebert,LA,71418,318-248-2780,W,F,R,265,12/31/2014,01/01/2009,Ms. Daniels -Constable ,Justice of the Peace Ward 1 ,116 McKinney St.,,Delhi,LA,71232,318-878-9418,RICHLAND,Linda McKinney,811 Main St.,,Delhi,LA,71232,318-878-8217,W,F,R,267,12/31/2014,01/01/2009,Ms. McKinney -Constable ,Justice of the Peace Ward 2 ,155 McKnight Rd.,,Rayville,LA,71269,318-728-3611,RICHLAND,Gordon Sorey,1062 Hwy. 425,,Rayville,LA,71269,318-728-4742,W,M,D,267,12/31/2014,01/01/2009,Mr. Sorey -Constable ,Justice of the Peace Ward 3 ,P.O. Box 45,,Start,LA,71279,318-728-4266,RICHLAND,Ray M. Trisler,13 Trisler Rd.,,Rayville,LA,71269,318-728-3692,W,M,R,267,12/31/2014,01/01/2009,Mr. Trisler -Constable ,Justice of the Peace Ward 4 ,P.O. Box 212,,Archibald,LA,71218,318-248-3582,RICHLAND,Terry L. Gwin,P. O. Box 94,,Archibald,LA,71218,318-248-3421,W,M,R,267,12/31/2014,01/02/2009,Mr. Gwin -Constable ,Justice of the Peace Ward 5 ,359 Hwy. 576,,Mangham,LA,71259,318-248-2205,RICHLAND,"""Jim"" Bruce",359 Hwy. 576,,Mangham,LA,71259,318-248-2205,W,M,D,267,12/31/2014,01/01/2009,Mr. Bruce -Constable ,Justice of the Peace Wards 6 & 7 ,2312 Hwy. 561,,Columbia,LA,71418,318-248-3185,RICHLAND,Donald E. Oliveaux,2312 Hwy. 561,,Columbia,LA,71418,318-248-2204,W,M,R,267,12/31/2014,01/01/2009,Mr. Oliveaux -Mayor ,Town of Delhi ,P. O. Box 277,,Delhi,LA,,318-878-3792,RICHLAND,"Lynn Lewis, ",P.O. Box 277,,Delhi,LA,71232-0277,318-878-3792,W,M,D,300,12/31/2010,01/01/2007,Mr. Lewis -Mayor ,Town of Mangham ,P. O. Box 94,,Mangham,LA,,318-248-2170,RICHLAND,Robert Neal Harwell,702 Horace St.,,Mangham,LA,71259,318-248-3291,W,M,D,300,12/31/2010,01/01/2007,Mr. Harwell -Mayor ,Town of Rayville ,P. O. Box 878,,Rayville,LA,,318-728-2011,RICHLAND,"Harry ""Kayo"" Lewis",312 Mansfield St.,,Rayville,LA,71269,318-728-4024,B,M,D,300,06/30/2010,07/01/2006,Mayor Lewis -Chief of Police ,Town of Delhi ,P. O. Box 277,,Delhi,LA,71232,318-878-3792,RICHLAND,Rufus L. Carter,P. O. Box 601,,Delhi,LA,71232,318-878-9968,B,M,D,305,12/31/2010,01/01/2007,Mr. Carter -Chief of Police ,Town of Mangham ,P. O. Box 94,,Mangham,LA,71259,318-248-2170,RICHLAND,"""Lennie"" Graham",P.O. Box 142,,Mangham,LA,71259,318-248-2548,W,M,D,305,12/31/2010,01/01/2007,Mr. Graham -Chief of Police ,Town of Rayville ,P. O. Box 878,,Rayville,LA,71269,318-728-2011,RICHLAND,"Willie Lee Robinson, Sr.",908 Madeline St.,,Rayville,LA,71269,318-728-4958,B,M,D,305,06/30/2010,07/01/2006,Chief Robinson -Alderman ,"District A, Town of Delhi ",P. O. Box 277,,Delhi,LA,71232,318-878-3792,RICHLAND,Shirley McDade,105 Rancher St.,,Delhi,LA,71232,318-878-5753,B,F,D,310,12/31/2010,01/01/2007,Mr. McDade -Alderman ,"District B, Town of Delhi ",P. O. Box 277,,Delhi,LA,71232,318-878-3792,RICHLAND,Bobby Benson,610 Third St.,,Delhi,LA,71232,318-878-9668,,,,310,12/31/2010,01/01/2007,Mr. Benson -Alderman ,"District C, Town of Delhi ",P. O. Box 277,,Delhi,LA,71232,337-685-4462,RICHLAND,J. C. Smith,119 Fifth St.,,Delhi,LA,71232,318-878-5726,B,M,D,310,12/31/2010,01/01/2007,Mr. Smith -Alderman ,"District D, Town of Delhi ",P. O. Box 277,,Delhi,LA,71232,318-878-3792,RICHLAND,Marvin D. Hamilton,901 Chicago St.,,Delhi,LA,71232,318-878-2781,B,M,D,310,12/31/2010,01/01/2007 -Alderman ,"District E, Town of Delhi ",P. O. Box 277,,Delhi,LA,71232,318-878-3792,RICHLAND,"W. B. ""Dub"" Sumner",703 Ky St.,,Delhi,LA,71232,318-878-2449,W,M,D,310,12/31/2010,01/01/2007,Mr. Sumner -Alderman ,Town of Mangham ,P. O. Box 94,,Mangham,LA,71259,318-248-2170,RICHLAND,"""Billy"" Bruce",P.O. Box 344,,Mangham,LA,71259,318-248-2723,W,M,R,310,12/31/2010,01/01/2007,Mr. Bruce -Alderman ,Town of Mangham ,P. O. Box 94,,Mangham,LA,71259,318-248-2170,RICHLAND,Perry Fleming,434 Hixson St.,,Mangham,LA,71259,318-248-2770,W,M,O,310,12/31/2010,01/01/2007,Mr. Fleming -Alderman ,Town of Mangham ,P. O. Box 94,,Mangham,LA,71259,318-248-2170,RICHLAND,Zona Morris McKay,221 McCormick St.,,Mangham,LA,71259,318-248-2363,W,F,O,310,12/31/2010,01/01/2007,Ms. McKay -Alderman ,Town of Mangham ,P. O. Box 94,,Mangham,LA,71259,318-248-2170,RICHLAND,Leslie Ann Mizell,205 Emma St.,,Mangham,LA,71259,318-248-4847,W,F,O,310,12/31/2010,02/23/2009,Ms. Mizell -Alderman ,Town of Mangham ,P. O. Box 94,,Mangham,LA,71259,318-248-2170,RICHLAND,Johnny L. Natt,479 Hixon St.,,Mangham,LA,71259,318-248-3848,B,M,,310,12/31/2010,01/01/2007,Mr. Natt -Alderman ,Town of Rayville ,P. O. Box 878,,Rayville,LA,71269,318-728-2011,RICHLAND,"James C. ""Jim"" Adams",1208 Julia St.,,Rayville,LA,71269,318-728-2238,W,M,D,310,06/30/2010,07/01/2006,Mr. Adams -Alderman ,Town of Rayville ,P. O. Box 878,,Rayville,LA,71269,318-728-2011,RICHLAND,Valerie W. Allen,104 Russell St.,,Rayville,LA,71269,318-728-4562,B,F,D,310,06/30/2010,07/01/2006,Ms. Allen -Alderman ,Town of Rayville ,P. O. Box 878,,Rayville,LA,71269,318-728-2011,RICHLAND,"Terry ""Coach"" Brown",313 Mansfield St.,,Rayville,LA,71269,318-728-2577,B,M,D,310,06/30/2010,07/01/2006,Mr. Brown -Alderman ,Town of Rayville ,P. O. Box 878,,Rayville,LA,71269,318-728-2011,RICHLAND,"Johnny ""Renael"" Jones",404 McCaa St.,,Rayville,LA,71269,318-728-4342,B,M,O,310,06/30/2010,07/01/2006,Mr. Jones -Alderman ,Town of Rayville ,P. O. Box 878,,Rayville,LA,71269,318-728-2011,RICHLAND,George B. Tennant,P.O. Box 959,,Rayville,LA,71269,318-728-3891,B,M,D,310,06/30/2010,07/01/2006,Mr. Tennant -DPEC Member ,at Large ,,,,LA,,,SABINE,,,,,,,,,,,054 -DPEC Member ,District 1 ,,,,LA,,,SABINE,,,,,,,,,,,056 -DPEC Member ,District 2 ,,,,LA,,,SABINE,,,,,,,,,,,056 -DPEC Member ,District 3 ,,,,LA,,,SABINE,,,,,,,,,,,056 -DPEC Member ,District 4 ,,,,LA,,,SABINE,,,,,,,,,,,056 -DPEC Member ,District 5 ,,,,LA,,,SABINE,,,,,,,,,,,056 -DPEC Member ,District 6 ,,,,LA,,,SABINE,,,,,,,,,,,056 -DPEC Member ,District 7 ,,,,LA,,,SABINE,,,,,,,,,,,056 -DPEC Member ,District 8 ,,,,LA,,,SABINE,,,,,,,,,,,056 -DPEC Member ,District 9 ,,,,LA,,,SABINE,,,,,,,,,,,056 -RPEC Member ,at Large ,,,,LA,,,SABINE,,,,,,,,,,,064 -RPEC Member ,District 1 ,,,,LA,,,SABINE,,,,,,,,,,,066 -RPEC Member ,District 2 ,,,,LA,,,SABINE,,,,,,,,,,,066 -RPEC Member ,District 3 ,,,,LA,,,SABINE,,,,,,,,,,,066 -RPEC Member ,District 4 ,,,,LA,,,SABINE,,,,,,,,,,,066 -RPEC Member ,District 5 ,,,,LA,,,SABINE,,,,,,,,,,,066 -RPEC Member ,District 6 ,,,,LA,,,SABINE,,,,,,,,,,,066 -RPEC Member ,District 7 ,,,,LA,,,SABINE,,,,,,,,,,,066 -RPEC Member ,District 8 ,,,,LA,,,SABINE,,,,,,,,,,,066 -RPEC Member ,District 9 ,,,,LA,,,SABINE,,,,,,,,,,,066 -Sheriff ,,P. O. Box 1440,,Many,LA,71449,318-256-9241,SABINE,Guffey Lynn Pattison,P.O. Box 1440,,Many,LA,71449,318-796-2555,W,M,D,225,06/30/2012,07/01/2008,Sheriff Pattison -Clerk of Court ,,P. O. Box 419,,Many,LA,71449,318-256-6223,SABINE,Tammy Foster,P.O. Box 419,,Many,LA,71449,318-565-4380,W,F,D,230,06/30/2012,07/01/2008,Ms. Foster -Assessor ,,"400 S. Capitol St., Rm. 106",,Many,LA,71449,318-256-3482,SABINE,Carroll D. Ellzey,4247 Plainview Rd.,,Florien,LA,71429,318-586-7670,W,M,D,235,12/31/2012,01/01/2009,Mr. Ellzey -Coroner ,,395 South Capitol Street,,Many,LA,71449,318-256-2000,SABINE,Warren L. Founds,395 S. Capitol St.,,Many,LA,71449,318-256-2000,W,M,R,240,03/25/2012,03/24/2008,Mr. Founds -Police Juror,District 1,"400 Capitol St., Rm. 101",,Many,LA,71449,318-256-5637,SABINE,Dennis Downs,391 Toro Church Rd.,,Florien,LA,71429,318-586-4507,W,M,D,245,01/08/2012,01/14/2008,Mr. Downs -Police Juror ,District 2 ,"400 Capitol St., Rm. 101",,Many,LA,71449,318-256-5637,SABINE,Kenneth Funderburk,90 Funderburk Rd.,,Florien,LA,71429,318-586-3340,W,M,D,245,01/08/2012,01/14/2008,Mr. Funderburk -Police Juror ,District 3 ,"400 Capitol St., Rm. 101",,Many,LA,71449,318-256-5637,SABINE,Rodney Hopkins,P.O. Box 1,,Many,LA,71449,318-256-5735,W,M,R,245,01/08/2012,01/14/2008,Mr. Hopkins -Police Juror ,District 4 ,"400 Capitol St., Rm. 101",,Many,LA,71449,318-256-5637,SABINE,William Ruffin,P. O. Box 534,,Many,LA,71449,318-256-3135,B,M,D,245,01/08/2012,01/14/2008,Mr. Ruffin -Police Juror ,District 5 ,"400 Capitol St., Rm. 101",,Many,LA,71449,318-256-5637,SABINE,"J. M. ""Bucky"" Slay",P.O. Box 37,,Fisher,LA,71426,318-256-5374,W,M,D,245,01/08/2012,01/14/2008,Mr. Slay -Police Juror ,District 6 ,"400 Capitol St., Rm. 101",,Many,LA,71449,318-256-5637,SABINE,Rebecca V. Procell,13 Cynthia Ln.,,Noble,LA,71462,318-645-6865,W,F,D,245,01/08/2012,08/24/2009,Ms. Procell -Police Juror ,District 7 ,"400 Capitol St., Rm. 101",,Many,LA,71449,318-256-5637,SABINE,Jerry W. McDonald,218 Gladys Ln.,,Converse,LA,71419,318-567-3182,W,M,D,245,01/08/2012,01/14/2008,Mr. McDonald -Police Juror ,District 8 ,"400 Capitol St., Rm. 101",,Many,LA,71449,318-256-5637,SABINE,Albert Ezernack,4222 Hwy. 120,,Zwolle,LA,71486,318-645-4307,W,M,D,245,01/08/2012,01/14/2008,Mr. Ezernack -Police Juror ,District 9 ,"400 Capitol St., Rm. 101",,Many,LA,71449,318-256-5637,SABINE,Nolan Patrick,P.O. Box 326,,Pleasant Hill,LA,71065,318-796-2982,W,M,R,245,01/08/2012,01/14/2008,Mr. Patrick -Member of School Board ,District 1 ,695 Peterson St.,,Many,LA,71449,318-256-9228,SABINE,Imon W. Jones,138 Wilson Ln.,,Florien,LA,71429,318-586-7853,W,M,D,255,12/31/2010,01/01/2007,Mr. Jones -Member of School Board ,District 2 ,695 Peterson St.,,Many,LA,71449,318-256-9228,SABINE,"James A. ""Buddy"" Veuleman",2340 Hwy. 476,,Many,LA,71449,318-256-5842,W,M,R,255,12/31/2010,01/01/2007,Mr. Veuleman -Member of School Board ,District 3 ,695 Peterson St.,,Many,LA,71449,318-256-9228,SABINE,"J. Randall ""Randy"" Veuleman",150 Zachary Taylor Rd.,,Many,LA,71449,318-256-6633,W,M,O,255,12/31/2010,01/01/2007,Mr. Veuleman -Member of School Board ,District 4 ,695 Peterson St.,,Many,LA,71449,318-256-9228,SABINE,Roderick Davis,210 Daniel St.,,Many,LA,71449,318-256-9023,B,M,D,255,12/31/2010,01/01/2007,Mr. Davis -Member of School Board ,District 5 ,695 Peterson St.,,Many,LA,71449,318-256-9228,SABINE,Denyse A. Williams,3697 Texas Hwy.,,Many,LA,71449,318-256-6597,W,F,R,255,12/31/2010,01/01/2007,Ms. Williams -Member of School Board ,District 6 ,695 Peterson St.,,Many,LA,71449,318-256-9228,SABINE,Harold L. Stewart,5960 Hwy. 482,,Noble,LA,71462,318-645-9329,W,M,D,255,12/31/2010,01/01/2007,Mr. Stewart -Member of School Board ,District 7 ,695 Peterson St.,,Many,LA,71449,318-256-9228,SABINE,"Donnie F. Sistrunk, Sr.",21660 Hwy. 174,,Converse,LA,71419,318-567-2524,W,M,D,255,12/31/2010,01/01/2007,Mr. Sistrunk -Member of School Board ,District 8 ,695 Peterson St.,,Many,LA,71449,318-256-9228,SABINE,"James W. ""Jim"" House",1364 Kane St.,,Zwolle,LA,71486,318-645-2033,W,M,R,255,12/31/2010,01/01/2007,Mr. House -Member of School Board ,District 9 ,695 Peterson St.,,Many,LA,71449,318-256-9228,SABINE,Jack H. Sanders,411 WPA Rd.,,Pleasant Hill,LA,71065,318-796-2828,W,M,D,255,12/31/2010,01/01/2007,Mr. Sanders -Justice of the Peace ,Justice of the Peace & Constable District 1 ,,,,LA,,,SABINE,Jean Sharp,12487 Hwy. 118,,Florien,LA,71429,318-586-3898,W,F,R,265,12/31/2014,01/01/2009,Ms. Sharp -Justice of the Peace ,Justice of the Peace & Constable District 2 ,200 Tarver Dr.,,Many,LA,71449,318-256-2182,SABINE,"""Mike"" Tarver",75 Tarver Dr.,,Many,LA,71449,318-256-2182,W,M,D,265,12/31/2014,01/01/2009,Mr. Tarver -Justice of the Peace ,Justice of the Peace & Constable District 3 ,9473 Brandon Rd.,,Many,LA,71449,318-645-9568,SABINE,Earl Brandon,9473 Brandon Rd.,,Many,LA,71449,318-645-9568,W,M,D,265,12/31/2014,01/01/2009,Mr. Brandon -Justice of the Peace ,Justice of the Peace & Constable District 4 ,3617 Ryals Rd.,,Converse,LA,71419,318-567-2210,SABINE,"Robert ""Bob"" Brumley",3617 Ryals Rd.,,Converse,LA,71419,318-567-2210,W,M,D,265,12/31/2014,01/01/2009,Mr. Brumley -Justice of the Peace ,Justice of the Peace & Constable District 5 ,55 Hwy. 175,,Pleasant Hill,LA,71065,318-796-2583,SABINE,LaJuana Williams Mosley,P.O. Box 308,,Pleasant Hill,LA,71065,318-315-1072,B,F,D,265,12/31/2014,01/01/2009,Ms. Mosley -Constable ,Justice of the Peace & Constable District 1 ,12487 Hwy. 118,,Florien,LA,71429,318-586-3898,SABINE,Richard Sharp,12487 Hwy 118,,Florien,LA,71429,318-586-3898,W,M,O,267,12/31/2014,01/01/2009,Mr. Sharp -Constable ,Justice of the Peace & Constable District 2 ,995 San Antonio Ave.,,Many,LA,71449,318-256-0275,SABINE,Jerry Johnson,111 Calvin Ln.,,Many,LA,71449,318-256-6691,W,M,D,267,12/31/2014,01/01/2009,Mr. Johnson -Constable ,Justice of the Peace & Constable District 3 ,101 Rock Hill Ln.,,Noble,LA,71462,318-645-9212,SABINE,Donald Garcie,101 Rock Hill Ln.,,Noble,LA,71462,318-645-9212,O,M,D,267,12/31/2014,01/01/2009,Mr. Garcie -Constable ,Justice of the Peace & Constable District 4 ,P.O. Box 202,,Converse,LA,71419,318-567-2254,SABINE,Harvey L. Nichols,P.O. Box 191,,Noble,LA,71462,318-567-9400,W,M,D,267,12/31/2014,01/01/2009,Mr. Nichols -Constable ,Justice of the Peace & Constable District 5 ,239 Haley Rd.,,Belmont,LA,71406,318-256-3232,SABINE,Lovell Knowles,P.O. Box 15,,Belmont,LA,71406,318-256-3232,W,M,D,267,12/31/2014,01/01/2009,Mr. Knowles -Mayor ,Town of Many ,P. O. Box 1330,,Many,LA,,318-256-3651,SABINE,"""Ken"" Freeman",1055 W. Alabama,,Many,LA,71449,318-256-5146,W,M,D,300,06/30/2013,07/01/2009,Mayor Freeman -Mayor ,Town of Zwolle ,P. O. Box 546,,Zwolle,LA,,318-645-6141,SABINE,Roger Lopez,1388 Aster St.,,Zwolle,LA,71486,318-645-6445,W,M,D,300,12/31/2010,01/01/2007,Mayor Lopez -Mayor ,Village of Converse ,P. O. Box 40,,Converse,LA,,318-567-3312,SABINE,Troy H. Terrell,P.O. Box 233,,Converse,LA,71419,318-567-3283,W,M,R,300,12/31/2012,01/01/2009,Mr. Terrell -Mayor ,Village of Fisher ,P. O. Box 7,,Fisher,LA,,318-256-2001,SABINE,Susan Slay,P.O. Box 37,,Fisher,LA,71426,318-256-5374,W,F,D,300,12/31/2012,01/01/2009,Mayor Slay -Mayor ,Village of Florien ,P. O. Box 68,,Florien,LA,,318-586-7286,SABINE,"Eddie Jones, Jr.",220 Pine Tree Ln.,,Florien,LA,71429,318-586-7972,W,M,D,300,06/30/2012,07/01/2008,Mayor Jones -Mayor ,Village of Noble ,P. O. Box 129,,Noble,LA,,318-645-6900,SABINE,Gary Mark Rivers,P.O. Box 177,,Noble,LA,71462,318-645-4189,O,M,D,300,12/31/2010,01/01/2007,Mr. Rivers -Mayor ,Village of Pleasant Hill ,P. O. Box 125,,Pleasant Hill,LA,,318-796-3680,SABINE,Betty Sue Thomas,P.O. Box 331,,Pleasant Hill,LA,71065,318-796-2081,B,F,D,300,12/31/2012,01/01/2009,Mayor Thomas -Chief of Police ,Town of Many ,P. O. Box 1330,,Many,LA,71449,318-256-3651,SABINE,Roger Freeman,1118 Andries St.,,Many,LA,71449,318-256-0439,W,M,,305,06/30/2013,07/01/2009,Chief Freeman -Chief of Police ,Town of Zwolle ,P.O. Box 546,,Zwolle,LA,71486,318-645-6141,SABINE,Marvin Frazier,P. O. Box 1146,,Zwolle,LA,71486,318-645-6723,B,M,D,305,12/31/2010,01/01/2007,Chief Frazier -Chief of Police ,Village of Converse ,P. O. Box 40,,Converse,LA,71419,318-567-3312,SABINE,John Brock,P. O. Box 37,,Converse,LA,71449,318-567-3459,W,M,D,305,12/31/2012,01/01/2009,Chief Brock -Chief of Police ,Village of Fisher ,P. O. Box 7,,Fisher,LA,71426,318-256-2001,SABINE,"Lamar Thomas, Jr.",P.O. Box 53,,Fisher,LA,71426,318-256-8882,B,M,D,305,12/31/2012,01/01/2009,Chief Thomas -Chief of Police ,Village of Florien ,P. O. Box 68,,Florien,LA,71429,318-586-7286,SABINE,Herman Love,P.O. Box 444,,Florien,LA,71429,318-586-3081,B,M,D,305,06/30/2012,07/01/2008,Chief Love -Chief of Police ,Village of Noble ,P. O. Box 129,,Noble,LA,71462-0129 ,318-645-6900,SABINE,Pat Ebarb,P.O. Box 186,,Noble,LA,71462,318-645-9449,W,M,D,305,12/31/2010,01/01/2007,Mr. Ebarb -Chief of Police ,Village of Pleasant Hill ,P. O. Box 125,,Pleasant Hill,LA,71065,318-796-3680,SABINE,Ray Williams,P.O. Box 254,,Pleasant Hill,LA,71065,318-796-3430,B,M,D,305,12/31/2012,01/01/2009,Chief Williams -Alderman at Large ,Town of Many ,P. O. Box 1330,,Many,LA,71449,318-256-3651,SABINE,Barbara Richardson Peterson,1050 Vandegaer,,Many,LA,71449,318-256-2123,W,F,D,308,06/30/2013,07/01/2009,Ms. Peterson -Alderman ,"District A, Town of Many ",P. O. Box 1330,,Many,LA,71449,318-256-3651,SABINE,James D. Kennedy,1335 Kenilworth St.,,Many,LA,71449,318-256-6579,B,M,D,310,06/30/2013,07/01/2009,Mr. Kennedy -Alderman ,"District B, Town of Many ",P. O. Box 1330,,Many,LA,71449,318-256-3651,SABINE,Jeanetta Dean,325 Caledonia St.,,Many,LA,71449,318-256-0335,B,F,D,310,06/30/2013,07/01/2009,Ms. Dean -Alderman ,"District C, Town of Many ",P. O. Box 1330,,Many,LA,71449,318-256-3651,SABINE,John Hoagland,260 Capitol St.,,Many,LA,71449,318-256-9616,W,M,D,310,06/30/2013,07/01/2009,Mr. Hoagland -Alderman ,"District D, Town of Many ",P. O. Box 1330,,Many,LA,71449,318-256-3651,SABINE,"I.D. ""Wayne"" Bostian",1015 N. Capital,,Many,LA,71449,318-256-2053,W,M,,310,06/30/2013,07/01/2009,Mr. Bostian -Alderman ,Village of Converse ,P. O. Box 40,,Converse,LA,71419,318-567-3312,SABINE,Rita Gale Anderson,713 Shaw St.,,Converse,LA,71429,318-567-2440,W,F,D,310,12/31/2012,01/01/2009,Ms. Anderson -Alderman ,Village of Converse ,P. O. Box 40,,Converse,LA,71419,318-567-3312,SABINE,Cade Brumley,P.O. Box 85,,Converse,LA,71419,318-567-9833,W,M,R,310,12/31/2012,01/01/2009,Mr. Brumley -Alderman ,Village of Converse ,P. O. Box 40,,Converse,LA,71419,318-567-3312,SABINE,"""Ken"" Norman",P.O. Box 65,,Converse,LA,71419,318-567-3755,W,M,O,310,12/31/2012,01/01/2009,Mr. Norman -Alderman ,Village of Fisher ,P. O. Box 7,,Fisher,LA,71426,318-256-2001,SABINE,Amy Johnson,P.O. Box 2,,Fisher,LA,71426,318-256-5583,W,F,R,310,12/31/2012,01/01/2009,Ms. Johnson -Alderman ,Village of Fisher ,P. O. Box 7,,Fisher,LA,71426,318-256-2001,SABINE,Johnnie Maxie,P.O. Box 34,,Fisher,LA,71426,318-590-0293,B,M,O,310,12/31/2012,01/01/2009,Mr. Maxie -Alderman ,Village of Fisher ,P. O. Box 7,,Fisher,LA,71426,318-256-2001,SABINE,Terry Pantalion,P.O. Box 172,,Fisher,LA,71426,318-256-2736,W,M,D,310,12/31/2012,01/01/2009,Mr. Pantalion -Alderman ,Village of Florien ,P. O. Box 68,,Florien,LA,71429,318-586-7286,SABINE,Georgia Jett,P.O. Box 303,,Florien,LA,71429,318-586-7185,W,F,R,310,06/30/2012,07/01/2008,Ms. Jett -Alderman ,Village of Florien ,P. O. Box 68,,Florien,LA,71429,318-586-7286,SABINE,Bradley Marr,P.O. Box 952,,Many,LA,71449,318-586-7212,W,M,,310,06/30/2012,07/01/2008,Mr. Marr -Alderman ,Village of Florien ,P. O. Box 68,,Florien,LA,71429,318-586-7286,SABINE,Suzanne Williams,215 W. Front St.,,Florien,LA,71429,318-586-4963,W,F,R,310,06/30/2012,07/01/2008,Ms. Williams -Alderman ,Village of Noble ,P. O. Box 129,,Noble,LA,71462-0129 ,318-645-6900,SABINE,Terry H. Ebarb,P.O. Box 156,,Noble,LA,71462,318-645-4600,W,M,D,310,12/31/2010,01/01/2007,Mr. Ebarb -Alderman ,Village of Noble ,P. O. Box 129,,Noble,LA,71462-0129 ,318-645-6900,SABINE,Amy E. Remedies,P.O. Box 131,,Noble,LA,71462,318-645-9594,O,F,,310,12/31/2010,01/01/2007,Mr. Remedies -Alderman ,Village of Noble ,P. O. Box 129,,Noble,LA,71462-0129 ,318-645-6900,SABINE,Janice C. Rike,P.O. Box 206,,Noble,LA,71462,318-645-9316,W,F,D,310,12/31/2010,01/01/2007,Ms. Rike -Alderman ,Village of Pleasant Hill ,P. O. Box 125,,Pleasant Hill,LA,71065,318-796-3680,SABINE,Glenn Arnold,P.O. Box 213,,Pleasant Hill,LA,71065,318-796-3758,W,M,D,310,12/31/2012,01/01/2009,Mr. Arnold -Alderman ,Village of Pleasant Hill ,P. O. Box 125,,Pleasant Hill,LA,71065,318-796-3680,SABINE,Walter Lee,8631 Stoddard St.,,Pleasant Hill,LA,71065,318-796-2202,W,M,D,310,12/31/2012,01/01/2009,Mr. Lee -Alderman ,Village of Pleasant Hill ,P. O. Box 125,,Pleasant Hill,LA,71065,318-796-3680,SABINE,Dorothy T. Spencer,P.O. Box 300,,Pleasant Hill,LA,71065,318-796-3618,B,F,D,310,12/31/2012,01/01/2009,Ms. Spencer -Councilman ,Town of Zwolle ,P. O. Box 546,,Zwolle,LA,71486,318-645-6141,SABINE,Carolyn Cutright,P. O. Box 430,,Zwolle,LA,71486,318-645-7674,B,F,D,310,12/31/2010,01/01/2007,Ms. Cutright -Councilman ,Town of Zwolle ,P. O. Box 546,,Zwolle,LA,71486,318-645-6141,SABINE,Martha Rivers Henderson,18585 Hwy. 191,,Zwolle,LA,71486,318-645-9573,W,F,D,310,12/31/2010,01/01/2007,Ms. Henderson -Councilman ,Town of Zwolle ,P. O. Box 546,,Zwolle,LA,71486,318-645-6141,SABINE,"Donald H. ""Hootie"" Remedies",P. O. Box 1239,,Zwolle,LA,71486,318-645-6093,W,M,D,310,12/31/2010,01/01/2007,Mr. Remedies -Councilman ,Town of Zwolle ,P. O. Box 546,,Zwolle,LA,71486,318-645-6141,SABINE,"""Rich"" Remedies",P.O. Box 876,,Zwolle,LA,71486,318-645-2742,O,M,D,310,12/31/2010,01/01/2007,Mr. Remedies -Councilman ,Town of Zwolle ,P. O. Box 546,,Zwolle,LA,71486,318-645-6141,SABINE,Allen Rivers,2830 Hwy. 120,,Zwolle,LA,71486,318-645-4300,W,M,D,310,12/31/2010,01/01/2007,Mr. Rivers -DPEC Member ,at Large ,,,,LA,,,ST. BERNARD,"Salvador Edward Gutierrez, Jr.",2137 Jackson Blvd.,,Chalmette,LA,70043,504-277-7755,W,M,D,054,02/20/2012,02/20/2008,Mr. Gutierrez -DPEC Member ,at Large ,,,,LA,,,ST. BERNARD,Petrina Ruiz Imbraguglio,3528 Corinne Ave.,,Chalmette,LA,70043,504-279-0765,W,F,D,054,02/20/2012,02/20/2008,Ms. Imbraguglio -DPEC Member ,at Large ,,,,LA,,,ST. BERNARD,Jo Ann Celino Lane,P.O. Box 168,,Chalmette,LA,70044,504-508-7668,W,F,D,054,02/20/2012,02/20/2008,Ms. Lane -DPEC Member ,at Large ,,,,LA,,,ST. BERNARD,Lena Torres Nunez,209 E. Urquhart St.,,Chalmette,LA,70043,504-491-5266,W,F,D,054,02/20/2012,02/20/2008,Ms. Nunez -DPEC Member ,at Large ,,,,LA,,,ST. BERNARD,James John Pohlmann,2232 Landry Ct.,,Meraux,LA,70075,504-583-3373,W,M,D,054,02/20/2012,02/20/2008,Mr. Pohlmann -DPEC Member at Large ,Eastern Division ,,,,LA,,,ST. BERNARD,Deborah Abram Geiser,3901 Ventura Dr.,,Chalmette,LA,70043,504-278-7608,W,F,D,054,02/20/2012,02/20/2008 -DPEC Member at Large ,Western Division ,,,,LA,,,ST. BERNARD,Mary Ann Hand,62 Carolyn Ct.,,Arabi,LA,70032,504-277-7755,W,F,D,054,02/20/2012,02/20/2008 -DPEC Member ,District A ,,,,LA,,,ST. BERNARD,Bryan Maloye Polk,2027 Sauvage Ave.,,Marrero,LA,70072-4734,504-347-9904,W,M,D,056,02/20/2012,02/20/2008,Mr. Polk -DPEC Member ,District B ,,,,LA,,,ST. BERNARD,Michael Aaron Gorbaty,2506 Pakenham Dr.,,Chalmette,LA,70043,504-442-2908,W,M,D,056,02/20/2012,02/20/2008,Mr. Gorbaty -DPEC Member ,District C ,,,,LA,,,ST. BERNARD,"Newell ""Suzy"" Andry",210 Lorelei Cir.,,Slidell,LA,70458,504-231-2237,W,F,D,056,02/20/2012,02/20/2008,Ms. Andry -DPEC Member ,District D ,,,,LA,,,ST. BERNARD,"Errol Louis Schultz, Jr.",2800 Meadow Dr.,,Violet,LA,70092,504-650-7787,W,M,D,056,02/20/2012,02/20/2008,Mr. Schultz -DPEC Member ,District E ,,,,LA,,,ST. BERNARD,"Marie Louise ""Weeshee"" Melerine",605 Delacroix Hwy.,,St. Bernard,LA,70085,504-457-1461,W,F,D,056,02/20/2012,02/20/2008,Ms. Melerine -RPEC Member ,at Large ,,,,LA,,,ST. BERNARD,Barry C. Bernadas,P.O. Box 28,,Chalmette,LA,70044,504-309-9464,W,M,R,064,02/20/2012,03/12/2008,Mr. Bernadas -RPEC Member ,at Large ,,,,LA,,,ST. BERNARD,"Anthony ""Tony"" LaNasa, III",205 Llama Dr.,,Arabi,LA,70032,504-452-0358,W,M,R,064,02/20/2012,02/20/2008,Mr. LaNasa -RPEC Member ,at Large ,,,,LA,,,ST. BERNARD,"""Tony"" Micheu",4001 Jean Lafitte Pky.,,Chalmette,LA,70043,504-309-6686,W,M,R,064,02/20/2012,02/20/2008,Mr. Micheu -RPEC Member ,at Large ,,,,LA,,,ST. BERNARD,"Joseph A. ""Joe"" Oster, Jr.",308 W. Urquhart St.,,Chalmette,LA,70043,504-228-2140,W,M,R,064,02/20/2012,02/20/2008,Mr. Oster -RPEC Member ,at Large ,,,,LA,,,ST. BERNARD,David Peralta,4408 Newport Dr.,,Meraux,LA,70075,504-220-7334,W,M,R,064,02/20/2012,02/20/2008,Mr.Peralta -RPEC Member at Large ,Western Division ,,,,LA,,,ST. BERNARD,Michael Bayham,P. O. Box 1866,,Chalmette,LA,,504-258-4467,W,M,R,064,02/20/2012,02/20/2008,Mr. Bayham -RPEC Member ,District A ,,,,LA,,,ST. BERNARD,"Ray Lauga, Jr.",725 LeBeau St.,,Arabi,LA,70032,504-271-8731,W,M,R,066,02/20/2012,02/20/2008,Mr. Lauga -RPEC Member ,District B ,,,,LA,,,ST. BERNARD,Gwen Baldo Burkhardt,3309 Park Blvd.,,Chalmette,LA,70043,504-271-7960,W,F,R,066,02/20/2012,02/20/2008,Ms. Burkhardt -RPEC Member ,District C ,,,,LA,,,ST. BERNARD,,,,,,,,,,,066 -RPEC Member ,District D ,,,,LA,,,ST. BERNARD,,,,,,,,,,,066 -RPEC Member ,District E ,,,,LA,,,ST. BERNARD,,,,,,,,,,,066 -Sheriff ,,P. O. Box 168,,Chalmette,LA,70044,504-271-2504,ST. BERNARD,Jack A. Stephens,"8301 W. Judge Perez Dr., Ste. 210",,Chalmette,LA,70043,504-676-1020,W,M,D,225,06/30/2012,07/01/2008,Sheriff Stevens -Clerk of Court ,,P. O. Box 1746,,Chalmette,LA,70044-1746,504-271-3434,ST. BERNARD,Lena R. Torres,P.O. Box 1746,,Chalmette,LA,70044-1746,504-279-6407,W,F,D,230,06/30/2012,07/01/2008,Ms. Torres -Assessor ,,"Chalmette Courthouse, Rm. 105",,Chalmette,LA,70043,504-279-6379,ST. BERNARD,Marlene M. Vinsanau,116 West St. Avide St.,,Chalmette,LA,70043,504-279-7922,W,F,D,235,12/31/2012,01/01/2009,Ms. Vinsanau -Coroner ,,"9000 Patricia St., Ste. 100",,Chalmette,LA,70043,504-277-8941,ST. BERNARD,Bryan Johnson Bertucci,3732 Corinne Ave.,,Chalmette,LA,70043,504-277-5156,W,M,D,240,03/25/2012,03/24/2008,Mr. Bertucci -Parish President ,,8201 W. Judge Perez Dr.,,Chalmette,LA,70043,504-278-4228,ST. BERNARD,"Craig P. Taffaro, Jr.",3225 Coulon Dr.,,Meraux,LA,70075,504-276-4656,W,M,R,243,01/09/2012,01/14/2008,Mr. Taffaro -Councilman at Large ,Eastern Division ,8201 W. Judge Perez Dr.,,Chalmette,LA,70043,504-278-4228,ST. BERNARD,Wayne J. Landry,2940 Bayou Rd.,,St. Bernard,LA,70085,504-272-0234,W,M,D,244,01/09/2012,10/14/2008,Mr. Landry -Councilman at Large ,Western Division ,8201 W. Judge Perez Dr.,,Chalmette,LA,70043,504-278-4228,ST. BERNARD,"Frank P. Auderer, Jr.",2120 Gallant Dr.,,Chalmette,LA,70043,504-324-8885,W,M,D,244,01/09/2012,01/14/2008,Mr. Auderer -Councilman ,District A ,8201 W. Judge Perez Dr.,,Chalmette,LA,,504-278-4228,ST. BERNARD,"Ray Lauga, Jr.",725 LeBeau St.,,Arabi,LA,70032,504-278-8977,W,M,R,245,01/09/2012,01/14/2008,Mr. Lauga -Councilman ,District B ,8201 W. Judge Perez Dr.,,Chalmette,LA,70043,504-278-4228,ST. BERNARD,George Cavignac,2825 Lloyds Ave.,,Chalmette,LA,70043,504-913-3279,W,M,R,245,01/09/2012,01/14/2008,Mr. Cavignac -Councilman ,District C ,8201 W. Judge Perez Dr.,,Chalmette,LA,70043,504-278-4228,ST. BERNARD,"Kenneth W. ""Kenny"" Henderson",3804 Palmisano Blvd.,,Chalmette,LA,70043,504-872-0322,W,M,R,245,01/09/2012,01/14/2008,Mr. Henderson -Councilman ,District D ,8201 W. Judge Perez Dr.,,Chalmette,LA,70043,504-278-4228,ST. BERNARD,"""Mike"" Ginart",2104 Olivia St.,,Meraux,LA,70075,504-373-6537,W,M,,245,01/09/2012,01/14/2008,Mr. Ginart -Councilman ,District E ,8201 W. Judge Perez Dr.,,Chalmette,LA,70043,504-278-4228,ST. BERNARD,"""Fred"" Everhardt, Jr.",2400 Gina Dr.,,St. Bernard,LA,70085,504-415-6809,W,M,D,245,01/09/2012,01/14/2008,Mr. Everhardt -Member of School Board ,District 1 ,200 East St. Bernard Hwy.,,Chalmette,LA,70043,504-301-2013,ST. BERNARD,"Herman J. Bonnette, Sr.",9361 Country Lake Dr.,,Baton Rouge,LA,70817,225-778-5907,W,M,D,255,12/31/2010,01/01/2007,Mr. Bonnette -Member of School Board ,District 2 ,200 East St. Bernard Hwy.,,Chalmette,LA,70043,504-301-2013,ST. BERNARD,William H. Egan,111 Berry Wood Ct.,,Slidell,LA,70461,504-342-2445,W,M,D,255,12/31/2010,01/01/2007,Mr. Egan -Member of School Board ,District 3 ,200 East St. Bernard Hwy.,,Chalmette,LA,70043,504-301-2013,ST. BERNARD,Lynette R. DiFatta,825 Terry Dr.,,Arabi,LA,70032,504-583-2132,W,F,R,255,12/31/2010,01/01/2007,Ms. DiFatta -Member of School Board ,District 4 ,200 East St. Bernard Hwy.,,Chalmette,LA,70043,504-301-2013,ST. BERNARD,Sharon Hanzo,461 Secluded Grove Loop,,Madisonville,LA,70447,985-966-8831,W,F,D,255,12/31/2010,01/01/2007,Ms. Hanzo -Member of School Board ,District 5 ,200 East St. Bernard Hwy.,,Chalmette,LA,70043,504-301-2013,ST. BERNARD,"Joseph V. ""Joe"" Long, Sr.",P.O. Box 765,,Chalmette,LA,70044,504-251-0495,W,M,R,255,12/31/2010,01/01/2007,Mr. Long -Member of School Board ,District 6 ,200 East St. Bernard Hwy.,,Chalmette,LA,70043,504-301-2013,ST. BERNARD,Hugh C. Craft,P.O. Box 530,,Chalmette,LA,70044,504-451-4248,W,M,D,255,12/31/2010,01/01/2007,Mr. Craft -Member of School Board ,District 7 ,200 East St. Bernard Hwy.,,Chalmette,LA,70043,504-301-2013,ST. BERNARD,Diana B. Dysart,3512 Corinne Ave.,,Chalmette,LA,70043,504-271-2450,W,F,O,255,12/31/2010,01/01/2007,Ms. Dysart -Member of School Board ,District 8 ,200 East St. Bernard Hwy.,,Chalmette,LA,70043,504-301-2013,ST. BERNARD,"""Cliff"" Englande",2813 Mayflower St.,,Meraux,LA,70075,504-439-5523,W,M,D,255,12/31/2010,01/01/2007,Mr. Englade -Member of School Board ,District 9 ,200 East St. Bernard Hwy.,,Chalmette,LA,70043,504-301-2013,ST. BERNARD,"Henderson Lewis, Jr.",P.O. Box 883,,Violet,LA,70092,504-931-0451,B,M,D,255,12/31/2010,01/01/2007,Mr. Lewis -Member of School Board ,District 10 ,200 East St. Bernard Hwy.,,Chalmette,LA,70043,504-301-2013,ST. BERNARD,Perry Nicosia,1019 W. Judge Perez Dr.,,Chalmette,LA,70043,504-279-1000,W,M,D,255,12/31/2010,01/01/2007,Mr. Nicosia -Member of School Board ,District 11 ,200 East St. Bernard Hwy.,,Chalmette,LA,70043,504-301-2013,ST. BERNARD,Donald D. Campbell,2121 Sylvia Blvd.,,St. Bernard,LA,70085,504-615-8867,W,M,R,255,12/31/2010,01/01/2007,Mr. Campbell -Justice of the Peace ,Justice of the Peace Ward A ,,,,LA,,,ST. BERNARD,Kevin J. Hoffman,601 Lebeau St.,,Arabi,LA,70032,504-202-1934,W,M,R,265,12/31/2014,01/01/2009 -Justice of the Peace ,Justice of the Peace Ward B ,901 Badger Dr.,,Arabi,LA,70032,504-277-6769,ST. BERNARD,George V. Wollfarth,901 Badger Dr.,,Arabi,LA,70032,504-982-1670,W,M,D,265,12/31/2014,01/01/2009,Mr. Wollfarth -Justice of the Peace ,Justice of the Peace Ward C ,91 W.Claiborne Sq.,,Chalmette,LA,70043,504-279-5681,ST. BERNARD,"""Tony"" Micheu",4001 Jean Lafitte Pkwy.,,Chalmette,LA,70043,504-913-5055,W,M,R,265,12/31/2014,01/01/2009,Mr. Micheu -Justice of the Peace ,Justice of the Peace Ward D ,2110 Packenham Dr.,,Chalmette,LA,70043,504-279-3303,ST. BERNARD,Debra B. Bouterie,2110 Packenham Dr.,,Chalmette,LA,70043,504-279-3303,W,F,R,265,12/31/2014,01/01/2009,Ms. Bouterie -Justice of the Peace ,Justice of the Peace Ward E ,3020 Paris Rd.,,Chalmette,LA,70043,504-279-3789,ST. BERNARD,Luann Landry,3020 Paris Rd.,,Chalmette,LA,70043,504-277-4256,W,F,R,265,12/31/2014,01/01/2009,Ms. Landry -Justice of the Peace ,Justice of the Peace Ward F ,2317 Gallo Dr.,,Chamette,LA,70043,504-271-5586,ST. BERNARD,Michael A. McNab,2003 Pelitere Dr.,,Chalmette,LA,70043,504-277-4955,W,M,D,265,12/31/2014,01/01/2009,Mr. McNab -Justice of the Peace ,Justice of the Peace Ward G ,3405 Karen Dr.,,Chamette,LA,70043,504-279-6631,ST. BERNARD,Howard Luna,3200 Karen Dr.,,Chalmette,LA,70043,504-271-1632,,,D,265,12/31/2014,01/01/2009,Mr. Luna -Justice of the Peace ,Justice of the Peace Ward H ,2704 Jacob Dr.,,Chalmette,LA,70043,504-276-0205,ST. BERNARD,Charles J. Licciardi,1929 Licciardi Dr.,,Chalmette,LA,70043,504-251-1903,W,M,,265,12/31/2014,01/01/2009,Mr. Licciardi -Justice of the Peace ,Justice of the Peace Ward I ,3001 Maureen Ln.,,Meraux,LA,70075,504-277-2261,ST. BERNARD,Glenn G. Landry,3001 Maureen Ln.,,Meraux,LA,70075,504-277-2261,W,M,D,265,12/31/2014,01/01/2009,Mr. Landry -Justice of the Peace ,Justice of the Peace Ward J ,2116 Repose St.,,Violet,LA,70092,504-682-3705,ST. BERNARD,Barbara Manuel,P.O. Box 1784,,Violet,LA,70092,504-858-1553,B,F,D,265,12/31/2014,01/01/2009,Ms. Manuel -Justice of the Peace ,Justice of the Peace Ward K ,2100 Nicosia Pl.,,St. Bernard,LA,70085,504-682-3010,ST. BERNARD,Bruce Jackson,2012 Kingfisher Dr.,,St. Bernard,LA,70085,504-682-8203,W,M,D,265,12/31/2014,01/01/2009,Mr. Jackson -Constable ,Justice of the Peace Ward A ,2217 Mehle Ave.,,Arabi,LA,70032,504-279-9763,ST. BERNARD,"""Mitch"" Perkins",6 Brittany Pl.,,Arabi,LA,70032,504-250-3683,W,M,D,267,12/31/2014,01/01/2009,Mr. Perkins -Constable ,Justice of the Peace Ward B ,1400 Perrin Dr.,,Arabi,LA,70032,504-279-3041,ST. BERNARD,"Anthony ""Tony"" La Nasa, III",205 Llama Dr.,,Arabi,LA,70032,504-452-0358,W,M,R,267,12/31/2014,01/01/2009,Mr. La Nasa -Constable ,Justice of the Peace Ward C ,8440 Creole Dr.,,Chalmette,LA,70043,504-279-9781,ST. BERNARD,"Henry H. Vandenborre, Jr.",P. O. Box 321,,Chalmette,LA,70044,504-277-4417,W,M,D,267,12/31/2014,01/01/2009,Mr. Vandenborre -Constable ,Justice of the Peace Ward D ,3318 Park Blvd.,,Chalmette,LA,70043,504-279-2027,ST. BERNARD,"William F. ""Billy"" Cure",3318 Park Blvd.,,Chalmette,LA,70043,504-583-9840,W,M,D,267,12/31/2014,01/01/2009 -Constable ,Justice of the Peace Ward E ,3009 Buffon St.,,Chalmette,LA,70043,504-271-3159,ST. BERNARD,"Henry J. Maitre, III",211 E. St. Jean Baptiste St.,,Chalmette,LA,70043,504-583-7730,W,M,R,267,12/31/2014,01/01/2009,Mr. Maitre -Constable ,Justice of the Peace Ward F ,2201 Riverland Dr.,,Chalmette,LA,70043,504-279-2516,ST. BERNARD,Hillary Tinney Miller,2201 Riverland Dr.,,Chalmette,LA,70043,504-279-2516,W,F,,267,12/31/2014,01/22/2009,Ms. Miller -Constable ,Justice of the Peace Ward G ,3916 Mumphrey Rd.,,Chalmette,LA,70043,504-279-4853,ST. BERNARD,Brian G. Reaney,3816 Palmisano Blvd.,,Chalmette,LA,70043,504-277-0524,W,M,R,267,12/31/2014,01/01/2009,Mr. Reaney -Constable ,Justice of the Peace Ward H ,2125 Despaux Dr.,,Chalmette,LA,70043,504-277-6078,ST. BERNARD,Craig Miller,2304 Lena Dr.,,Chalmette,LA,70043,504-430-7901,W,M,D,267,12/31/2014,01/01/2009,Mr. Miller -Constable ,Justice of the Peace Ward I ,2316 Aramis Dr.,,Meraux,LA,70075,504-301-1107,ST. BERNARD,John Nicholas Green,2716 Saint Marie St.,,Meraux,LA,70075,504-277-8754,W,M,R,267,12/31/2014,01/01/2009,Mr. Green -Constable ,Justice of the Peace Ward J ,P.O. Box 104,,Violet,LA,70092,504-682-2805,ST. BERNARD,"Benjamin P. ""Benny"" Ruiz",P.O. Box 104,,Violet,LA,70092,504-232-8749,W,M,D,267,12/31/2014,01/01/2009,Mr. Ruiz -Constable ,Justice of the Peace Ward K ,3005 Hopedale Hwy.,,St. Bernard,LA,70085,504-676-3948,ST. BERNARD,"Anthony ""Tony"" Guerra",1828 Russell Pl.,,St. Bernard,LA,70085,504-682-9722,W,M,D,267,12/31/2014,01/01/2009,Mr. Guerra -DPEC Member ,at Large ,,,,LA,,,ST. CHARLES,Adam Eitmann,240 Oak Ln.,,Luling,LA,70070,985-212-9982,W,M,D,054,02/20/2012,02/20/2008,Mr. Eitmann -DPEC Member at Large ,Division A ,,,,LA,,,ST. CHARLES,"Paul ""Joey"" Murray, III",13880 River Rd.,,Destrehan,LA,70047,985-764-7275,W,M,D,054,02/20/2012,02/20/2008,Mr. Murray -DPEC Member at Large ,Division B ,,,,LA,,,ST. CHARLES,Phillip Eitmann,240 Oak Ln.,,Luling,LA,70070,985-233-9649,W,M,D,054,02/20/2012,02/20/2008 -DPEC Member ,District 1 ,P.O. Box 424,,Hahnville,LA,70057,985-783-6632,ST. CHARLES,,,,,,,,,,,056 -DPEC Member ,District 2 ,,,,LA,,,ST. CHARLES,,,,,,,,,,,056 -DPEC Member ,District 3 ,,,,LA,,,ST. CHARLES,Chad Murray,P.O. Box 278,,Destrehan,LA,70047,985-764-2601,W,M,D,056,02/20/2012,02/20/2008,Mr. Murray -DPEC Member ,District 4 ,,,,LA,,,ST. CHARLES,,,,,,,,,,,056 -DPEC Member ,District 5 ,,,,LA,,,ST. CHARLES,,,,,,,,,,,056 -DPEC Member ,District 6 ,,,,LA,,,ST. CHARLES,Michael J. Tabb,124 St. Charles St.,,Norco,LA,70079,985-764-3158,W,M,D,056,02/20/2012,02/20/2008,Mr. Tabb -DPEC Member ,District 7 ,,,,LA,,,ST. CHARLES,,,,,,,,,,,056 -RPEC Member ,at Large ,,,,LA,,,ST. CHARLES,George J. Fischer,106 Beaupre Dr.,,Luling,LA,70070,985-785-2819,W,M,R,064,02/20/2012,02/20/2008,Mr. Fischer -RPEC Member ,at Large ,,,,LA,,,ST. CHARLES,Martha Turner Laque,239 Beaupre Dr.,,Luling,LA,70070,985-331-8598,W,F,R,064,02/20/2012,02/20/2008 -RPEC Member ,at Large ,,,,LA,,,ST. CHARLES,"Donald Lichenstein, III",P. O. Box 88,,Paradis,LA,70080,504-915-2111,W,M,R,064,02/20/2012,02/20/2008,Mr. Lichenstein -RPEC Member ,at Large ,,,,LA,,,ST. CHARLES,Lance Marino,660 Pine St.,,Norco,LA,70079,985-725-1594,W,M,R,064,02/20/2012,02/20/2008 -RPEC Member ,at Large ,,,,LA,,,ST. CHARLES,Philip Strother,545 Hwy. 306,,Paradis,LA,70080,985-758-7163,W,M,R,064,02/20/2012,02/20/2008,Mr. Strother -RPEC Member at Large ,Division A ,,,,LA,,,ST. CHARLES,Marilyn M. Richoux,4 Stanton Hall Dr.,,Destrehan,LA,70047,985-764-2698,W,F,R,064,02/20/2012,02/20/2008 -RPEC Member at Large ,Division B ,,,,LA,,,ST. CHARLES,Garrett Monti,105 First St.,,Luling,LA,70070,504-908-5432,W,M,R,064,02/20/2012,02/20/2008 -RPEC Member ,District 1 ,,,,LA,,,ST. CHARLES,Cory Faucheux,3726 Tara Dr.,,Destrehan,LA,70047,504-251-5726,W,M,R,066,02/20/2012,02/20/2008,Mr. Faucheux -RPEC Member ,District 2 ,,,,LA,,,ST. CHARLES,Louise Broach Fischer,106 Beaupre Dr.,,Luling,LA,70070,985-785-2819,W,F,R,066,02/20/2012,02/20/2008,Mr. Fischer -RPEC Member ,District 3 ,,,,LA,,,ST. CHARLES,Paul Barletta,17 Hermitage Dr.,,Destrehan,LA,70047,985-764-8267,W,M,R,066,02/20/2012,02/20/2008,Mr. Barletta -RPEC Member ,District 4 ,,,,LA,,,ST. CHARLES,"Richard Dufrene, Jr.",146 Pine St.,,Des Allemands,LA,70030,,W,M,R,066,02/20/2012,02/20/2008 -RPEC Member ,District 5 ,,,,LA,,,ST. CHARLES,,,,,,,,,,,066 -RPEC Member ,District 6 ,,,,LA,,,ST. CHARLES,Marcus M. Lambert,200 Edgewood Ln.,,Montz,LA,70068,985-652-2243,W,M,R,066,02/20/2012,02/20/2008,Mr. Lambert -RPEC Member ,District 7 ,,,,LA,,,ST. CHARLES,John D. Brady,P. O. Box 1513,,Luling,LA,70070,985-785-9940,W,M,R,066,02/20/2012,02/20/2008,Mr. Brady -Sheriff ,,P. O. Box 426,,Hahnville,LA,70057,985-783-6237,ST. CHARLES,"Gregory C. ""Greg"" Champagne",P.O. Box 426,,Hahnville,LA,70057,985-785-0688,W,M,R,225,06/30/2012,07/01/2008,Sheriff Champagne -Clerk of Court ,,P. O. Box 424,,Hahnville,LA,70057,985-783-6632,ST. CHARLES,"Charles ""Charlie"" Oubre, Jr.",P. O. Box 424,,Hahnville,LA,70057,985-783-2712,W,M,D,230,06/30/2012,07/01/2008,Mr. Oubre -Assessor ,,P. O. Box 303,,Hahnville,LA,70057,504-783-6281,ST. CHARLES,"Clyde A. ""Rock"" Gisclair",12625 River Rd.,,Luling,LA,70070,985-785-2230,W,M,R,235,12/31/2012,01/01/2009,Mr. Gisclair -Coroner ,,1057 Paul Millard Rd.,,Luling,LA,70070,985-785-3693,ST. CHARLES,Brian Brogle,50 Villere Pl.,,Destrehan,LA,70047,504-914-6008,W,M,R,240,03/25/2012,03/24/2008,Mr. Brogle -Parish President ,,P.O. Box 302,,Hahnville,LA,70057,985-783-5000,ST. CHARLES,"""V.J."" St. Pierre, Jr.",P.O. Box 33,,Destrehan,LA,70047,985-764-9383,W,M,D,243,01/09/2012,01/14/2008,Mr. St. Pierre -Councilman at Large ,Division A ,P.O. Box 302,,Hahnville,LA,70057,985-783-5000,ST. CHARLES,Carolyn K. Schexnaydre,269 Schexnaydre Ln.,,Destrehan,LA,70047,985-764-0064,W,F,D,244,01/09/2012,01/14/2008,Ms. Schexnaydre -Councilman at Large ,Division B ,P.O. Box 302,,Hahnville,LA,70057,985-783-5000,ST. CHARLES,Terry Authement,102 Angel Dr.,,Boutte,LA,70039,985-758-2509,W,M,D,244,01/09/2012,01/14/2008,Mr. Authement -Councilman ,District 1 ,P.O. Box 302,,Hahnville,LA,,985-783-5000,ST. CHARLES,"Billy Raymond, Sr.",520 Courthouse Ln.,,Hahnville,LA,70057,985-783-2612,B,M,D,245,01/09/2012,01/14/2008,Mr. Raymond -Councilman ,District 2 ,P.O. Box 302,,Hahnville,LA,70057,985-783-5000,ST. CHARLES,Shelley Tastet,11 Cathy Dr.,,Luling,LA,70070,985-785-9459,W,M,D,245,01/09/2012,01/14/2008,Mr. Tastet -Councilman ,District 3 ,P.O. Box 302,,Hahnville,LA,70057,985-783-5000,ST. CHARLES,Wendy Edler Benedetto,13 Ashland Dr.,,Destrehan,LA,70047,504-382-7492,W,F,R,245,01/09/2012,01/14/2008,"Ms, Benedetto " -Councilman ,District 4 ,P.O. Box 302,,Hahnville,LA,70057,985-783-5000,ST. CHARLES,Paul J. Hogan,P.O. Box 250,,Des Allemands,LA,70030,504-615-4862,W,M,R,245,01/09/2012,01/14/2008,Mr. Hogan -Councilman ,District 5 ,P.O. Box 302,,Hahnville,LA,70057,985-783-5000,ST. CHARLES,"""Larry"" Cochran",114 Oaklawn Rdge.,,St. Rose,LA,70087,504-305-6185,W,M,D,245,01/09/2012,01/14/2008,Mr. Cochran -Councilman ,District 6 ,P.O. Box 302,,Hahnville,LA,70057,985-783-5000,ST. CHARLES,Marcus M. Lambert,200 Edgewood Ln.,,Montz,LA,70068,985-652-2243,W,M,R,245,01/09/2012,01/14/2008,Mr. Lambert -Councilman ,District 7 ,P.O. Box 302,,Hahnville,LA,70057,985-783-5000,ST. CHARLES,Dennis Nuss,127 Braden Dr.,,Luling,LA,70070,985-785-6523,W,M,R,245,01/09/2012,01/14/2008,Mr. Nuss -Member of School Board ,District 1 ,13855 River Rd.,,Luling,LA,70070,985-785-6289,ST. CHARLES,Ellis Alexander,P.O. Box 87,,Hahnville,LA,70057,985-783-2641,B,M,,255,12/31/2010,01/01/2007,Mr. Alexander -Member of School Board ,District 2 ,13855 River Rd.,,Luling,LA,70070,985-785-6289,ST. CHARLES,Mary Bergeron,105 Laurel Ct.,,Luling,LA,70070,985-785-6680,W,F,R,255,12/31/2010,01/01/2007,Ms. Bergeron -Member of School Board ,District 3 ,13855 River Rd.,,Luling,LA,70070,985-785-6289,ST. CHARLES,Dennis Naquin,6 Stanton Hall Dr.,,Destrehan,LA,70047,985-764-0946,W,M,R,255,12/31/2010,01/01/2007,Mr. Naquin -Member of School Board ,District 4 ,13855 River Rd.,,Luling,LA,70070,985-785-6289,ST. CHARLES,"C. H. ""Sonny"" Savoie",P.O. Box 1550,,Paradis,LA,70080,985-758-2494,W,M,D,255,12/31/2010,01/01/2007,Mr. Savoie -Member of School Board ,District 5 ,13855 River Rd.,,Luling,LA,70070,985-785-6289,ST. CHARLES,John L. Smith,P.O. Box 238,,St. Rose,LA,70087,504-469-0167,B,M,D,255,12/31/2010,01/01/2007,Mr. Smith -Member of School Board ,District 6 ,13855 River Rd.,,Luling,LA,70070,985-785-6289,ST. CHARLES,"""Jay"" Robichaux",P. O. Box 184,,Norco,LA,70079,504-416-1571,W,M,,255,12/31/2010,01/01/2007,Mr. Robichaux -Member of School Board ,District 7 ,13855 River Rd.,,Luling,LA,70070,985-785-6289,ST. CHARLES,Steve Crovetto,P.O. Box 648,,Boutte,LA,70039,985-785-1143,W,M,D,255,12/31/2010,01/01/2007,Mr. Crovetto -Member of School Board ,District 8 ,13855 River Rd.,,Luling,LA,70070,985-785-6289,ST. CHARLES,"""Al"" Suffrin",241 Villere Dr.,,Destrehan,LA,70047,985-764-4288,W,M,R,255,12/31/2010,01/01/2007,Mr. Suffrin -Justice of the Peace ,Justice of the Peace District 1 ,P.O. Box 63,,Hahnville,LA,70057,985-783-6717,ST. CHARLES,Edna Campbell-Bridges,P.O. Box 237,,Hahnville,LA,70057,985-308-0166,B,F,D,265,12/31/2014,01/01/2009,Ms. Bridges -Justice of the Peace ,Justice of the Peace District 2 ,P.O. Box 242,,Luling,LA,70070,985-785-6630,ST. CHARLES,"Earl ""Pie"" Tastet",P.O. Box 242,,Luling,LA,70070,985-785-6630,W,M,D,265,12/31/2014,01/01/2009,Mr. Tastet -Justice of the Peace ,Justice of the Peace District 3 ,219 Ormond Oaks Dr.,,Destrehan,LA,70047,985-764-6796,ST. CHARLES,"Henry R. Miller, Jr.",219 Ormond Oak Dr.,,Destrehan,LA,70047,985-764-6796,W,M,D,265,12/31/2014,01/01/2009,Mr. Miller -Justice of the Peace ,Justice of the Peace District 4 ,152 Bayou Est. Dr.,,Des Allemands,LA,70030,985-758-2936,ST. CHARLES,"Lloyd ""L.J."" Frickey",152 Bayou Estates Dr.,,Des Allemands,LA,70030,985-758-2936,W,M,D,265,12/31/2014,01/01/2009,Mr. Frickey -Justice of the Peace ,Justice of the Peace District 5 ,18 Pinto Ln.,,St. Rose,LA,70087,504-467-1754,ST. CHARLES,Julie P. Carmouche,18 Pinto Ln.,,St. Rose,LA,70087,504-467-1754,W,F,R,265,12/31/2014,01/01/2009,Ms. Carmouche -Justice of the Peace ,Justice of the Peace District 6 ,526 W.Harding St.,,Destrehan,LA,70047,985-764-9425,ST. CHARLES,"John J. Marino, Jr.",526 W. Harding St.,,Destrehan,LA,70047,985-764-9425,W,M,O,265,12/31/2014,01/01/2009,Mr. Marino -Justice of the Peace ,Justice of the Peace District 7 ,442 MonSanto St.,,Luling,LA,70070,985-785-6658,ST. CHARLES,John D. Brady,101 Wade St.,,Luling,LA,70070,504-952-9740,W,M,R,265,12/31/2014,01/01/2009,Mr. Brady -Constable ,Justice of the Peace District 1 ,P.O. Box 442,,Hahnville,LA,70057,985-783-2087,ST. CHARLES,Rose P. LeGaux,P.O. Box 442,,Hahnville,LA,70057,985-783-2087,B,F,D,267,12/31/2014,01/02/2009,Ms. LeGaux -Constable ,Justice of the Peace District 2 ,107 Beaupre Dr.,,Luling,LA,70070,985-785-0181,ST. CHARLES,Craig P. Petit,107 Beaupre Dr.,,Luling,LA,70070,985-785-0181,W,M,D,267,12/31/2014,01/01/2009,Mr. Petit -Constable ,Justice of the Peace District 3 ,130 Ducayet Dr.,,Destrehan,LA,70047,985-764-9590,ST. CHARLES,"""Gil"" Schmidt",130 Ducayet Dr.,,Destrehan,LA,70047,985-764-9590,W,M,R,267,12/31/2014,01/01/2009,Mr. Schmidt -Constable ,Justice of the Peace District 4 ,P.O. Box 214,,Des Allemands,LA,70030,985-758-7778,ST. CHARLES,Donnie White,805 Fonda St.,,Paradis,LA,70080,504-508-1098,B,M,D,267,12/31/2014,01/01/2009,Mr. White -Constable ,Justice of the Peace District 5 ,14 Bridle Path Ln.,,St. Rose,LA,70087,504-467-8075,ST. CHARLES,Stephen Black,162 Oak Manor Ln.,,St. Rose,LA,70087,504-467-8075,W,M,D,267,12/31/2014,01/01/2009,Mr. Black -Constable ,Justice of the Peace District 6 ,402 Marino Dr.,,Norco,LA,70079,985-764-7742,ST. CHARLES,Milton L. Cambre,402 Marino,,Norco,LA,70079,985-764-7742,W,M,D,267,12/31/2014,01/01/2009,Mr. Cambre -Constable ,Justice of the Peace District 7 ,611 Gassen St.,,Luling,LA,70070,985-785-6560,ST. CHARLES,Gary L. Cazenave,611 Gassen St.,,Luling,LA,70070,985-785-6560,W,M,R,267,12/31/2014,01/01/2009,Mr. Cazenave -DPEC Member ,at Large ,,,,LA,,,ST. HELENA,Mark R. Harrell,178 Thornton Ln.,,Pine Grove,LA,70453,225-777-4143,W,M,D,054,02/20/2012,02/20/2008,Mr. Harrell -DPEC Member ,at Large ,,,,LA,,,ST. HELENA,Bonnie McMillan,234 Tiger Bend Ln.,,Kentwood,LA,70444,985-229-5009,W,F,D,054,02/20/2012,02/20/2008,Ms. McMillan -DPEC Member ,District 1 ,,,,LA,,,ST. HELENA,Linda Guy Phillips,192 Linda Carol Ln.,,Greensburg,LA,70441,985-517-6146,W,F,D,056,02/20/2012,02/20/2008,Ms. Phillips -DPEC Member ,District 2 ,,,,LA,,,ST. HELENA,,,,,,,,,,,056 -DPEC Member ,District 3 ,,,,LA,,,ST. HELENA,Michael R. Martin,P.O. Box 720,,Greensburg,LA,70441,225-222-4499,B,M,D,056,02/20/2012,02/20/2008,Mr. Martin -DPEC Member ,District 4 ,,,,LA,,,ST. HELENA,,,,,,,,,,,056 -DPEC Member ,District 5 ,,,,LA,,,ST. HELENA,Kenneth R. Miller,249 Braford Rd.,,Amite,LA,70422,985-748-7311,W,M,D,056,02/20/2012,02/20/2008,Mr. Miller -DPEC Member ,District 6 ,,,,LA,,,ST. HELENA,Myrtie N. Wofford,3770 Newman Rd.,,Kentwood,LA,70444,985-229-8215,W,F,D,056,02/20/2012,02/20/2008,Ms. Wofford -RPEC Member ,at Large ,,,,LA,,,ST. HELENA,Huey N. Davis,4520 Hwy. 441,,Amite,LA,70422,985-748-6154,W,M,R,064,02/20/2012,02/20/2008,Mr. Davis -RPEC Member ,District 1 ,,,,LA,,,ST. HELENA,,,,,,,,,,,066 -RPEC Member ,District 2 ,,,,LA,,,ST. HELENA,,,,,,,,,,,066 -RPEC Member ,District 3 ,,,,LA,,,ST. HELENA,,,,,,,,,,,066 -RPEC Member ,District 4 ,,,,LA,,,ST. HELENA,,,,,,,,,,,066 -RPEC Member ,District 5 ,,,,LA,,,ST. HELENA,,,,,,,,,,,066 -RPEC Member ,District 6 ,,,,LA,,,ST. HELENA,,,,,,,,,,,066 -Sheriff ,,P.O. Box 1205,,Greensburg,LA,70441,225-222-4413,ST. HELENA,"Nathaniel ""Nat"" Williams",P.O. Box 1205,,Greensburg,LA,70441,225-777-4786,B,M,D,225,06/30/2012,07/01/2008,Sheriff Williams -Clerk of Court ,,P. O. Box 308,,Greensburg,LA,70441,225-222-4514,ST. HELENA,Beverly A. Gordon,P.O. Box 308,,Greensburg,LA,70441,225-222-6539,B,F,D,230,06/30/2012,07/01/2008,Ms. Gordon -Assessor ,,P.O. Box 607,,Greensburg,LA,70441,225-222-4131,ST. HELENA,Wesley Blades,448 Tut Blades Rd.,,Kentwood,LA,70444,985-229-2415,W,M,D,235,12/31/2012,01/01/2009,Mr. Blades -Coroner ,,P.O. Box 1178,,Greensburg,LA,70441,225-222-3206,ST. HELENA,Jimmie W. Varnado,P.O. Box 1178,,Greensburg,LA,70441,225-222-3206,W,M,D,240,03/25/2012,03/24/2008,Mr. Varnado -Police Juror,District 1,P. O. Box 339,,Greensburg,LA,70441,225-222-4549,ST. HELENA,Jule Charles Wascom,145 Alton & Lucille Ln.,,Greensburg,LA,70441,225-222-3760,W,M,D,245,01/08/2012,01/14/2008,Mr. Wascom -Police Juror ,District 2 ,P. O. Box 339,,Greensburg,LA,70441,225-222-4549,ST. HELENA,Thomas J. Wicker,578 Wicker Ln.,,Greensburg,LA,70441,225-222-6357,B,M,D,245,01/08/2012,01/14/2008,Mr. Wicker -Police Juror ,District 3 ,P. O. Box 339,,Greensburg,LA,70441,225-222-4549,ST. HELENA,"Theodore McCray, Jr.",8915 Hwy. 43,,Amite,LA,70422,225-777-4614,B,M,D,245,01/08/2012,01/14/2008,mr. McCray -Police Juror ,District 4 ,P. O. Box 339,,Greensburg,LA,70441,225-222-4549,ST. HELENA,Frank E. Johnson,1537 Hwy. 63,,Pine Grove,LA,70453,225-777-4810,B,M,D,245,01/08/2012,01/14/2008,Mr. Johnson -Police Juror ,District 5 ,P. O. Box 339,,Greensburg,LA,70441,225-222-4549,ST. HELENA,Major Coleman,1094 McDaniel Rd.,,Amite,LA,70422,985-748-4925,B,M,D,245,01/08/2012,01/14/2008,Mr. Coleman -Police Juror ,District 6 ,P. O. Box 339,,Greensburg,LA,70441,225-222-4549,ST. HELENA,"""Doug"" Watson",17571 Hwy 441,,Kentwood,LA,70441,985-229-7517,W,M,R,245,01/08/2012,01/14/2008,Mr. Watson -Member of School Board ,District 1 ,P. O. Box 540,,Greensburg,LA,70441,225-222-4349,ST. HELENA,Wilson Hagan,201 W. H. Ln.,,Greensburg,LA,70441,225-222-6951,W,M,D,255,12/31/2010,01/01/2007,Mr. Hagan -Member of School Board ,District 2 ,P. O. Box 540,,Greensburg,LA,70441,225-222-4349,ST. HELENA,Brenda G. Hurst,23 Collins Chaney Ln.,,Greensburg,LA,70441,225-222-6088,B,F,D,255,12/31/2010,01/01/2007 -Member of School Board ,District 3 ,P. O. Box 540,,Greensburg,LA,70441,225-222-4349,ST. HELENA,"Elijah Harvey, Jr.",9971 Hwy. 449,,Greensburg,LA,70441,225-222-6369,B,M,D,255,12/31/2010,01/01/2007,Mr. Harvey -Member of School Board ,District 4 ,P. O. Box 540,,Greensburg,LA,70441,225-222-4349,ST. HELENA,Willie G. Lee,176 Dennis Lee Rd.,,Denham Springs,LA,70706,225-777-4354,B,M,D,255,12/31/2010,01/01/2007,Mr. Lee -Member of School Board ,District 5 ,P. O. Box 540,,Greensburg,LA,70441,225-222-4349,ST. HELENA,"James E. ""Bull"" Baker",936 McDaniel Rd.,,Amite,LA,70422,985-748-9119,B,M,D,255,12/31/2010,01/01/2007,Mr. Baker -Member of School Board ,District 6 ,P. O. Box 540,,Greensburg,LA,70441,225-222-4349,ST. HELENA,"Alton ""Al"" Travis, Jr.",5121 Hwy. 38,,Kentwood,LA,70444,985-229-8517,W,M,D,255,12/31/2010,01/01/2007,Mr. Travis -Justice of the Peace ,Justice of the Peace Ward 1 ,228 Red Bluff Church Rd.,,Greensburg,LA,70441,225-222-6235,ST. HELENA,James E. Chaney,P.O. Box 33,,Greensburg,LA,70441,225-603-7524,B,M,D,265,12/31/2014,01/01/2009,Mr. Chaney -Justice of the Peace ,Justice of the Peace Ward 2 ,P.O. Box 1137,,Greensburg,LA,70441,225-222-4930,ST. HELENA,Alfloyd Muse,120 Alonzo Jones Ln.,,Greensburg,LA,70441,225-222-6205,B,M,D,265,12/31/2014,01/01/2009,Mr. Muse -Justice of the Peace ,Justice of the Peace Ward 3 ,987 Amacker Rd.,,Greensburg,LA,70441,225-222-4595,ST. HELENA,Tundra D. Muse,75 Caston Ln.,,Greensburg,LA,70441,225-331-0363,B,F,D,265,12/31/2014,01/01/2009,Ms. Muse -Justice of the Peace ,Justice of the Peace Ward 4 ,219 Dennis Lee Rd.,,Denham Springs,LA,70726,225-777-4475,ST. HELENA,Joe L. Lee,219 Dennis Lee Rd.,,Denham Springs,LA,70706,225-777-4475,B,M,D,265,12/31/2014,01/01/2009,Mr. Lee -Justice of the Peace ,Justice of the Peace Ward 5 ,31906 Hwy.16,,Amite,LA,70422,985-748-6231,ST. HELENA,Larry Charles Freeman,31906 La. Hwy. 16,,Amite,LA,70422,985-974-5868,B,M,D,265,12/31/2014,01/01/2009,Mr. Freeman -Justice of the Peace ,Justice of the Peace Ward 6 ,583 McMillan Ln.,,Kentwood,LA,70444,985-229-3800,ST. HELENA,Spencer Lee McMillan,583 McMillan Ln.,,Kentwood,LA,70444,985-229-3800,W,M,D,265,12/31/2014,01/01/2009,Mr. McMillan -Constable ,Justice of the Peace Ward 1 ,33 Lloyd Collins Rd.,,Greensburg,LA,70441,225-222-3400,ST. HELENA,"Joseph ""Joby"" Wall",232 Floyd Ln.,,Greensburg,LA,70441,225-229-0382,W,M,D,267,12/31/2014,01/01/2009,Mr. Wall -Constable ,Justice of the Peace Ward 2 ,P.O. Box 155,,Greensburg,LA,70441,225-222-6761,ST. HELENA,"Kermit Brown, ",210 John Matthews Ln.,,Greensburg,LA,70441-4027,225-222-6408,B,M,D,267,,02/15/2010 -Constable ,Justice of the Peace Ward 2 ,P.O. Box 155,,Greensburg,LA,70441,225-222-6761,ST. HELENA,"Kermit L. Brown, ",210 John Matthews Ln.,,Greensburg,LA,70441,,,,,267,,01/04/2010,Mr. Brown -Constable ,Justice of the Peace Ward 3 ,P.O. Box 371,,Greensburg,LA,70441,225-222-4187,ST. HELENA,"Iola J. Martin, ",P.O. Box 577,,Greensburg,LA,70442,225-719-2452,,,,267,,12/28/2009,Ms. Martin -Constable ,Justice of the Peace Ward 3 ,P.O. Box 371,,Greensburg,LA,70441,225-222-4187,ST. HELENA,"Iona T. Pitts, ",P.O. Box 371,,Greensburg,LA,70441,225-222-4075,B,F,D,267,12/31/2014,01/01/2009,Ms. Pitts -Constable ,Justice of the Peace Ward 4 ,337 Dennis Lee Rd.,,Denham Springs,LA,70726,225-777-4029,ST. HELENA,Lawrence Hughes,337 Dennis Lee Rd.,,Denham Springs,LA,70706,225-777-4407,B,M,D,267,12/31/2014,01/01/2009,Mr. Hughes -Constable ,Justice of the Peace Ward 5 ,394 Sharkey Loop,,Amite,LA,70422,985-748-4798,ST. HELENA,Raymond Baker,1416 McDaniel Rd.,,Amite,LA,70422,985-748-8496,B,M,D,267,12/31/2014,01/01/2009,Mr. Baker -Constable ,Justice of the Peace Ward 6 ,5210 Newman Rd.,,Kentwood,LA,70444,985-229-3664,ST. HELENA,"Paul B. Alford, Sr.",64 Buddy Ln.,,Kentwood,LA,70444,985-229-7105,W,M,D,267,12/31/2014,01/01/2009,Mr. Alford -Mayor ,Town of Greensburg ,P. O. Box 160,,Greensburg,LA,,225-222-4312,ST. HELENA,Burke Jones,P.O. Box 82,,Greensburg,LA,70441,225-222-6049,W,M,D,300,11/30/2012,12/01/2008,Mr. Jones -Mayor ,Village of Montpelier ,36400 Hwy. 16,,Montpelier,LA,,225-777-4400,ST. HELENA,"Bryan Edward Dykes, Sr.",35651 3rd Ave.,,Montpelier,LA,70422,225-777-4346,W,M,D,300,12/31/2010,01/01/2007,Mr. Dykes -Chief of Police ,Village of Montpelier ,36400 Hwy. 16,,Montpelier,LA,70422,225-777-4700,ST. HELENA,Gerald O'Malley,5432 Hwy. 43,,Montpelier,LA,70422,225-777-4761,W,M,D,305,12/31/2010,01/01/2007,Mr. O'Malley -Alderman ,"Division A, Town of Greensburg ",P. O. Box 160,,Greensburg,LA,70441,225-222-4312,ST. HELENA,Jimmie L. Meadows,P. O. Box 279,,Greensburg,LA,70441,225-222-6467,W,M,D,310,11/30/2012,12/01/2008,Mr. Meadows -Alderman ,"Division B, Town of Greensburg ",P. O. Box 160,,Greensburg,LA,70441,225-222-4312,ST. HELENA,Hunter Carter,6432 Hwy. 10,,Greensburg,LA,70441,225-573-8121,W,M,R,310,11/30/2012,12/01/2008,Mr. Carter -Alderman ,"Division C, Town of Greensburg ",P. O. Box 160,,Greensburg,LA,70441,225-222-4312,ST. HELENA,Larry Carruth,P.O. Box 127,,Greensburg,LA,70441,225-222-6324,W,M,D,310,11/30/2012,12/01/2008,Mr. Carruth -Alderman ,"Division D, Town of Greensburg ",P. O. Box 160,,Greensburg,LA,70441,225-222-4312,ST. HELENA,"""Danny"" Carruth",857 Taylor Rd.,,Greensburg,LA,70441,225-747-0366,W,M,R,310,11/30/2012,12/01/2008,Mr. Carruth -Alderman ,"Division E, Town of Greensburg ",P. O. Box 160,,Greensburg,LA,70441,225-222-4312,ST. HELENA,Paula McNabb,725 Taylor St.,,Greensburg,LA,70441,225-222-3634,W,F,D,310,11/30/2012,12/01/2008,Ms. McNabb -Alderman ,Village of Montpelier ,36400 Hwy. 16,,Montpelier,LA,70422,225-777-4400,ST. HELENA,Jason Barber,2880 St. Helena Ave.,,Montpelier,LA,70422,225-777-4815,W,M,,310,12/31/2010,01/01/2007,Mr. Barber -Alderman ,Village of Montpelier ,36400 Hwy. 16,,Montpelier,LA,70422,225-777-4400,ST. HELENA,"""Brad"" Davis, Sr.",5490 Hwy. 43,,Montpelier,LA,70422,225-777-4717,W,M,R,310,12/31/2010,01/01/2007,Mr. Davis -Alderman ,Village of Montpelier ,36400 Hwy. 16,,Montpelier,LA,70422,225-777-4400,ST. HELENA,Kenneth G. Giardina,35999 Hwy. 16,,Montpelier,LA,70422,225-777-4785,W,M,D,310,12/31/2010,01/01/2007,Mr. Giardina -DPEC Member ,at Large ,,,,LA,,,ST. JAMES,"Dale Hymel, Jr.",P.O. Box 3,,Lutcher,LA,70071,225-869-3365,W,M,D,054,02/20/2012,02/20/2008,Mr. Hymel -DPEC Member ,at Large ,,,,LA,,,ST. JAMES,"Edmond E. Kinler, Jr.",P.O. Box 21,,Paulina,LA,70763,225-869-3653,W,M,D,054,02/20/2012,02/20/2008,Mr. Kinler -DPEC Member ,at Large ,,,,LA,,,ST. JAMES,"Willy J. Martin, Jr.",32077 Longview St.,,Paulina,LA,70763,225-869-4331,W,M,D,054,02/20/2012,02/20/2008,Mr. Martin -DPEC Member ,at Large ,,,,LA,,,ST. JAMES,03060J. Petit,P.O. Box 213,,Hester,LA,70743,225-869-5997,W,M,D,054,02/20/2012,02/20/2008,Mr. Petit -DPEC Member ,District 1 ,,,,LA,,,ST. JAMES,,,,,,,,,,,056 -DPEC Member ,District 2 ,,,,LA,,,ST. JAMES,Wilbur Reynaud,P.O. Drawer N,,Lutcher,LA,70071,225-869-3962,W,M,D,056,02/20/2012,02/20/2008,Mr. Reynaud -DPEC Member ,District 3 ,,,,LA,,,ST. JAMES,"030608o-Boy"" LeBlanc",P.O. Box 381,,Paulina,LA,70763,225-869-9232,W,M,D,056,02/20/2012,02/20/2008,Mr. LeBlanc -DPEC Member ,District 4 ,,,,LA,,,ST. JAMES,"Ralph Patin, Jr.",.,,,LA,,,,,,056,,03/06/2008,Mr. Patin -DPEC Member ,District 5 ,,,,LA,,,ST. JAMES,Rita M. Cooper,8171 Hwy. 18,,St. James,LA,70086,225-473-3572,,,,056,,03/06/2008,Ms. Cooper -DPEC Member ,District 6 ,,,,LA,,,ST. JAMES,Stanley Folse,21030 Hwy. 20 West,,Vacherie,LA,70090,225-265-4257,,,,056,,03/06/2008,Mr. Folse -DPEC Member ,District 7 ,,,,LA,,,ST. JAMES,Glenn Waguespack,13300 Maria Gravois Rd.,,Vacherie,LA,70090,225-265-3228,W,M,D,056,02/20/2012,02/20/2008,Mr. Waguespack -RPEC Member ,at Large ,,,,LA,,,ST. JAMES,Brad Steib,13881 Clifford St.,,Vacherie,LA,70090,225-265-2303,W,M,R,064,02/20/2012,02/20/2008,Mr. Steib -RPEC Member ,District 1 ,,,,LA,,,ST. JAMES,,,,,,,,,,,066 -RPEC Member ,District 2 ,,,,LA,,,ST. JAMES,,,,,,,,,,,066 -RPEC Member ,District 3 ,,,,LA,,,ST. JAMES,,,,,,,,,,,066 -RPEC Member ,District 4 ,,,,LA,,,ST. JAMES,,,,,,,,,,,066 -RPEC Member ,District 5 ,,,,LA,,,ST. JAMES,,,,,,,,,,,066 -RPEC Member ,District 6 ,,,,LA,,,ST. JAMES,,,,,,,,,,,066 -RPEC Member ,District 7 ,,,,LA,,,ST. JAMES,,,,,,,,,,,066 -Sheriff ,,P. O. Box 83,,Convent,LA,70723,225-562-2378,ST. JAMES,"Willy J. Martin, Jr.",P.O. Box 83,,Convent,LA,70723,225-869-4331,W,M,D,225,06/30/2012,07/01/2008,Sheriff Martin -Clerk of Court ,,P. O. Box 63,,Convent,LA,70723,225-562-2270,ST. JAMES,"Edmond E. Kinler, Jr.",P. O. Box 63,,Convent,LA,70723,225-869-3653,W,M,D,230,06/30/2012,07/01/2008,Mr. Kinler -Assessor ,,P.O. Box 55,,Convent,LA,70723,225-562-2251,ST. JAMES,Glenn Waguespack,13300 Maria Gravois Rd.,,Vacherie,LA,70090,225-265-3228,W,M,D,235,12/31/2012,01/01/2009,Mr. Waguespack -Coroner ,,P.O. Box 369,,Lutcher,LA,70071,225-869-3493,ST. JAMES,Randall C. Poche,P. O. Box 855,,Lutcher,LA,70071,225-869-9707,W,M,D,240,03/25/2012,03/24/2008,Mr. Poche -Parish President ,,P.O. Box 176,,Vacherie,LA,70090,225-562-2400,ST. JAMES,"Dale Hymel, Jr.",P.O. Box 3,,Lutcher,LA,70071,225-869-3365,W,M,D,243,01/09/2012,01/14/2008,Mr. Hymel -Councilman,District 1,P. O. Box 176,,Vacherie,LA,70090-0176,225-562-2400,ST. JAMES,Elwyn Bocz,P. O. Box 1530,,Gramercy,LA,70052,225-869-8132,W,M,D,245,01/09/2012,01/14/2008,Mr. Bocz -Councilman ,District 2 ,P. O. Box 176,,Vacherie,LA,70090,225-562-2400,ST. JAMES,Jason P. Amato,1168 Marquette Dr.,,Lutcher,LA,70071,225-869-8347,W,M,R,245,01/09/2012,01/14/2008,Mr. Amato -Councilman ,District 3 ,P. O. Box 176,,Vacherie,LA,70090,225-562-2400,ST. JAMES,"Wilson F. Malbrough, Jr.",3612 Kenmore Dr.,,Paulina,LA,70763,225-869-5954,W,M,D,245,01/09/2012,01/14/2008,Mr. Malbrough -Councilman ,District 4 ,P. O. Box 176,,Vacherie,LA,70090,225-562-2400,ST. JAMES,"Ralph A. Patin, Jr.",9224 La. Hwy. 44,,Convent,LA,70723,225-562-3602,B,M,D,245,01/09/2012,01/14/2008,Mr. Patin -Councilman ,District 5 ,P. O. Box 176,,Vacherie,LA,70090,225-562-2400,ST. JAMES,"Charles ""I Spy"" Ketchens",P.O. Box 421,,Vacherie,LA,70090,225-265-7661,B,M,D,245,01/09/2012,01/14/2008,Mr. Ketchens -Councilman ,District 6 ,P. O. Box 176,,Vacherie,LA,70090,225-562-2400,ST. JAMES,"""Ken"" Brass",2381 Armant St.,,Vacherie,LA,70090,225-265-8727,B,M,D,245,01/09/2012,01/14/2008,Mr. Brass -Councilman ,District 7 ,P. O. Box 176,,Vacherie,LA,70090,225-562-2400,ST. JAMES,"James ""Jimmy"" Brazan",13426 Redbud St.,,Vacherie,LA,70090,225-265-4632,W,M,D,245,01/09/2012,01/14/2008,Mr. Brazan -Member of School Board ,District 1 ,P. O. Box 338,,Lutcher,LA,70071,225-869-5375,ST. JAMES,Diana B. Cantillo,165 N. Pine Ave.,,Gramercy,LA,70052,225-869-7933,W,F,D,255,12/31/2010,01/01/2007,Ms. Cantillo -Member of School Board ,District 2 ,P. O. Box 338,,Lutcher,LA,70071,225-869-5375,ST. JAMES,Kenneth J. Foret,1176 Desoto Dr.,,Lutcher,LA,70071,225-869-5267,W,M,D,255,12/31/2010,01/01/2007,Mr. Foret -Member of School Board ,District 3 ,P. O. Box 338,,Lutcher,LA,70071,225-869-5375,ST. JAMES,Carol C. Lambert,3564 Geismar St.,,Paulina,LA,70763,225-869-5134,W,F,D,255,12/31/2010,01/01/2007,Ms. Lambert -Member of School Board ,District 4 ,P. O. Box 338,,Lutcher,LA,70071,225-869-5375,ST. JAMES,"George Nassar, Jr.",P. O. Box 17,,Convent,LA,70723,225-562-7528,W,M,D,255,12/31/2010,01/01/2007,Mr. Nassar -Member of School Board ,District 5 ,P. O. Box 338,,Lutcher,LA,70071,225-869-5375,ST. JAMES,"Patricia Heary ""Ducy"" Schexnayder",7176 Communi St.,,St.James,LA,70086,225-265-8357,B,F,D,255,12/31/2010,01/01/2007,Ms. Schexnayder -Member of School Board ,District 6 ,P. O. Box 338,,Lutcher,LA,70071,225-869-5375,ST. JAMES,"Charles T. ""Charlie"" Nailor",P.O. Box 1235,,Vacherie,LA,70090,225-265-3873,B,M,D,255,12/31/2010,01/01/2007,Mr. Nailor -Member of School Board ,District 7 ,P. O. Box 338,,Lutcher,LA,70071,225-869-5375,ST. JAMES,"Richard ""Ricky"" Reulet, Jr.",23185 Reulet Rd.,,Vacherie,LA,70090,225-265-2380,W,M,D,255,12/31/2010,01/01/2007,Mr. Reulet -Justice of the Peace ,Justice of the Peace District 1 ,P.O. Box 106,,Gramercy,LA,70052,225-869-3353,ST. JAMES,Mary Rodrigue Walker,277 North Magnolia Ave.,,Gramercy,LA,70052,225-869-8742,W,F,D,265,12/31/2014,08/24/2009,Ms. Walker -Justice of the Peace ,Justice of the Peace District 2 ,P.O. Box 273,,Lutcher,LA,70071,225-869-5118,ST. JAMES,"Milton ""Bud"" Lambert",P.O. Box 1318,,Gramercy,LA,70052,225-268-9743,W,M,D,265,12/31/2014,01/01/2009,Mr. Lambert -Justice of the Peace ,Justice of the Peace District 3 ,P.O. Box 272,,Paulina,LA,70763,225-869-4337,ST. JAMES,"Stephen ""Lukey"" Louque",P.O. Box 272,,Paulina,LA,70763,225-869-4337,W,M,D,265,12/31/2014,01/01/2009,Mr. Louque -Justice of the Peace ,Justice of the Peace District 4 ,8124 Pleasant Hill St.,,Convent,LA,70723,225-562-7192,ST. JAMES,"Lionel Felton, Sr.",8124 Pleasant Hill St.,,Convent,LA,70723,225-562-7192,B,M,D,265,12/31/2014,01/01/2009,Mr. Felton -Justice of the Peace ,Justice of the Peace District 5 ,8249 Hwy. 18,,St. James,LA,70086,225-473-1505,ST. JAMES,Trina Folse Moll,8249 Hwy 18,,St.James,LA,70086,225-473-9569,B,F,D,265,12/31/2014,01/01/2009,Ms. Moll -Justice of the Peace ,Justice of the Peace District 6 ,1228 Old Vacherie St.,,Vacherie,LA,70090,225-265-2158,ST. JAMES,Eileen R. Jasmin,1228 Old Vacherie St.,,Vacherie,LA,70090,225-265-8295,B,F,D,265,12/31/2014,01/01/2009,Ms. Jasmin -Justice of the Peace ,Justice of the Peace District 7 ,13542 Hwy 643,,Vacherie,LA,70090,225-265-2921,ST. JAMES,"Marie Laurent ""Maddy"" Lewis",13542 Hwy. 643,,Vacherie,LA,70090,225-265-2921,B,F,D,265,12/31/2014,01/01/2009,Ms. Lewis -Constable ,Justice of the Peace District 1 ,P.O. Box 891,,Gramercy,LA,70052,225-869-5608,ST. JAMES,"Ronald ""Shine"" Boudreaux",P.O. Box 891,,Gramercy,LA,70052,225-869-1785,B,M,D,267,12/31/2014,01/01/2009,Mr. Boudreaux -Constable ,Justice of the Peace District 2 ,2459 N. Central,,Lutcher,LA,70071,225-869-9849,ST. JAMES,"Arthur M. ""Coach"" Harper, Jr.",P.O. Box 665,,Lutcher,LA,70071,225-869-9849,B,M,D,267,12/31/2014,01/01/2009,Mr. Harper -Constable ,Justice of the Peace District 3 ,2246 LeBoukin,,Paulina,LA,70763,225-869-5966,ST. JAMES,"Timothy ""Droopy"" Bourgeois",2246 LeBouKin St.,,Paulina,LA,70763,225-869-5966,W,M,D,267,12/31/2014,01/01/2009,Mr. Bourgeois -Constable ,Justice of the Peace District 4 ,P.O. Box 4,,Convent,LA,70723,225-562-3376,ST. JAMES,Johnnie Shorty,6125 Haydel St.,,Convent,LA,70723,225-562-3376,B,M,D,267,12/31/2014,01/01/2009,Mr. Shorty -Constable ,Justice of the Peace District 5 ,P.O. Box 34,,St. James,LA,70086,225-265-2244,ST. JAMES,"Sylvester J. ""Syl"" Winchester, Sr.",P.O. Box 285,,St.James,LA,70086,225-265-3010,B,M,D,267,12/31/2014,01/01/2009,Mr. Winchester -Constable ,Justice of the Peace District 6 ,2147 Hwy. 20 W.,,Vacherie,LA,70090,,ST. JAMES,Vanessa James,2470 Church St.,,Vacherie,LA,70090,225-206-0127,B,F,D,267,12/31/2014,01/02/2009,Ms. James -Constable ,Justice of the Peace District 7 ,13881 Clifford St.,,Vacherie,LA,70090,225-265-2303,ST. JAMES,"""Brad"" Steib",13881 Clifford St.,,Vacherie,LA,70090,225-265-2303,W,M,R,267,12/31/2014,01/01/2009,Mr. Steib -Mayor ,Town of Gramercy ,P. O. Drawer 340,,Gramercy,LA,,225-869-4403,ST. JAMES,Herman Bourgeois,P.O. Box 698,,Gramercy,LA,70052,225-869-3812,W,M,D,300,12/31/2010,01/01/2007,Mr. Bourgeois -Mayor ,Town of Lutcher ,P. O. Box 456,,Lutcher,LA,,225-869-5823,ST. JAMES,Rowdy Kennard Scott,1596 Cabanose Ave.,,Lutcher,LA,70071,225-869-9672,B,M,D,300,12/31/2010,01/01/2007,Mayor Scott -Chief of Police ,Town of Gramercy ,P. O. Drawer 340,,Gramercy,LA,70052,225-869-4403,ST. JAMES,Brent H. Dicharry,P.O. Box 151,,Paulina,LA,70763,225-869-3873,W,M,D,305,12/31/2010,01/01/2007,Mr. Dicharry -Chief of Police ,Town of Lutcher ,P. O. Box 456,,Lutcher,LA,70071,225-869-5823,ST. JAMES,Dwan Bowser,P.O. Box 456,,Lutcher,LA,70071,225-869-5823,,,,305,,10/06/2009,Chief Bowser -Chief of Police ,Town of Lutcher ,P. O. Box 456,,Lutcher,LA,70071,225-869-5823,ST. JAMES,"Dwan B. Bowser, ",2344 N. Exchange Ally,,Lutcher,LA,70071,225-869-1873,B,M,D,305,,02/15/2010 -Alderman at Large ,"Seat One, Town of Lutcher ",P. O. Box 456,,Lutcher,LA,70071,225-869-5823,ST. JAMES,Otis J. Schexnayder,P.O. Box 51,,Lutcher,LA,70071,225-869-4847,W,M,D,308,12/31/2010,01/01/2007,Mr. Schexnayder -Alderman at Large ,Town of Gramercy ,P. O. Drawer 340,,Gramercy,LA,70052,225-869-4403,ST. JAMES,"""Kat"" Bocz",P.O. Box 1530,,Gramercy,LA,70052,225-869-8132,W,F,D,308,12/31/2010,01/01/2007,Ms. Bocz -Alderman at Large ,Town of Gramercy ,P. O. Drawer 340,,Gramercy,LA,70052,225-869-4403,ST. JAMES,Rubenstein Mitchell Clark,P.O. Box 662,,Gramercy,LA,70052,225-869-8746,W,F,D,308,12/31/2010,01/01/2007,Mr. Clark -Alderman ,"District 1, Division A, Town of Lutcher ",P. O. Box 456,,Lutcher,LA,70071,225-869-5823,ST. JAMES,"Floyd A. Marshall, Sr.",P.O. Box 861,,Lutcher,LA,70071,225-869-8482,B,M,D,310,12/31/2010,01/01/2007,Mr. Marshall -Alderman ,"District 1, Division B, Town of Lutcher ",P. O. Box 456,,Lutcher,LA,70071,225-869-5823,ST. JAMES,Keyojuan L. Gant,P.O. Box 835,,Gramercy,LA,70052,225-869-7525,B,F,D,310,12/31/2010,01/01/2007,Mr. Gant -Alderman ,"District 1, Town of Gramercy ",P. O. Drawer 340,,Gramercy,LA,70052,225-869-4403,ST. JAMES,Betty Cooper Coleman,P.O. Box 274,,Gramercy,LA,70052,225-869-5112,B,F,D,310,12/31/2010,01/01/2007,Ms. Coleman -Alderman ,"District 2, Division A, Town of Lutcher ",P. O. Box 456,,Lutcher,LA,70071,225-869-5823,ST. JAMES,Patrick P. St. Pierre,P.O. Box 1128,,Lutcher,LA,70071,225-869-1050,W,M,D,310,12/31/2010,01/01/2007,Mr. St. Pierre -Alderman ,"District 2, Division B, Town of Lutcher ",P. O. Box 456,,Lutcher,LA,70071,225-869-5823,ST. JAMES,"Dustin ""Chip"" Roussel",1330 Third St.,,Lutcher,LA,70071,225-258-4181,W,M,D,310,12/31/2010,02/20/2008,Mr. Roussel -Alderman ,"District 2, Town of Gramercy ",P. O. Drawer 340,,Gramercy,LA,70052,225-869-4403,ST. JAMES,John Doucet,443 N. Montz Ave.,,Gramercy,LA,70052,225-869-8575,W,M,D,310,12/31/2010,01/01/2007,Mr. Doucet -Alderman ,"District 3, Town of Gramercy ",P. O. Drawer 340,,Gramercy,LA,70052,225-869-4403,ST. JAMES,"Alvin ""Shark"" St. Pierre, Jr.",P.O. Box 1137,,Gramercy,LA,70052,225-869-4132,W,M,D,310,12/31/2010,01/01/2007,Mr. St.Pierre -DPEC Member ,at Large ,,,,LA,,,ST. JOHN THE BAPTIST,Tomy J. Acosta,P.O. Box 2587,,LaPlace,LA,70069,504-237-3532,W,M,D,054,02/20/2012,02/20/2008,Mr. Acosta -DPEC Member ,at Large ,,,,LA,,,ST. JOHN THE BAPTIST,"Carl ""Butch"" Baloney, Sr.",P.O. Box 117,,Garyville,LA,70051,985-210-1348,,M,D,054,02/20/2012,02/20/2008,Mr. Baloney -DPEC Member ,at Large ,,,,LA,,,ST. JOHN THE BAPTIST,Lynncal T. Bering,545 Esplanade Dr.,,LaPlace,LA,70068,225-892-2828,B,F,D,054,02/20/2012,02/20/2008,Ms. Bering -DPEC Member ,at Large ,,,,LA,,,ST. JOHN THE BAPTIST,"Olangee ""OJ"" Breech",2109 Colonial Dr.,,LaPlace,LA,70068,504-253-0208,B,F,D,054,02/20/2012,02/20/2008,Ms. Breech -DPEC Member ,at Large ,,,,LA,,,ST. JOHN THE BAPTIST,"Ferdinand Wallace, Jr.",164 East 20th St.,,Reserve,LA,70084,985-536-3533,B,M,D,054,02/20/2012,02/20/2008,Mr. Wallace -DPEC Member at Large ,Division A ,,,,LA,,,ST. JOHN THE BAPTIST,Elexia O. Henderson,257 Chestnut St.,,Mt. Airy,LA,70076,985-535-2832,B,F,D,054,02/20/2012,02/20/2008 -DPEC Member at Large ,Division B ,,,,LA,,,ST. JOHN THE BAPTIST,Maria Rowley,554 Welham Loop,,LaPlace,LA,70068,985-652-7361,O,F,D,054,02/20/2012,02/20/2008 -DPEC Member ,District 1 ,,,,LA,,,ST. JOHN THE BAPTIST,Clara Edwards,177 W. 8th St.,,Vacherie,LA,70090,225-265-2714,B,F,D,056,02/20/2012,02/20/2008,Ms. Edwards -DPEC Member ,District 2 ,,,,LA,,,ST. JOHN THE BAPTIST,Craig J. Mollere,P.O. Box 62,,Reserve,LA,70084,985-536-7855,W,M,D,056,02/20/2012,02/20/2008,Mr. Mollere -DPEC Member ,District 3 ,,,,LA,,,ST. JOHN THE BAPTIST,Allene Gregoire,201 East 26th St.,,Reserve,LA,70084,985-536-2744,B,F,D,056,02/20/2012,02/20/2008,Ms. Gregoire -DPEC Member ,District 4 ,,,,LA,,,ST. JOHN THE BAPTIST,E. Buddy Bailey,725 Fagot Loop,,LaPlace,LA,70068,985-652-9001,W,M,D,056,02/20/2012,02/20/2008,Mr. Bailey -DPEC Member ,District 5 ,,,,LA,,,ST. JOHN THE BAPTIST,Judy B. Songy,8 Windsor St.,,LaPlace,LA,70068,985-652-9840,W,F,D,056,02/20/2012,02/20/2008,Ms. Songy -DPEC Member ,District 6 ,,,,LA,,,ST. JOHN THE BAPTIST,Sherry W. McTopy,508 Chatsworth Dr.,,LaPlace,LA,70068,985-652-6817,W,F,D,056,02/20/2012,02/20/2008,Ms. McTopy -DPEC Member ,District 7 ,,,,LA,,,ST. JOHN THE BAPTIST,Randal Gaines,7 Turnberry Dr.,,LaPlace,LA,70068,504-487-9904,B,M,D,056,02/20/2012,02/20/2008,Mr. Gaines -RPEC Member ,at Large ,,,,LA,,,ST. JOHN THE BAPTIST,,,,,,,,,,,064 -RPEC Member at Large ,Division A ,,,,LA,,,ST. JOHN THE BAPTIST,,,,,,,,,,,064 -RPEC Member at Large ,Division B ,,,,LA,,,ST. JOHN THE BAPTIST,,,,,,,,,,,064 -RPEC Member ,District 1 ,,,,LA,,,ST. JOHN THE BAPTIST,,,,,,,,,,,066 -RPEC Member ,District 2 ,,,,LA,,,ST. JOHN THE BAPTIST,,,,,,,,,,,066 -RPEC Member ,District 3 ,,,,LA,,,ST. JOHN THE BAPTIST,,,,,,,,,,,066 -RPEC Member ,District 4 ,,,,LA,,,ST. JOHN THE BAPTIST,,,,,,,,,,,066 -RPEC Member ,District 5 ,,,,LA,,,ST. JOHN THE BAPTIST,,,,,,,,,,,066 -RPEC Member ,District 6 ,,,,LA,,,ST. JOHN THE BAPTIST,,,,,,,,,,,066 -RPEC Member ,District 7 ,,,,LA,,,ST. JOHN THE BAPTIST,,,,,,,,,,,066 -Sheriff ,,P.O. Box 1600,,LaPlace,LA,70069,985-652-9513,ST. JOHN THE BAPTIST,Wayne Jones,P.O. Box 1600,,LaPlace,LA,70069,985-652-2109,W,M,D,225,06/30/2012,07/01/2008,Sheriff Jones -Clerk of Court ,,P. O. Box 280,,Edgard,LA,70049,985-497-3331,ST. JOHN THE BAPTIST,Eliana Olivier DeFrancesch,P. O. Box 280,,Edgard,LA,70049,985-535-6797,W,F,D,230,06/30/2012,07/01/2008,Ms. DeFrancesch -Assessor ,,"1801 W. Airline Hwy., Rm. 103",,Laplace,LA,70068,985-652-5311,ST. JOHN THE BAPTIST,"Whitney Joseph, Jr.",P. O. Box 2290,,Reserve,LA,70084,985-536-3115,B,M,D,235,12/31/2012,01/01/2009,Mr. Joseph -Coroner ,,429 W. Airline Hwy. Ste. D.,,LaPlace,LA,70068,985-652-3344,ST. JOHN THE BAPTIST,Christy A. Montegut,51 Holly Dr.,,LaPlace,LA,70068,985-652-7185,W,M,D,240,03/25/2012,03/24/2008,Mr. Montegut -Parish President ,,1801 W. airline Hwy.,,LaPlace,LA,70068,985-652-1700,ST. JOHN THE BAPTIST,,,,,,,,,,,243 -Councilman at Large ,Division A ,1801 W. Airline Hwy.,,LaPlace,LA,70068,985-652-1702,ST. JOHN THE BAPTIST,"Richard Dale Wolfe, Sr.",P.O. Box 2289,,Reserve,LA,70084,985-536-2965,B,M,D,244,01/09/2012,01/14/2008,Mr. Wolfe -Councilman at Large ,Division B ,1801 W. Airline Hwy.,,LaPlace,LA,70068,985-652-1702,ST. JOHN THE BAPTIST,Steve Lee,38 Muirfield Dr.,,LaPlace,LA,70068,985-652-8202,W,M,R,244,01/09/2012,01/14/2008,Mr. Lee -Councilman ,District 1 ,1801 W. Airline Hwy.,,LaPlace,LA,,985-652-1702,ST. JOHN THE BAPTIST,"Haston ""Lipper"" Lewis, Sr.",117 Lewis Ct.,,Edgard,LA,70049,985-497-5528,B,M,D,245,01/09/2012,01/14/2008,Mr. lewis -Councilman ,District 2 ,1801 W. Airline Hwy.,,LaPlace,LA,70068,985-652-1702,ST. JOHN THE BAPTIST,Danny Millet,296 Annex Dr.,,Reserve,LA,70084,985-536-8000,W,M,D,245,01/09/2012,01/14/2008,Mr. Millet -Councilman ,District 3 ,1801 W. Airline Hwy.,,LaPlace,LA,70068,985-652-1702,ST. JOHN THE BAPTIST,Charles Julien,P.O. Box 2489,,Reserve,LA,70084,504-782-9291,B,M,D,245,01/09/2012,01/14/2008,Mr. Julien -Councilman ,District 4 ,1801 W. Airline Hwy.,,LaPlace,LA,70068,985-652-1702,ST. JOHN THE BAPTIST,Jaclyn Hotard,776 Madewood Drive,,LaPlace,LA,70068,504-228-1574,W,F,D,245,01/09/2012,01/14/2008,Ms. Hotard -Councilman ,District 5 ,1801 W. Airline Hwy.,,LaPlace,LA,70068,985-652-1702,ST. JOHN THE BAPTIST,Darnel Clement Usry,500 Palm St.,,LaPlace,LA,70068,985-652-3623,W,F,D,245,01/09/2012,01/14/2008,Ms. Usry -Councilman ,District 6 ,1801 W. Airline Hwy.,,LaPlace,LA,70068,985-652-1702,ST. JOHN THE BAPTIST,Ronnie S. Smith,2609 English Colony Dr.,,LaPlace,LA,70068,985-359-0226,B,M,D,245,01/09/2012,01/14/2008,Mr. Smith -Councilman ,District 7 ,1801 W. Airline Hwy.,,LaPlace,LA,70068,985-652-1702,ST. JOHN THE BAPTIST,Cheryl Millet,1925 Ridgefield Dr.,,LaPlace,LA,70068,985-652-7130,W,F,D,245,01/09/2012,01/14/2008,Ms. Millet -Member of School Board ,District 1 ,P. O. Drawer AL,,Reserve,LA,70084,985-536-1106,ST. JOHN THE BAPTIST,"Russell Jack, Jr.",P.O. Box 213,,Edgard,LA,70049,985-497-8395,B,M,D,255,12/31/2010,01/01/2007,Mr. Jack -Member of School Board ,District 2 ,P. O. Drawer AL,,Reserve,LA,70084,985-536-1106,ST. JOHN THE BAPTIST,"Albert ""Ali"" Burl, III",P.O. Drawer AL,,Reserve,LA,70084,985-535-2969,B,M,D,255,12/31/2010,01/01/2007,Mr. Burl -Member of School Board ,District 3 ,P. O. Drawer AL,,Reserve,LA,70084,985-536-1106,ST. JOHN THE BAPTIST,Gerald J. Keller,P.O. Box 347,,Reserve,LA,70084,985-536-6570,W,M,D,255,12/31/2010,01/01/2007,Mr. Keller -Member of School Board ,District 4 ,P. O. Drawer AL,,Reserve,LA,70084,985-536-1106,ST. JOHN THE BAPTIST,Patrick H. Sanders,137 E. 31st. St.,,Reserve,LA,70084,985-536-4247,B,M,D,255,12/31/2010,01/01/2007,Mr. Sanders -Member of School Board ,District 5 ,P. O. Drawer AL,,Reserve,LA,70084,985-536-1106,ST. JOHN THE BAPTIST,"James R. ""Jimmy Ray"" Madere",7 Holly Dr.,,LaPlace,LA,70068,985-652-5555,W,M,D,255,12/31/2010,07/21/2008,Mr. Madere -Member of School Board ,District 6 ,P. O. Drawer AL,,Reserve,LA,70084,985-536-1106,ST. JOHN THE BAPTIST,Keith A. Jones,P.O. Box 952,,LaPlace,LA,70068,985-652-5170,B,M,D,255,12/31/2010,01/01/2007,Mr. Jones -Member of School Board ,District 7 ,P. O. Drawer AL,,Reserve,LA,70084,985-536-1106,ST. JOHN THE BAPTIST,Phillip Johnson,1117 Cinclair Loop,,LaPlace,LA,70068,985-651-4290,B,M,D,255,12/31/2010,01/01/2007,Mr. Johnson -Member of School Board ,District 8 ,P. O. Drawer AL,,Reserve,LA,70084,985-536-1106,ST. JOHN THE BAPTIST,"Russell E. ""Russ"" Wise",2131 Marion Dr.,,LaPlace,LA,70068,985-652-7211,W,M,,255,12/31/2010,01/01/2007,Mr. Wise -Member of School Board ,District 9 ,P. O. Drawer AL,,Reserve,LA,70084,985-536-1106,ST. JOHN THE BAPTIST,Lowell J. Bacas,517 Parlange Loop,,LaPlace,LA,70068,985-652-6882,W,M,R,255,12/31/2010,01/01/2007,Mr. Bacas -Member of School Board ,District 10 ,P. O. Drawer AL,,Reserve,LA,70084,985-536-1106,ST. JOHN THE BAPTIST,Matthew Ory,640 S. Golfview,,LaPlace,LA,70068,985-652-7312,W,M,D,255,12/31/2010,01/01/2007,Mr. Ory -Member of School Board ,District 11 ,P. O. Drawer AL,,Reserve,LA,70084,985-536-1106,ST. JOHN THE BAPTIST,Clarence G. Triche,1614 Main St.,,LaPlace,LA,70068,985-652-6193,W,M,D,255,12/31/2010,01/01/2007,Mr. Triche -Justice of the Peace ,Justice of the Peace District 1 ,P.O. Box 178,,Edgard,LA,70049,985-497-8690,ST. JOHN THE BAPTIST,,,,,,,,,,,265 -Justice of the Peace ,Justice of the Peace District 2 ,P.O. Box 699,,Garyville,LA,70051,985-535-1879,ST. JOHN THE BAPTIST,Cherry Burl Frank,P.O. Box 61,,Garyville,LA,70051,985-535-2516,B,F,D,265,12/31/2014,01/01/2009,Ms. Frank -Justice of the Peace ,Justice of the Peace District 3 ,143 E.25th St.,,Reserve,LA,70084,985-536-3428,ST. JOHN THE BAPTIST,Diane C. Jacob,143 East 25th St.,,Reserve,LA,70084,985-536-3428,W,F,D,265,12/31/2014,01/01/2009,Ms. Jacob -Justice of the Peace ,Justice of the Peace District 4 ,100 Lane A,,LaPlace,LA,70068,985-651-6882,ST. JOHN THE BAPTIST,Rosie Weber Monica,100 Lane A,,LaPlace,LA,70068,985-651-6882,W,F,D,265,12/31/2014,01/01/2009,Ms. Monica -Justice of the Peace ,Justice of the Peace District 5 ,520 Walnut St.,,LaPlace,LA,70068,985-652-6281,ST. JOHN THE BAPTIST,Karen J. Bailey,520 Walnut St.,,LaPlace,LA,70068,985-652-6281,W,F,D,265,12/31/2014,01/01/2009,Ms. Bailey -Justice of the Peace ,Justice of the Peace District 6 ,,,,LA,,,ST. JOHN THE BAPTIST,"Wilfred ""Coach"" Mitchell",2237 Williamsburg Dr.,,LaPlace,LA,70068,985-652-4660,B,M,D,265,12/31/2014,01/01/2009,Mr. Mitchell -Justice of the Peace ,Justice of the Peace District 7 ,366 Shadow Ln.,,LaPlace,LA,70068,985-651-7483,ST. JOHN THE BAPTIST,"Todd J. Clement, Sr.",366 Shadow Lane,,LaPlace,LA,70068,985-651-7483,W,M,D,265,12/31/2014,01/01/2009,Mr. Clement -Constable ,Justice of the Peace District 1 ,116 E. 13th St.,,Edgard,LA,70049,985-497-8661,ST. JOHN THE BAPTIST,Chyrall August,P.O. Box 331,,Edgard,LA,70049,504-621-6847,B,M,D,267,12/31/2014,01/01/2009 -Constable ,Justice of the Peace District 2 ,P.O. Box 593,,Garyville,LA,70051,,ST. JOHN THE BAPTIST,"Barry ""Mr.- B"" Ellis, Sr.",P.O. Box 199,,Garyville,LA,70051,985-535-6119,B,M,D,267,12/31/2014,01/01/2009,Mr. Ellis -Constable ,Justice of the Peace District 3 ,244 E. 15th St.,,Reserve,LA,70084,985-536-2408,ST. JOHN THE BAPTIST,"Anatole ""Touie"" Jacob",244 East 15th St.,,Reserve,LA,70084,985-536-2408,W,M,D,267,12/31/2014,01/01/2009,Mr. Jacob -Constable ,Justice of the Peace District 4 ,963 W. Fifth St.,,LaPlace,LA,70068,985-652-1603,ST. JOHN THE BAPTIST,Russel Landeche,963 West 5th St.,,LaPlace,LA,70068,985-652-1603,W,M,R,267,12/31/2014,01/01/2009,Mr. Landeche -Constable ,Justice of the Peace District 5 ,221 W. Fifth St.,,LaPlace,LA,70068,985-652-6248,ST. JOHN THE BAPTIST,"Donald ""Donoo"" Brady",221 West 5th St.,,LaPlace,LA,70068,985-652-6248,W,M,D,267,12/31/2014,01/01/2009 -Constable ,Justice of the Peace District 6 ,640 Fairway Dr.,,LaPlace,LA,70068,985-652-9659,ST. JOHN THE BAPTIST,Don D. Detillier,640 Fairway Dr.,,LaPlace,LA,70068,985-652-9659,W,M,D,267,12/31/2014,01/01/2009,Mr. Detillier -Constable ,Justice of the Peace District 7 ,377 Highland Dr.,,LaPlace,LA,70068,985-652-8756,ST. JOHN THE BAPTIST,"Keith M. ""Mike"" Bourgeois",377 Highland Drive,,LaPlace,LA,70068,985-652-8756,W,M,D,267,12/31/2014,01/01/2009,Mr. Bourgeois -DPEC Member ,at Large ,,,,LA,,,ST. LANDRY,"""Greg"" Ardoin",192 Grant Rd.,,Opelousas,LA,70570,337-948-6639,W,M,D,054,02/20/2012,02/20/2008,Mr. Ardoin -DPEC Member ,at Large ,,,,LA,,,ST. LANDRY,"Marshall Thibodeaux, ",410 Roosevelt St,,Eunice,LA,70535,,,,,054,,01/20/2010 -DPEC Member ,District 1 ,,,,LA,,,ST. LANDRY,"Alex Darjean, ",254 Darjean St,,Opelousas,LA,70570,,,,,056,,01/20/2010 -DPEC Member ,District 2 ,,,,LA,,,ST. LANDRY,"John K. Hadley, Jr.",587 Hwy 742,,Opelousas,LA,70570,337-407-2333,W,M,D,056,02/20/2012,02/20/2008,Mr. Hadley -DPEC Member ,District 3 ,,,,LA,,,ST. LANDRY,Gregory J. Doucet,631 N. Main St.,,Opelousas,LA,70570,337-948-3500,W,M,D,056,02/20/2012,02/20/2008,Mr. Doucet -DPEC Member ,District 4 ,,,,LA,,,ST. LANDRY,,,,,,,,,,,056 -DPEC Member ,District 5 ,,,,LA,,,ST. LANDRY,,,,,,,,,,,056 -DPEC Member ,District 6 ,,,,LA,,,ST. LANDRY,,,,,,,,,,,056 -DPEC Member ,District 7 ,,,,LA,,,ST. LANDRY,Jason Meche,448 Church Rd.,,Opelousas,LA,70570,337-879-1006,W,M,D,056,02/20/2012,02/20/2008,Mr. Meche -DPEC Member ,District 8 ,,,,LA,,,ST. LANDRY,"James Gates, ",P.O. Drawer 219,,Opelousas,LA,70571,,,,,056,,01/20/2010 -DPEC Member ,District 9 ,,,,LA,,,ST. LANDRY,"Wayne Ardoin, ",734 John Walter Dr.,,Opelousas,LA,70570,,,,,056,,01/20/2010 -DPEC Member ,District 10 ,,,,LA,,,ST. LANDRY,,,,,,,,,,,056 -DPEC Member ,District 11 ,,,,LA,,,ST. LANDRY,,,,,,,,,,,056 -DPEC Member ,District 12 ,,,,LA,,,ST. LANDRY,,,,,,,,,,,056 -DPEC Member ,District 13 ,,,,LA,,,ST. LANDRY,"George Fisher, ",541 Roosevelt St,,Eunice,LA,70535,,,,,056,,01/20/2010 -RPEC Member ,at Large ,,,,LA,,,ST. LANDRY,Willie J. Godchaux,P. O. Box 786,,Port Barre,LA,70577,337-585-0662,W,M,R,064,02/20/2012,02/20/2008,Mr. Goudchaux -RPEC Member ,at Large ,,,,LA,,,ST. LANDRY,James C. Lopez,159 Aspen Ln.,,Opelousas,LA,70570,337-948-6969,W,M,R,064,02/20/2012,02/20/2008,Mr. Lopez -RPEC Member ,at Large ,,,,LA,,,ST. LANDRY,"""Stan"" Muller",1599 Prayer House Rd.,,Opelousas,LA,70570,337-826-3250,W,M,R,064,02/20/2012,02/20/2008,Mr. Muller -RPEC Member ,at Large ,,,,LA,,,ST. LANDRY,Russell P. Pavich,330 South 9th St.,,Eunice,LA,70535,337-546-0494,W,M,R,064,02/20/2012,02/20/2008,Mr. Pavich -RPEC Member ,at Large ,,,,LA,,,ST. LANDRY,Joe Zeringue,225 E. Davis St.,,Opelousas,LA,70570,,,,,064,,08/06/2008,Mr. Zeringue -RPEC Member ,District 1 ,,,,LA,,,ST. LANDRY,Alyshia Boagni,410 S. Court St.,,Opelousas,LA,70570,,,,,066,,07/08/2008 -RPEC Member ,District 2 ,,,,LA,,,ST. LANDRY,JoAnn Caillouet,150 Crestview Dr.,,Opelousas,LA,70570,337-942-5494,,,,066,,07/08/2008,Ms. Caillouet -RPEC Member ,District 3 ,,,,LA,,,ST. LANDRY,Sancha Haysbert-Smith,904 Tensas,,Opelousas,LA,70570,,,,,066,,07/08/2008 -RPEC Member ,District 4 ,,,,LA,,,ST. LANDRY,,,,,,,,,,,066 -RPEC Member ,District 5 ,,,,LA,,,ST. LANDRY,"""Rick"" Ortego",134 Ortego Ln.,,Opelousas,LA,70570,337-942-1600,W,M,R,066,02/20/2012,02/20/2008,Mr. Ortego -RPEC Member ,District 6 ,,,,LA,,,ST. LANDRY,Grantt Guillory,2079 O G Track Rd.,,Port Barre,LA,70577,,,,,066,,08/06/2008,Mr. Guillory -RPEC Member ,District 7 ,,,,LA,,,ST. LANDRY,,,,,,,,,,,066 -RPEC Member ,District 8 ,,,,LA,,,ST. LANDRY,Anna M. Hammons,133 St. Ignatius Cir Cankton,,Sunset,LA,70584,337-739-0921,W,F,R,066,02/20/2012,02/20/2008,Ms. Hammons -RPEC Member ,District 9 ,,,,LA,,,ST. LANDRY,Betty Foret,7929 Hwy. 31,,Opelousas,LA,70570,,,,,066,,07/08/2008,Ms. Foret -RPEC Member ,District 10 ,,,,LA,,,ST. LANDRY,,,,,,,,,,,066 -RPEC Member ,District 11 ,,,,LA,,,ST. LANDRY,Anthony Guillory,134 Hwy. 367,,Eunice,LA,70535,,,,,066,,07/08/2008,Mr. Guillory -RPEC Member ,District 12 ,,,,LA,,,ST. LANDRY,Craig Shilow,461 Corn Ave.,,Eunice,LA,70535,,,,,066,,07/08/2008,Mr. Shilow -RPEC Member ,District 13 ,,,,LA,,,ST. LANDRY,Richard Paul Bertrand,1341 W. Park Blvd.,,Eunice,LA,70535,337-457-8062,W,M,R,066,02/20/2012,02/20/2008,Mr. Bertrand -Sheriff ,,P. O. Box 1029,,Opelousas,LA,70571-0390 ,318-948-6516,ST. LANDRY,Bobby J. Guidroz,P.O. Box 1029,,Opelousas,LA,70571-0390 ,337-585-6424,W,M,D,225,06/30/2012,07/01/2008,Mr. Guidroz -Clerk of Court ,,P. O. Box 750,,Opelousas,LA,70570,337-942-5606,ST. LANDRY,Charles Jagneaux,P. O. Box 750,,Opelousas,LA,70570,337-942-5606,W,M,D,230,06/30/2012,07/01/2008,Mr. Jagneaux -Assessor ,,118 S. Court St. Ste. 230,,Opelousas,LA,70570,337-942-3166,ST. LANDRY,Rhyn L. Duplechain,1821 Alonzo St.,,Opelousas,LA,70570,337-948-4653,W,M,D,235,12/31/2012,01/01/2009,Mr. Duplechain -Coroner ,,200 South 7th Street,,Eunice,LA,70535,337-457-1599,ST. LANDRY,Russell Pavich,330 S. Nineth St.,,Eunice,LA,70535,337-546-0494,W,M,R,240,03/25/2012,03/24/2008,Mr. Pavich -Parish President ,,,,,LA,,,ST. LANDRY,"Donald ""Don"" Menard",372 Credeur Rd.,,Cankton,LA,70584,337-668-4693,W,M,D,243,01/08/2012,01/14/2008,Mr. Menard -Council Member ,District 1 ,P. O. Drawer 1550,,Opelousas,LA,,337-948-3688,ST. LANDRY,"Jerry L. Red, Jr.",465 St. Paul Ave.,,Opelousas,LA,70570,337-543-1054,B,M,D,245,01/08/2012,01/14/2008,Mr. Red -Council Member ,District 2 ,P. O. Drawer 1550,,Opelousas,LA,70571-1550,337-948-3688,ST. LANDRY,Leon E. Robinson,P.O. Box 703,,Opelousas,LA,70571,337-948-1230,B,M,D,245,01/08/2012,01/14/2008,Mr. Robinson -Council Member ,District 3 ,P. O. Drawer 1550,,Opelousas,LA,70571-1550,337-948-3688,ST. LANDRY,Fekisha Miller,1349 Hwy. 749,,Opelousas,LA,70570,337-948-1013,B,F,D,245,01/08/2012,01/14/2008,Ms. Miller -Council Member ,District 4 ,P. O. Drawer 1550,,Opelousas,LA,70571-1550,337-948-3688,ST. LANDRY,Kenneth D. Vidrine,138 Wilson Bridge Rd.,,Washington,LA,70589,337-826-3802,W,M,,245,01/08/2012,01/14/2008,Mr. Vidrine -Council Member ,District 5 ,P. O. Drawer 1550,,Opelousas,LA,70571-1550,337-948-3688,ST. LANDRY,Ronald E. Buschel,5416 Hwy. 10,,Washington,LA,70589,337-826-3868,W,M,D,245,01/08/2012,01/14/2008,Mr. Buschel -Council Member ,District 6 ,P. O. Drawer 1550,,Opelousas,LA,70571-1550,337-948-3688,ST. LANDRY,Hurlin Dupre,P. O. Box 525,,Port Barre,LA,70577,337-585-6388,W,M,D,245,01/08/2012,01/14/2008,Mr. Dupre -Council Member ,District 7 ,P. O. Drawer 1550,,Opelousas,LA,70571-1550,337-948-3688,ST. LANDRY,Albert Hollier,160 Hollier Ln.,,Arnaudville,LA,70512,337-879-2378,W,M,D,245,01/08/2012,01/14/2008,Mr. Hollier -Council Member ,District 8 ,P. O. Drawer 1550,,Opelousas,LA,70571-1550,337-948-3688,ST. LANDRY,"""Pam"" Gautreau",453 Chretien Pt. Rd.,,Sunset,LA,70584,337-662-5176,W,F,D,245,01/08/2012,01/14/2008,Ms. Gautreau -Council Member ,District 9 ,P. O. Drawer 1550,,Opelousas,LA,70571-1550,337-948-3688,ST. LANDRY,"""Glenn"" Stout",5814 Hwy. 182,,Opelousas,LA,70570,337-942-9267,W,M,D,245,01/08/2012,01/14/2008,Mr. Stout -Council Member ,District 10 ,P. O. Drawer 1550,,Opelousas,LA,70571-1550,337-948-3688,ST. LANDRY,Dexter Q. Brown,263 Milton Brown Rd.,,Opelousas,LA,70570,337-407-0862,B,M,D,245,01/08/2012,01/14/2008,Mr. Brown -Council Member ,District 11 ,P. O. Drawer 1550,,Opelousas,LA,70571-1550,337-948-3688,ST. LANDRY,"Claude ""Jay"" Guidry",878 Hwy. 357,,Opelousas,LA,70570,337-948-1895,W,M,D,245,01/08/2012,01/14/2008,Mr. Guidry -Council Member ,District 12 ,P. O. Drawer 1550,,Opelousas,LA,70571-1550,337-948-3688,ST. LANDRY,Jimmie E. Edwards,810 Faris Ave.,,Eunice,LA,70535,337-457-8871,B,M,D,245,01/08/2012,01/14/2008,Mr. Edwards -Council Member ,District 13 ,P. O. Drawer 1550,,Opelousas,LA,70571-1550,337-948-3688,ST. LANDRY,Gary D. Courville,2030 Dudley St.,,Eunice,LA,70535,337-480-3809,W,M,D,245,01/08/2012,01/14/2008,Mr. Courville -City Judge ,"City Court, City of Opelousas ",P. O. Box 1999,,Opelousas,LA,70571-1999,337-948-2570,ST. LANDRY,Vanessa Harris,1015 N. Main St.,,Opelousas,LA,70570,337-948-3801,B,F,D,250,12/31/2014,01/01/2009,Judge Harris -City Marshal ,"City Court, City of Opelousas ",P. O. Box 1999,,Opelousas,LA,70571-1999,337-948-2577,ST. LANDRY,Paul Mouton,234 Anita Dr.,,Opelousas,LA,70570,337-945-7609,B,M,D,250,12/31/2014,01/01/2009,Marshal Mouton -Member of School Board ,District 1 ,P. O. Box 310,,Opelousas,LA,70571-0310 ,337-948-3657,ST. LANDRY,Anthony Standberry,277 Summner Rd.,,Opelousas,LA,70570,337-543-7582,B,M,D,255,12/31/2010,01/01/2007,Mr. Standbury -Member of School Board ,District 2 ,P. O. Box 310,,Opelousas,LA,70571-0310 ,337-948-3657,ST. LANDRY,Elinor Nacoste Eaglin,1055 Hwy. 742,,Opelousas,LA,70570,942-7098,B,F,D,255,12/31/2010,01/01/2007,Mr. Eaglin -Member of School Board ,District 3 ,P. O. Box 310,,Opelousas,LA,70571-0310 ,337-948-3657,ST. LANDRY,John Miller,1182 Hwy. 749,,Opelousas,LA,70570,337-948-1982,B,M,D,255,12/31/2010,01/01/2007,Mr. Miller -Member of School Board ,District 4 ,P. O. Box 310,,Opelousas,LA,70571-0310 ,337-948-3657,ST. LANDRY,"Dillard ""Butch"" Deville",4440 Grand Prairie Hwy.,,Washington,LA,70589,826-3367,W,M,D,255,12/31/2010,01/01/2007,Mr. Deville -Member of School Board ,District 5 ,P. O. Box 310,,Opelousas,LA,70571-0310 ,337-948-3657,ST. LANDRY,"Marx ""Sonny"" Budden",P.O. Box 137,,Palmetto,LA,71358,337-623-4782,W,M,D,255,12/31/2010,01/01/2007,Mr. Budden -Member of School Board ,District 6 ,P. O. Box 310,,Opelousas,LA,70571-0310 ,337-948-3657,ST. LANDRY,Ronald Carriere,P. O. 211,,Port Barre,LA,70577,337-585-6240,W,M,D,255,12/31/2010,01/01/2007,Mr. Carriere -Member of School Board ,District 7 ,P. O. Box 310,,Opelousas,LA,70571-0310 ,337-948-3657,ST. LANDRY,Huey J. Wyble,P.O. Box 446,,Arnaudville,LA,70512,754-5865,W,M,D,255,12/31/2010,01/01/2007,Mr. Wyble -Member of School Board ,District 8 ,P. O. Box 310,,Opelousas,LA,70571-0310 ,337-948-3657,ST. LANDRY,Kyle C. Boss,P.O. Box 301,,Sunset,LA,70584,337-668-4444,W,M,D,255,12/31/2010,01/01/2007,Mr. Boss -Member of School Board ,District 9 ,P. O. Box 310,,Opelousas,LA,70571-0310 ,337-948-3657,ST. LANDRY,Scott Richard,209 Harry Guilbeau Rd.,,Opelousas,LA,70570,337-948-5002,W,M,O,255,12/31/2010,01/01/2007,Mr. Richard -Member of School Board ,District 10 ,P. O. Box 310,,Opelousas,LA,70571-0310 ,337-948-3657,ST. LANDRY,Quincy Richard,180 Trinity Rd.,,Opelousas,LA,70570,337-942-4832,B,M,D,255,12/31/2010,01/01/2007,Qunicy Richard -Member of School Board ,District 11 ,P. O. Box 310,,Opelousas,LA,70571-0310 ,337-948-3657,ST. LANDRY,Roger Young,137 Rozas Rd.,,Eunice,LA,70535,337-457-5013,W,M,R,255,12/31/2010,01/01/2007,Mr. Young -Member of School Board ,District 12 ,P. O. Box 310,,Opelousas,LA,70571-0310 ,337-948-3657,ST. LANDRY,Josie Frank,651 Faris Ave.,,Eunice,LA,70535,337-457-5607,B,F,D,255,12/31/2010,01/01/2007,Mr. Frank -Member of School Board ,District 13 ,P. O. Box 310,,Opelousas,LA,70571-0310 ,337-948-3657,ST. LANDRY,Harry B. Fruge,1220 B & B Ave,,Eunice,LA,70535,337-457-5970,W,M,D,255,12/31/2010,01/01/2007,Mr. Fruge -Justice of the Peace ,Justice of the Peace District 4 ,P.O. Box 375,,Leonville,LA,70551,337-662-3902,ST. LANDRY,Robert E. Fruge,P.O. Box 375,,Grand Coteau,LA,70541,337-662-3902,W,M,,265,12/31/2014,01/01/2009,Mr. Fruge -Justice of the Peace ,Justice of the Peace District 5 ,476 Main St.,,Cankton,LA,70584,337-668-4310,ST. LANDRY,Scurdy Menard,476 Main St.,,Cankton,LA,70584,337-668-4310,W,M,D,265,12/31/2014,01/01/2009,Mr. Menard -Justice of the Peace ,Justice of the Peace District 7 ,P.O. Box 101,,Krotz Springs,LA,70750,337-566-3795,ST. LANDRY,"Geraldine ""Gerry"" Schexnayder",P.O. Box 101,,Krotz Springs,LA,70750,337-566-3795,W,F,D,265,12/31/2014,01/01/2009,Ms. Schexnayder -Justice of the Peace ,Justice of the Peace District 8 ,P.O. Box 461,,Port Barre,LA,70577,337-585-7466,ST. LANDRY,"""Liz"" Hutchins Ferguson",P.O. Box 1480,,Port Barre,LA,70577,337-351-0023,W,F,,265,12/31/2014,08/24/2009,Ms. Ferguson -Justice of the Peace ,Justice of the Peace District 9 ,8118 Hwy.71,,Washington,LA,70589,337-623-5903,ST. LANDRY,Geneva Motte Lemon,P.O. Box 172,,Lebeau,LA,71345,337-623-5909,B,F,D,265,12/31/2014,01/01/2009,Ms. Lemon -Justice of the Peace ,Justice of the Peace District 10 ,P.O. Box 132,,Lebeau,LA,71345,318-346-4116,ST. LANDRY,Ellis Peyton,P.O. Box 132,,Lebeau,LA,71345-0132 ,318-346-4116,W,M,D,265,12/31/2014,01/01/2009,Mr. Peyton -Justice of the Peace ,Justice of the Peace District 12 ,18065 Hwy.182,,Bunkie,LA,71322,318-838-2493,ST. LANDRY,Larry Lafleur,18065 Hwy. 182,,Bunkie,LA,71322,318-838-2493,W,M,R,265,12/31/2014,01/01/2009,Mr. Lafleur -Justice of the Peace ,Justice of the Peace District 13 ,913 Hwy.363,,Washington,LA,70589,337-826-8858,ST. LANDRY,Gloria D. Fontenot,913 Hwy. 363,,Washington,LA,70589,337-826-8858,W,F,O,265,12/31/2014,01/01/2009,Ms. Fontenot -Justice of the Peace ,Justice of the Peace District 18 ,705 Acadiana Rd.,,Opelousas,LA,70570,337-543-6787,ST. LANDRY,Clyde J. Fontenot,690 Patty St.,,Opelousas,LA,70570,337-543-6244,W,M,D,265,12/31/2014,01/01/2009,Mr. Fontenot -Justice of the Peace ,Justice of the Peace District 19 ,518 Bourque Rd.,,Church Point,LA,70525,337-948-7043,ST. LANDRY,Melissa F. Labbe,1410 Noel Rd.,,Church Point,LA,70525,337-684-5796,W,F,D,265,12/31/2014,01/01/2009,Ms. Labbe -Justice of the Peace(s) ,Justice of the Peace District 6 ,P.O. BOX 617,,Arnaudville,LA,70512,337-754-7190,ST. LANDRY,Tina Rivette LaGrange,P.O. Box 617,,Arnaudville,LA,70512,337-754-7190,W,F,D,265,12/31/2014,01/01/2009,Ms. LaGrange -Justice of the Peace(s) ,Justice of the Peace District 6 ,P.O. BOX 617,,Arnaudville,LA,70512,337-754-7190,ST. LANDRY,Linda Stelly,7420 Hwy. 93,,Arnaudville,LA,70512,337-662-3919,W,F,D,265,12/31/2014,01/01/2009,Ms. Stelly -Justice of the Peace(s) ,Justice of the Peace District 11 ,P.O. Box 357,,Washington,LA,70589,337-826-7429,ST. LANDRY,"Lou Dean O. Bordelon, ",P.O. Box 357,,Washington,LA,70589,337-826-7429,W,F,O,265,12/31/2014,01/01/2009,Ms. Bordelon -Justice of the Peace(s) ,Justice of the Peace District 11 ,P.O. Box 357,,Washington,LA,70589,337-826-7429,ST. LANDRY,Lee R. Darbonne,205 Flamingo Ln.,,Opelousas,LA,70570,337-826-7633,W,M,O,265,12/31/2014,01/01/2009,Mr. Darbonne -Constable ,Justice of the Peace District 4 ,103 Turf Ln.,,Carencro,LA,70520,337-662-5545,ST. LANDRY,Ronald Dugas,407 Pellerin Rd.,,Sunset,LA,70584,337-662-5042,W,M,D,267,12/31/2014,01/01/2009,Mr. Dugas -Constable ,Justice of the Peace District 5 ,3970 Osage Trail,,Church Point,LA,70525,337-668-4299,ST. LANDRY,Ricky J. Comeaux,3970 Osage Trail,,Church Point,LA,70525,337-668-4299,W,M,D,267,12/31/2014,01/01/2009,Mr. Comeaux -Constable ,Justice of the Peace District 7 ,P.O. Box 111,,Melville,LA,71353,337-623-3916,ST. LANDRY,"Jeffery ""Bodeen"" Rose",P.O. Box 50,,Melville,LA,71353,337-623-3723,B,M,D,267,12/31/2014,01/01/2009,Mr. Rose -Constable ,Justice of the Peace District 8 ,P.O. Box 1163,,Port Barre,LA,70577,337-585-6542,ST. LANDRY,Carl Hardy,P.O. Box 311,,Port Barre,LA,70577,337-347-2180,B,M,,267,12/31/2014,08/24/2009,Mr. Hardy -Constable ,Justice of the Peace District 9 ,209 Carmons Rd.,,Palmetto,LA,71358,337-585-7491,ST. LANDRY,"Larry O. Moore, Sr.",P.O. Box 26,,Palmetto,LA,71358,337-623-5538,B,M,D,267,12/31/2014,01/01/2009,Mr. Moore -Constable ,Justice of the Peace District 10 ,10629 Hwy. 71,,Bunkie,LA,71322,318-346-6124,ST. LANDRY,"Floyd J. Moran, Sr.",10629 Hwy. 71,,Bunkie,LA,71322,318-346-6124,W,M,D,267,12/31/2014,01/01/2009,Mr. Moran -Constable ,Justice of the Peace District 12 ,19771 Hwy. 182,,Bunkie,LA,71322,337-838-2443,ST. LANDRY,Joyce Stagg Whaley,850 Cotton Patch Rd.,,Bunkie,LA,71322-4928,337-826-7952,W,F,R,267,12/31/2014,01/01/2009,Ms. Whaley -Constable ,Justice of the Peace District 13 ,3360 Grand Prairie Hwy.,,Washington,LA,70589,337-826-7512,ST. LANDRY,Sherron Roberie,3360 Grand Prairie Hwy.,,Washington,LA,70589-4028,337-826-7512,W,M,O,267,12/31/2014,01/01/2009,Mr. Roberie -Constable ,Justice of the Peace District 18 ,868 Jesse B Rd.,,Church Point,LA,70525,337-543-6629,ST. LANDRY,"Eddie ""Chalk"" Thibodeaux",P.O. Box 159,,Lawtell,LA,70550-0159 ,337-543-5214,W,M,D,267,12/31/2014,01/01/2009,Mr. Thibodaux -Constable ,Justice of the Peace District 19 ,518 Bourque Rd.,,Church Point,LA,70525,337-948-7043,ST. LANDRY,Watson J. Champagne,518 Bourque Rd.,,Church Point,LA,70525,337-948-7043,W,M,D,267,12/31/2014,01/01/2009,Mr. Champagne -Constable(s) ,Justice of the Peace District 6 ,2864 Hwy. 31,,Arnaudville,LA,70512,337-879-2533,ST. LANDRY,Judy D. Meche,2864 Hwy. 31,,Arnaudville,LA,70512,337-879-2533,W,F,D,267,12/31/2014,01/01/2009,Ms. Meche -Constable(s) ,Justice of the Peace District 6 ,2864 Hwy. 31,,Arnaudville,LA,70512,337-879-2533,ST. LANDRY,"""Leo"" Meche",2864 Hwy. 31,,Arnaudville,LA,70512,337-879-2533,W,M,D,267,12/31/2014,01/01/2009,Mr. Meche -Constable(s) ,Justice of the Peace District 11 ,226 W. Hill St.,,Washington,LA,70589,337-942-7687,ST. LANDRY,"Charles R. ""Charlie Bill"" Soileau",P.O. Box 206,,Washington,LA,70589,337-692-3011,W,M,D,267,12/31/2014,01/01/2009,Mr. Soileau -Constable(s) ,Justice of the Peace District 11 ,226 W. Hill St.,,Washington,LA,70589,337-942-7687,ST. LANDRY,"James ""Jimmy"" Soileau",463 Deprimo Ln.,,Opelousas,LA,70570,337-942-7939,W,M,O,267,12/31/2014,01/01/2009,Mr. Soileau -Mayor ,City of Opelousas ,P. O. Box 1879,,Opelousas,LA,,337-948-2520,ST. LANDRY,"Donald ""Don"" Cravins, Sr.",P.O. Box 1879,,Opelousas,LA,70571,337-948-4287,B,M,D,300,12/31/2010,01/01/2007,Mr. Cravins -Mayor ,Town of Grand Coteau ,P. O. Drawer G,,Grand Coteau,LA,,337-662-5246,ST. LANDRY,"""Gail"" Lark",P.O. Box 462,,Grand Coteau,LA,70541,337-662-5826,W,F,D,300,12/31/2010,01/01/2007,Mayor Lark -Mayor ,Town of Krotz Springs ,P. O. Box 218,,Krotz Springs,LA,,337-566-2322,ST. LANDRY,Gary Soileau,P.O. Box 441,,Krotz Springs,LA,70750,337-566-2244,W,M,D,300,12/31/2010,01/01/2007,Mr. Soileau -Mayor ,Town of Leonville ,P. O. Box 57,,Leonville,LA,,337-879-2601,ST. LANDRY,"Joel Lanclos, Jr.",P.O. Box 116,,Leonville,LA,70551,337-879-2556,W,M,D,300,12/31/2010,01/01/2007,Mr. Lanclos -Mayor ,Town of Melville ,P. O. Box 268,,Melville,LA,,337-623-4226,ST. LANDRY,"""Pam"" Cannatella",P.O. Box 523,,Melville,LA,71353,337-623-4650,W,F,D,300,12/31/2010,01/01/2007,Ms. Cannatella -Mayor ,Town of Port Barre ,P. O. Box 219,,Port Barre,LA,,337-585-7646,ST. LANDRY,"""Gil"" Savoy, Jr.",P.O. Box 358,,Port Barre,LA,70577,337-585-7655,W,M,D,300,12/31/2010,01/01/2007,Mayor Savoy -Mayor ,Town of Sunset ,855 Napoleon Ave.,,Sunset,LA,,337-662-5296,ST. LANDRY,Cecil LaVergne,P.O. Box 417,,Sunset,LA,70584,337-523-6241,W,M,D,300,12/31/2010,01/01/2007,Mayor LaVergne -Mayor ,Town of Washington ,P. O. Box 218,,Washington,LA,,337-826-3626,ST. LANDRY,"Joseph ""Joe"" Pitre",P.O. Box 334,,Washington,LA,70589,,B,M,D,300,12/31/2010,01/01/2007,Mayor Pitre -Mayor ,Village of Cankton ,107 Dandurand St.,,Cankton,LA,,337-668-4456,ST. LANDRY,"""Susan"" Menard",372 Credeur Rd.,,Cankton,LA,70584,337-668-4693,W,F,D,300,12/31/2010,01/01/2007,Ms. Menard -Mayor ,Village of Palmetto ,P. O. Box 97,,Palmetto,LA,,337-623-4426,ST. LANDRY,"""Jeff"" Benhard, II",P.O. Box 212,,Palmetto,LA,71358,337-623-2067,W,M,R,300,12/31/2010,07/21/2008,Mayor Benhard -Chief of Police ,City of Opelousas ,P. O. Box 1879,,Opelousas,LA,70571,337-948-2520,ST. LANDRY,Perry Gallow,318 N. Court St.,,Opelousas,LA,70570,337-948-2500,B,M,D,305,12/31/2010,01/01/2007,Mr. Gallow -Chief of Police ,Town of Grand Coteau ,P. O. Drawer G,,Grand Coteau,LA,70541,337-662-5246,ST. LANDRY,Margaret R. Coco,P.O. Box 196,,Grand Coteau,LA,70541,337-662-3667,B,F,D,305,12/31/2010,01/01/2007,Ms. Coco -Chief of Police ,Town of Krotz Springs ,P. O. Box 218,,Krotz Springs,LA,70750,337-566-2322,ST. LANDRY,"Wanda ""Susie"" Lacassin",P.O. Box 571,,Krotz Springs,LA,70750,337-566-8863,W,F,D,305,12/31/2010,01/01/2007,Ms. Lacassin -Chief of Police ,Town of Leonville ,P. O. Box 57,,Leonville,LA,70551,337-879-2601,ST. LANDRY,"Dalton ""Pemo"" Brown",P.O. Box 359,,Leonville,LA,70551,337-879-2856,B,M,D,305,12/31/2010,01/01/2007,Mr. Brown -Chief of Police ,Town of Melville ,P. O. Box 268,,Melville,LA,71353,337-623-4226,ST. LANDRY,John McKeel,P.O. Box 572,,Melville,LA,71353,337-623-5806,B,M,D,305,12/31/2010,01/01/2007,Mr. McKell -Chief of Police ,Town of Port Barre ,P. O. Box 219,,Port Barre,LA,70577,337-585-7646,ST. LANDRY,Deon Boudreaux,P.O. Box 1318,,Port Barre,LA,70577,337-447-0499,W,M,,305,12/31/2010,02/20/2008,Chief Boudreaux -Chief of Police ,Town of Sunset ,855 Napoleon Ave.,,Sunset,LA,70584,337-662-5296,ST. LANDRY,Alexcie Guillory,P.O. Box 15,,Sunset,LA,70584,337-351-2082,B,M,D,305,12/31/2010,01/01/2007,Chief Guillory -Chief of Police ,Town of Washington ,P. O. Box 218,,Washington,LA,70589,337-826-3626,ST. LANDRY,John Offord,P.O. Box 332,,Washington,LA,70589,337-826-3954,B,M,D,305,12/31/2010,01/01/2007,Chief Offord -Chief of Police ,Village of Cankton ,107 Dandurand St.,,Cankton,LA,70584,337-668-4456,ST. LANDRY,Heath Treadway,448 Main St. Cankton #10,,Sunset,LA,70584,337-288-2345,W,M,R,305,12/31/2010,01/01/2007,Mr. Treadway -Chief of Police ,Village of Palmetto ,P. O. Box 97,,Palmetto,LA,71358,337-623-4426,ST. LANDRY,David Krull,P.O. Box 101,,Palmetto,LA,71358,337-945-8218,W,M,D,305,12/31/2010,08/24/2009,Chief Krull -Alderman at Large ,City of Opelousas ,,,,LA,,,ST. LANDRY,Harvey Darbonne,2506 Linwood Loop,,Opelousas,LA,70570,337-948-3900,B,M,D,308,12/31/2010,01/01/2007,Mr. Darbonne -Alderman at Large ,Town of Sunset ,,,,LA,,,ST. LANDRY,Bernice Richard Smith,P.O. Box 1421,,Sunset,LA,70584,337-662-3732,B,F,D,308,12/31/2010,01/01/2007,Ms. Smith -Alderman at Large ,Town of Washington ,P. O. Box 218,,Washington,LA,70589,337-826-3626,ST. LANDRY,Mona C. Wilson,P.O. Box 632,,Washington,LA,70589,337-212-1127,B,F,D,308,12/31/2010,01/01/2007,Ms. Wilson -Alderman ,"District 1, Town of Sunset ",855 Napoleon Ave.,,Sunset,LA,70584,337-662-5296,ST. LANDRY,Joseph Ewell Meche,133 B O St.,,Sunset,LA,70584,662-3084,B,M,D,310,12/31/2010,01/01/2007,Mr. Meche -Alderman ,"District 1, Town of Washington ",P. O. Box 218,,Washington,LA,70589,337-826-3626,ST. LANDRY,Gary J. Wilson,P.O. Box 293,,Washington,LA,70589,337-412-2061,W,M,D,310,12/31/2010,01/01/2007,Mr. Wilson -Alderman ,"District 2, Town of Sunset ",855 Napoleon Ave.,,Sunset,LA,70584,337-662-5296,ST. LANDRY,"Dalton ""Bulla"" Belson, Jr.",P.O. Box 136,,Sunset,LA,70584,337-662-3354,B,M,D,310,12/31/2010,01/01/2007,Mr. Belson -Alderman ,"District 2, Town of Washington ",P. O. Box 218,,Washington,LA,70589,337-826-3626,ST. LANDRY,Wilson Doomes,P.O. Box 551,,Washington,LA,70589,337-351-5623,B,M,D,310,12/31/2010,01/01/2007,Mr. Doomes -Alderman ,"District 3, Town of Sunset ",855 Napoleon Ave.,,Sunset,LA,70584,337-662-5296,ST. LANDRY,"Charles ""Cha-Cha"" James",590 Pershing Hwy.,,Sunset,LA,70584,337-662-3298,B,M,D,310,12/31/2010,01/01/2007,Mr. James -Alderman ,"District 3, Town of Washington ",P. O. Box 218,,Washington,LA,70589,337-826-3626,ST. LANDRY,Laura Budden Allegood,P.O. Box 744,,Washington,LA,70589,337-826-3274,W,F,D,310,12/31/2010,11/27/2007,Ms. Allegood -Alderman ,"District 4, Town of Sunset ",855 Napoleon Ave.,,Sunset,LA,70584,337-662-5296,ST. LANDRY,Melanie White,185 Hummingbird Ln.,,Sunset,LA,70584,337-662-3918,W,F,R,310,12/31/2010,01/01/2007,Mr. White -Alderman ,"District 4, Town of Washington ",P. O. Box 218,,Washington,LA,70589,337-826-3626,ST. LANDRY,"Wilbert ""Bobby"" Ledet",P.O. Box 241,,Washington,LA,70589,337-826-7265,B,M,D,310,12/31/2010,01/01/2007,Mr. Ledet -Alderman ,"District A, City of Opelousas ",P. O. Box 1879,,Opelousas,LA,70571,337-948-2520,ST. LANDRY,Julius Alsandor,P. O. Box 417,,Opelousas,LA,70571,337-278-9501,B,M,D,310,12/31/2010,05/12/2009,Mr. Alsandor -Alderman ,"District A, Town of Krotz Springs ",P. O. Box 218,,Krotz Springs,LA,70750,337-566-2322,ST. LANDRY,"""Keith"" Ardoin",P.O. Box 566,,Krotz Springs,LA,70750,337-566-8823,W,M,D,310,12/31/2010,01/01/2007,Mr. Ardoin -Alderman ,"District B, City of Opelousas ",P. O. Box 1879,,Opelousas,LA,70571,337-948-2520,ST. LANDRY,"Louis Butler, Jr.",404 W. Church St.,,Opelousas,LA,70570,337-942-8248,B,M,D,310,12/31/2010,01/01/2007,Mr. Butler -Alderman ,"District B, Town of Krotz Springs ",,,,LA,,,ST. LANDRY,"William ""Bill"" Bryson",P.O. Box 254,,Krotz Springs,LA,70750,337-566-2237,W,M,D,310,12/31/2010,01/01/2007,Mr. Bryson -Alderman ,"District C, City of Opelousas ",P. O. Box 1879,,Opelousas,LA,70571,337-948-2520,ST. LANDRY,"""Dale"" Pefferkorn",728 Abdalla Blvd.,,Opelousas,LA,70570,948-8433,W,M,D,310,12/31/2010,01/01/2007,Mr. Pefferkorn -Alderman ,"District C, Town of Krotz Springs ",,,,LA,,,ST. LANDRY,Tony Collette,P.O. Box 205,,Krotz Springs,LA,70750,337-566-3413,W,M,D,310,12/31/2010,01/01/2007,Mr. Collette -Alderman ,"District D, City of Opelousas ",P. O. Box 1879,,Opelousas,LA,70571,337-948-2520,ST. LANDRY,"Reginald ""Reggie"" Tatum",P. O. Box 1084,,Opelousas,LA,70571,337-331-4454,B,M,D,310,12/31/2010,11/14/2008,Mr. Tatum -Alderman ,"District D, Town of Krotz Springs ",,,,LA,,,ST. LANDRY,Mary Lou Lacassin,P.O. Box 394,,Krotz Springs,LA,70750,337-566-3463,W,F,D,310,12/31/2010,01/01/2007,Ms. Lacassin -Alderman ,"District E, City of Opelousas ",P. O. Box 1879,,Opelousas,LA,70571,337-948-2520,ST. LANDRY,Jacqueline M. Martin,1622 Evans St.,,Opelousas,LA,70570,942-8799,B,F,D,310,12/31/2010,01/01/2007,Ms. Martin -Alderman ,"District E, Town of Krotz Springs ",,,,LA,,,ST. LANDRY,Donald Williams,P.O. Box 318,,Krotz Springs,LA,70750,566-2243,W,M,D,310,12/31/2010,01/01/2007,Mr. Williams -Alderman ,Town of Grand Coteau ,P. O. Drawer G,,Grand Coteau,LA,70541,337-662-5246,ST. LANDRY,Pamela V. Barriere,P.O. Box 109,,Grand Coteau,LA,70541,337-258-2600,B,F,D,310,12/31/2010,01/01/2007,Ms. Barriere -Alderman ,Town of Grand Coteau ,P. O. Drawer G,,Grand Coteau,LA,70541,337-662-5246,ST. LANDRY,Wilton Guidry,P.O. Box 457,,Grand Coteau,LA,70541,337-662-3484,B,M,D,310,12/31/2010,01/01/2007,Mr. Guidry -Alderman ,Town of Grand Coteau ,P. O. Drawer G,,Grand Coteau,LA,70541,337-662-5246,ST. LANDRY,"Shaterral ""Terra"" Johnson",P.O. Box 392,,Sunset,LA,70584,337-255-5919,B,F,D,310,12/31/2010,01/01/2007,Ms. Johnson -Alderman ,Town of Grand Coteau ,P. O. Drawer G,,Grand Coteau,LA,70541,337-662-5246,ST. LANDRY,John Lewis,P.O. Box 265,,Grand Coteau,LA,70541,337-662-5156,B,M,D,310,12/31/2010,01/01/2007,Mr. Lewis -Alderman ,Town of Grand Coteau ,P. O. Drawer G,,Grand Coteau,LA,70541,337-662-5246,ST. LANDRY,"John ""T-John"" Slaughter",P.O. Box 131,,Grand Coteau,LA,70541,337-781-7912,W,M,D,310,12/31/2010,01/01/2007,Mr. Slaughter -Alderman ,Town of Port Barre ,P. O. Box 219,,Port Barre,LA,70577,337-585-7646,ST. LANDRY,Keith LeJeune,P.O. Box 614,,Port Barre,LA,70577,337-585-6471,W,M,R,310,12/31/2010,01/01/2007,Keith LeJeune -Alderman ,Town of Port Barre ,P. O. Box 219,,Port Barre,LA,70577,337-585-7646,ST. LANDRY,"Ken ""TUSI"" Marks",P.O. Box 692,,Port Barre,LA,70577,585-6441,W,M,D,310,12/31/2010,01/01/2007,Mr. Marks -Alderman ,Town of Port Barre ,P. O. Box 219,,Port Barre,LA,70577,337-585-7646,ST. LANDRY,Richard Mobile,P.O. Box 213,,Port Barre,LA,70577,337-351-2980,W,M,D,310,12/31/2010,01/01/2007,Mr. Mobile -Alderman ,Town of Port Barre ,P. O. Box 219,,Port Barre,LA,70577,337-585-7646,ST. LANDRY,Paula Roberts Sharkey,P.O. Box 58,,Port Barre,LA,70577,337-585-0392,W,M,,310,12/31/2010,01/01/2007,Ms. Sharkey -Alderman ,Town of Port Barre ,P. O. Box 219,,Port Barre,LA,70577,337-585-7646,ST. LANDRY,"""Bobby"" Soileau",P.O. Box 578,,Port Barre,LA,70577,585-6207,W,M,D,310,12/31/2010,01/01/2007,Mr. Soileau -Alderman ,Village of Cankton ,107 Dandurand St.,,Cankton,LA,70584,337-668-4456,ST. LANDRY,Kevin J. Colligan,"634 Savoie Rd., Cankton",,Sunset,LA,70584,337-224-1214,W,M,,310,12/31/2010,01/01/2007,Mr. Colligan -Alderman ,Village of Cankton ,107 Dandurand St.,,Cankton,LA,70584,337-668-4456,ST. LANDRY,"""Bart"" Daigle","680 Savoie Rd., Cankton",,Sunset,LA,70584,337-668-4594,W,M,D,310,12/31/2010,01/01/2007,Mr. Daigle -Alderman ,Village of Cankton ,107 Dandurand St.,,Cankton,LA,70584,337-668-4456,ST. LANDRY,"Camille ""Junior"" Menard","792 Main St., Cankton",,Sunset,LA,70584,337-668-4467,W,M,D,310,12/31/2010,01/01/2007,Mr. Menard -Alderman ,Village of Palmetto ,P. O. Box 97,,Palmetto,LA,71358,337-623-4426,ST. LANDRY,Debra Lynn Coulon,P.O. Box 163,,Palmetto,LA,71358,337-592-3605,W,F,,310,12/31/2010,08/24/2009,Ms. Coulon -Alderman ,Village of Palmetto ,P. O. Box 97,,Palmetto,LA,71358,337-623-4426,ST. LANDRY,Judy S. Dupre,P.O. Box 46,,Palmetto,LA,71358,337-623-4731,W,F,D,310,12/31/2010,01/01/2007,Ms. Dupre -Alderman ,Village of Palmetto ,P. O. Box 97,,Palmetto,LA,71358,337-623-4426,ST. LANDRY,Nelene Guidroz,P.O. Box 74,,Palmetto,LA,71358,337-945-1512,W,M,D,310,12/31/2010,01/01/2007,Ms. Guidroz -Council Member ,Town of Leonville ,P. O. Box 57,,Leonville,LA,70551,337-879-2601,ST. LANDRY,"""Nick"" Degueyter",P.O. Box 442,,Arnaudville,LA,70512,337-879-7026,W,M,R,310,12/31/2010,01/01/2007,Mr. Degueyter -Council Member ,Town of Leonville ,P. O. Box 57,,Leonville,LA,70551,337-879-2601,ST. LANDRY,"""Gayle"" Briley Falcon",211 Hummingbird Ln.,,Opelousas,LA,70570,337-879-0111,W,F,D,310,12/31/2010,01/01/2007,Ms. Falcon -Council Member ,Town of Leonville ,P. O. Box 57,,Leonville,LA,70551,337-879-2601,ST. LANDRY,Brandon Gil,P.O. Box 194,,Leonville,LA,70551,879-7295,W,M,D,310,12/31/2010,01/01/2007,Mr. Gil -Council Member ,Town of Leonville ,P. O. Box 57,,Leonville,LA,70551,337-879-2601,ST. LANDRY,Jason Meche,448 Church Rd.,,Opelousas,LA,70570,337-298-5705,W,M,D,310,12/31/2010,08/24/2009,Mr. Meche -Council Member ,Town of Leonville ,P. O. Box 57,,Leonville,LA,70551,337-879-2601,ST. LANDRY,Kerry J. Willingham,P.O. Box 118,,Leonville,LA,70551,945-2926,W,M,D,310,12/31/2010,01/01/2007,Mr. Willingham -Council Member ,Town of Melville ,P. O. Box 268,,Melville,LA,71353,337-623-4226,ST. LANDRY,Marshall Bertrand,P.O. Box 141,,Melville,LA,71353,337-623-0336,W,M,R,310,12/31/2010,01/01/2007,Mr. Bertrand -Council Member ,Town of Melville ,P. O. Box 268,,Melville,LA,71353,337-623-4226,ST. LANDRY,"Veronica ""Connie"" LeBlanc",P.O. Box 293,,Melville,LA,71353,337-623-9992,W,F,D,310,12/31/2010,01/01/2007,Ms. LeBlanc -Council Member ,Town of Melville ,P. O. Box 268,,Melville,LA,71353,337-623-4226,ST. LANDRY,Denise Oliney Rose,P.O. Box 357,,Melville,LA,71353,337-623-3723,B,F,D,310,12/31/2010,01/01/2007,Ms. Rose -Council Member ,Town of Melville ,P. O. Box 268,,Melville,LA,71353,337-623-4226,ST. LANDRY,"""Ed"" Triplett",P. O. Box 12,,Melville,LA,71353,337-623-4222,W,M,D,310,12/31/2010,11/14/2008,Mr. Triplett -Council Member ,Town of Melville ,P. O. Box 268,,Melville,LA,71353,337-623-4226,ST. LANDRY,Christine M. Vaughns,P.O. Box 454,,Melville,LA,71353,337-658-8566,B,F,D,310,12/31/2010,01/01/2007,Ms. Vaughns -DPEC Member ,at Large ,,,,LA,,,ST. MARTIN,Melissa Castille,P.O. Box 136,,St. Martinville,LA,70582,337-394-6181,W,F,D,054,02/20/2012,02/20/2008,Ms. Castille -DPEC Member ,at Large ,,,,LA,,,ST. MARTIN,Mardy J. Guidry,1021 Roma St.,,Breaux Bridge,LA,70517,337-212-4662,W,M,D,054,02/20/2012,02/20/2008,Mr. Guidry -DPEC Member ,at Large ,,,,LA,,,ST. MARTIN,Christy Hebert,1039 Conde Rd.,,St. Martinville,LA,70582,337-394-5598,W,F,D,054,02/20/2012,02/20/2008,Ms. Hebert -DPEC Member ,District 1 ,,,,LA,,,ST. MARTIN,Dolores L. Bourda,1004 Mustang Cir.,,St. Martinville,LA,70582,337-394-4487,B,F,D,056,02/20/2012,02/20/2008,Ms. Bourda -DPEC Member ,District 2 ,,,,LA,,,ST. MARTIN,Melba D. Braud,7134 Main Hwy.,,St. Martinville,LA,70582,337-394-3252,B,F,D,056,02/20/2012,02/20/2008,Ms. Braud -DPEC Member ,District 3 ,,,,LA,,,ST. MARTIN,Odell Trahan,1053 Big Apple Ln.,,St. Martinville,LA,70582,337-394-3302,B,M,D,056,02/20/2012,02/20/2008,Mr. Trahan -DPEC Member ,District 4 ,,,,LA,,,ST. MARTIN,Mary Kately Jones,1394 BBSH Rd.,,Breaux Bridge,LA,70517,337-845-4316,B,F,D,056,02/20/2012,02/20/2008,Ms. Jones -DPEC Member ,District 5 ,,,,LA,,,ST. MARTIN,,,,,,,,,,,056 -DPEC Member ,District 6 ,,,,LA,,,ST. MARTIN,,,,,,,,,,,056 -DPEC Member ,District 7 ,,,,LA,,,ST. MARTIN,,,,,,,,,,,056 -DPEC Member ,District 8 ,,,,LA,,,ST. MARTIN,,,,,,,,,,,056 -DPEC Member ,District 9 ,,,,LA,,,ST. MARTIN,,,,,,,,,,,056 -RPEC Member ,at Large ,,,,LA,,,ST. MARTIN,Lottie P. Beebe,525 Clause Dr.,,Breaux Bridge,LA,70517,337-442-6650,W,F,R,064,02/20/2012,02/20/2008,Ms. Lottie -RPEC Member ,at Large ,,,,LA,,,ST. MARTIN,Rose Knott,1094 Bushville Hwy.,,Arnaudville,LA,70512,337-754-9980,W,F,R,064,02/20/2012,02/20/2008,Ms. Knott -RPEC Member ,District 1 ,,,,LA,,,ST. MARTIN,,,,,,,,,,,066 -RPEC Member ,District 2 ,,,,LA,,,ST. MARTIN,,,,,,,,,,,066 -RPEC Member ,District 3 ,,,,LA,,,ST. MARTIN,,,,,,,,,,,066 -RPEC Member ,District 4 ,,,,LA,,,ST. MARTIN,,,,,,,,,,,066 -RPEC Member ,District 5 ,,,,LA,,,ST. MARTIN,,,,,,,,,,,066 -RPEC Member ,District 6 ,,,,LA,,,ST. MARTIN,,,,,,,,,,,066 -RPEC Member ,District 7 ,,,,LA,,,ST. MARTIN,,,,,,,,,,,066 -RPEC Member ,District 8 ,,,,LA,,,ST. MARTIN,,,,,,,,,,,066 -RPEC Member ,District 9 ,,,,LA,,,ST. MARTIN,,,,,,,,,,,066 -Sheriff ,,P. O. Box 247,,St. Martinville,LA,70582,318-394-3071,ST. MARTIN,"Ronald J. ""Ronny"" Theriot",P.O. Box 247,,St. Martinville,LA,70582,337-394-5259,W,M,O,225,06/30/2012,07/01/2008,Mr. Theriot -Clerk of Court ,,P. O. Box 308,,St. Martinville,LA,70582,337-394-2210,ST. MARTIN,"Allen Blanchard, Sr.",P. O. Box 308,,St. Martinville,LA,70582,337-845-4289,W,M,D,230,06/30/2012,07/01/2008,Mr. Blanchard -Assessor ,,"415 S. Main St., Ste. 103",,St. Martinville,LA,70582,337-394-2208,ST. MARTIN,Lawrence Patin,1511-A Nina Hwy.,,Breaux Bridge,LA,70517,337-228-2733,W,M,D,235,12/31/2012,01/01/2009,Mr. Patin -Coroner ,,"1117 North Main St., Suite B",,St. Martinville,LA,70582,337-394-7111,ST. MARTIN,Daniel Wiltz,"1117 North Main St., Ste. B",,St. Martinville,LA,70582,337-394-7111,B,M,D,240,03/25/2012,03/24/2008,Mr. Wiltz -Parish President ,,P.O. Box 9,,St. Martinville,LA,70582,337-394-2200,ST. MARTIN,Guy J. Cormier,P. O. Box 318,,St. Martinville,LA,70582,337-560-5237,W,M,D,243,01/09/2012,01/14/2008,Mr. Cormier -Council Member ,District 1 ,P. O. Box 9,,St. Martinville,LA,,337-394-2200,ST. MARTIN,"Carroll ""Coach"" Delahoussaye",1007 Wendy Dr.,,St. Martinville,LA,70582,337-394-9417,W,M,D,245,01/09/2012,01/14/2008,Mr. Delahoussaye -Council Member ,District 2 ,P. O. Box 9,,St. Martinville,LA,70582,337-394-2200,ST. MARTIN,Lisa Nelson,"720 S. Martin Luther King, Jr. Dr.",,St. Martinville,LA,70582,337-394-6396,B,F,D,245,01/09/2012,01/14/2008,Ms. Nelson -Council Member ,District 3 ,P. O. Box 9,,St. Martinville,LA,70582,337-394-2200,ST. MARTIN,Jason Willis,214 Stephanie Drive,,St. Martinville,LA,70582,337-394-7474,B,M,D,245,01/09/2012,01/14/2008,Mr. Willis -Council Member ,District 4 ,P. O. Box 9,,St. Martinville,LA,70582,337-394-2200,ST. MARTIN,Mike Huval,P.O. Box 2618,,Parks,LA,70582,337-845-5126,W,M,D,245,01/09/2012,01/14/2008,Mr. Huval -Council Member ,District 5 ,P. O. Box 9,,St. Martinville,LA,70582,337-394-2200,ST. MARTIN,"Lloyd ""Red"" Higginbotham",4695 Catahoula Hwy.,,St. Martinville,LA,70582,337-394-4391,W,M,D,245,01/09/2012,01/14/2008,Mr. Higginbotham -Council Member ,District 6 ,P. O. Box 9,,St. Martinville,LA,70582,337-394-2200,ST. MARTIN,Jill Hebert,715 South Main St.,,Breaux Bridge,LA,70517,337-332-5254,W,F,D,245,01/09/2012,01/14/2008,Ms. Hebert -Council Member ,District 7 ,P. O. Box 9,,St. Martinville,LA,70582,337-394-2200,ST. MARTIN,"""Pat"" Cluse",2630 Main Hwy.,,Breaux Bridge,LA,70517,337-667-7693,B,M,D,245,01/09/2012,01/14/2008,Mr. Cluse -Council Member ,District 8 ,P. O. Box 9,,St. Martinville,LA,70582,337-394-2200,ST. MARTIN,"James ""Jim"" Hebert",1900 Grand Anse Hwy.,,Breaux Bridge,LA,70517,337-667-6849,W,M,D,245,01/09/2012,01/14/2008,Mr. Hebert -Council Member ,District 9 ,P. O. Box 9,,St. Martinville,LA,70582,337-394-2200,ST. MARTIN,Dean Dore',1075 Oleste Tauzin Rd.,,Breaux Bridge,LA,70517,337-332-1850,W,M,D,245,01/09/2012,01/14/2008,Mr. Dore' -City Judge ,"City Court, City of Breaux Bridge ","101 Berard St., Ste. B",,Breaux Bridge,LA,70517,318-332-4117,ST. MARTIN,Randy P. Angelle,1039 Spanish Moss Ln.,,Breaux Bridge,LA,70517,337-332-5280,W,M,D,250,12/31/2014,01/01/2009,Judge Angelle -City Marshal ,"City Court, City of Breaux Bridge ","101 Berard St., Ste. B",,Breaux Bridge,LA,70517,337-332-4117,ST. MARTIN,Jerry Frederick,4410 Poydras Hwy.,,Breaux Bridge,LA,70517,337-332-2573,W,M,D,250,12/31/2014,01/01/2009,Marshal Frederick -Member of School Board ,District 1 ,305 Washington St.,,St. Martinville,LA,70582,337-394-6261,ST. MARTIN,Steve Fuselier,1059 Sonny Dr.,,St. Martinville,LA,70582,337-394-4436,W,M,D,255,12/31/2010,01/01/2007,Mr. Fuselier -Member of School Board ,District 2 ,305 Washington St.,,St. Martinville,LA,70582,337-394-6261,ST. MARTIN,Wanda Hypolite Babin,314 Elmer St.,,St. Martinville,LA,70582,,B,F,O,255,12/31/2010,01/01/2007,Ms. Babin -Member of School Board ,District 3 ,305 Washington St.,,St. Martinville,LA,70582,337-394-6261,ST. MARTIN,Aaron Flegeance,2532 Catahoula Hwy.,,St. Martinville,LA,70582,337-394-9296,B,M,D,255,12/31/2010,01/01/2007,Mr. Flegeance -Member of School Board ,District 4 ,305 Washington St.,,St. Martinville,LA,70582,337-394-6261,ST. MARTIN,"James ""Jimmy"" Blanchard",1213 South Main,,Breaux Bridge,LA,70517,,W,M,D,255,12/31/2010,01/01/2007,Mr. Blanchard -Member of School Board ,District 5 ,305 Washington St.,,St. Martinville,LA,70582,337-394-6261,ST. MARTIN,"Barbara ""T-Bob"" Latiolais",1007 L G Rd.,,St. Martinville,LA,70582,337-394-9515,W,F,R,255,12/31/2010,01/01/2007,Ms. Latiolais -Member of School Board ,District 6 ,305 Washington St.,,St. Martinville,LA,70582,337-394-6261,ST. MARTIN,Rodney J. Ledoux,404 Gaston Dr.,,Breaux Bridge,LA,70517,337-332-2347,W,M,D,255,12/31/2010,01/01/2007,Mr. Ledoux -Member of School Board ,District 7 ,305 Washington St.,,St. Martinville,LA,70582,337-394-6261,ST. MARTIN,Richard Potier,1057 Bill Clause Dr,,Breaux Bridge,LA,70517,337-332-5477,B,M,D,255,12/31/2010,01/01/2007,Mr. Potier -Member of School Board ,District 8 ,305 Washington St.,,St. Martinville,LA,70582,337-394-6261,ST. MARTIN,Frederic Stelly,1100 Carrier Rd.,,Breaux Bridge,LA,70517,337-228-2895,W,M,D,255,12/31/2010,01/01/2007,Mr. Stelly -Member of School Board ,District 9 ,305 Washington St.,,St. Martinville,LA,70582,337-394-6261,ST. MARTIN,"Floyd ""Y"" Knott",1094 Bushville Hwy.,,Arnaudville,LA,70512,337-754-9980,W,M,O,255,12/31/2010,01/01/2007,Mr. Knott -Member of School Board ,District 10 ,305 Washington St.,,St. Martinville,LA,70582,337-394-6261,ST. MARTIN,Mark Hebert,P.O. Box 10,,Cecilia,LA,70521,337-667-7161,W,M,D,255,12/31/2010,01/01/2007,Mr. Hebert -Justice of the Peace ,Justice of the Peace Ward 1 ,1182 Bayou Portage Rd.,,St. Martinville,LA,70582,337-394-9163,ST. MARTIN,"Thomas ""Tommy"" Boutte",1182 Bayou Portage Rd.,,St. Martinville,LA,70582,337-394-6621,W,M,D,265,12/31/2014,01/01/2009,Mr. Boutte -Justice of the Peace ,Justice of the Peace Ward 2 ,805 St.Ann St.,,St. Martinville,LA,70582,337-394-4768,ST. MARTIN,"Joseph ""Joe"" Mason",304 Governor Mouton St.,,St. Martinville,LA,70582,337-394-1202,B,M,D,265,12/31/2014,01/01/2009,Mr. Mason -Justice of the Peace ,Justice of the Peace Ward 3 ,1024 Joe Mouton Rd.,,St. Martinville,LA,70582,337-845-4144,ST. MARTIN,Charlene Champagne,1024 Joe Mouton Rd.,,St. Martinville,LA,70582,337-342-0306,W,F,D,265,12/31/2014,01/01/2009,Ms. Champagne -Justice of the Peace ,Justice of the Peace Ward 5 ,1168 Old Henderson Dr.,,Breaux Bridge,LA,70517,337-228-2453,ST. MARTIN,Gary J. LeBlanc,1050 Lucette Guidry Rd.,,Breaux Bridge,LA,70517,337-454-6332,W,M,D,265,12/31/2014,01/01/2009,Mr. LeBlanc -Justice of the Peace ,Justice of the Peace Ward 6 ,1066 Stephensville Rd.,,Morgan City,LA,70380,985-384-8720,ST. MARTIN,Shelia Landry,1018 Florence Ct.,,Morgan City,LA,70380,985-385-3840,W,F,D,265,12/31/2014,01/01/2009,Ms. Landry -Constable ,Justice of the Peace Ward 1 ,410 Gauthier St.,,St. Martinville,LA,70582,337-394-4731,ST. MARTIN,"Alvin ""Al"" Cormier",410 Gauthier St.,,St. Martinville,LA,70582,337-394-3738,W,M,D,267,12/31/2014,01/01/2009,Mr. Cormier -Constable ,Justice of the Peace Ward 2 ,203 Elmer St.,,St. Martinville,LA,70582,337-394-6457,ST. MARTIN,"Leander ""Cush"" Williams",P.O. Box 483,,St. Martinville,LA,70582,337-394-6457,B,M,D,267,12/31/2014,01/01/2009,Mr. Williams -Constable ,Justice of the Peace Ward 3 ,"1173 Paul Joseph Rd., #A",,St. Martinville,LA,70582,337-394-6320,ST. MARTIN,David R. Dugas,1004 Joseph St.,,St. Martinville,LA,70582,337-394-3656,W,M,O,267,12/31/2014,01/01/2009,Mr. Dugas -Constable ,Justice of the Peace Ward 5 ,1735 Grand Anse Hwy.,,Breaux Bridge,LA,70517,337-667-6012,ST. MARTIN,"Floyd ""Hal"" Scrantz",1735 Grand Anse Hwy.,,Breaux Bridge,LA,70517,337-667-6012,W,M,D,267,12/31/2014,01/01/2009,Mr. Scrantz -Constable ,Justice of the Peace Ward 6 ,1451 E. Stevensville Rd.,,Morgan City,LA,70380,985-384-0274,ST. MARTIN,Carol Martin,1451 East Stephensville Rd.,,Morgan City,LA,70380,985-384-0274,W,M,D,267,12/31/2014,01/01/2009,Mr. Martin -Mayor ,City of Breaux Bridge ,"101 Berard St., Suite A",,Breaux Bridge,LA,,337-332-2171,ST. MARTIN,Jack Dale Delhomme,243 Ledoux St.,,Breaux Bridge,LA,70517,337-332-8301,W,M,D,300,12/31/2010,01/01/2007,Mr. Delhomme -Mayor ,City of St. Martinville ,P. O. Box 379,,St. Martinville,LA,,337-394-2230,ST. MARTIN,Thomas Nelson,720 South Martin Luther King Dr.,,St. Martinville,LA,70582,337-394-3428,B,M,D,300,06/30/2010,07/01/2006,Mayor Nelson -Mayor ,Town of Henderson ,P.O. Box 595,,Henderson,LA,,337-228-7109,ST. MARTIN,Sherbin Collette,1021 Robin St.,,Henderson,LA,70517,337-228-2200,W,M,D,300,06/30/2012,07/01/2008,Mr. Collette -Mayor ,Village of Parks ,1010 Martin St.,,Parks,LA,,337-845-4139,ST. MARTIN,John Dugas,P.O. Box 2839,,Parks,LA,70582,337-845-4705,W,M,D,300,12/31/2010,01/01/2007,Mayor Dugas -Chief of Police ,City of Breaux Bridge ,"101 Berard St., Ste. A",,Breaux Bridge,LA,70517,337-332-2171,ST. MARTIN,Charles Thibodeaux,720 Main St.,,Breaux Bridge,LA,70517,337-332-2171,W,M,D,305,12/31/2010,01/01/2007,Mr. Thibodeaux -Chief of Police ,Town of Henderson ,P.O. Box 595,,Henderson,LA,70517,337-228-7109,ST. MARTIN,Leroy Guidry,1034 Dupuis St.,,Henderson,LA,70517,337-228-2432,W,M,O,305,06/30/2012,07/01/2008,Chief Guidry -Chief of Police ,Village of Parks ,P. O. Box 2867,,Parks,LA,70582,337-845-4139,ST. MARTIN,Ronald Solarie,5111 Bridge Street Hwy.,,St. Martinville,LA,70582,337-201-2168,B,M,D,305,12/31/2010,01/01/2007,Mr. Solarie -Alderman ,"District A, City of Breaux Bridge ",101 Berard St.,,Breaux Bridge,LA,70517,337-332-2171,ST. MARTIN,Terry P. Thibodeaux,478 Kent St.,,Breaux Bridge,LA,70517,337-332-5237,W,M,D,310,12/31/2010,01/01/2007,Mr. Thibodeaux -Alderman ,"District B, City of Breaux Bridge ",101 Berard St.,,Breaux Bridge,LA,70517,337-332-2171,ST. MARTIN,"Howard ""Doc"" Alexander",406 Nettie St.,,Breaux Bridge,LA,70517,337-201-3683,B,M,D,310,12/31/2010,01/01/2007,Mr. Alexander -Alderman ,"District C, City of Breaux Bridge ",101 Berard St.,,Breaux Bridge,LA,70517,337-332-2171,ST. MARTIN,"Albert ""Da Da"" Menard",866 Alva Dr.,,Breaux Bridge,LA,70517,337-739-9481,B,M,D,310,12/31/2010,01/01/2007,Mr. Menard -Alderman ,"District D, City of Breaux Bridge ",101 Berard St.,,Breaux Bridge,LA,70517,337-332-2171,ST. MARTIN,Glenn Michael Angelle,1107 South Main,,Breaux Bridge,LA,70517,337-332-3881,W,M,R,310,12/31/2010,01/01/2007,Mr. Angelle -Alderman ,"District E, City of Breaux Bridge ",101 Berard St.,,Breaux Bridge,LA,70517,337-332-2171,ST. MARTIN,"Gary ""Bimmie"" Champagne",P.O. Box 1444,,Breaux Bridge,LA,70517,337-332-3965,W,M,D,310,12/31/2010,01/01/2007,Mr. Champagne -Alderman ,Village of Parks ,P. O. Box 2867,,Parks,LA,70582,337-845-4139,ST. MARTIN,Charlotte Gary Gauthier,P.O. Box 2746,,Parks,LA,70582,337-845-9251,W,F,R,310,12/31/2010,01/01/2007,Mr. Gauthier -Alderman ,Village of Parks ,P. O. Box 2867,,Parks,LA,70582,337-845-4139,ST. MARTIN,Kevin J. Kately,P.O. Box 2550,,Parks,LA,70582,337-845-9147,B,M,D,310,12/31/2010,01/01/2007,Mr. Kately -Alderman ,Village of Parks ,P. O. Box 2867,,Parks,LA,70582,337-845-4139,ST. MARTIN,"Harold ""Kellogg"" Robertson",P.O. Box 2564,,Parks,LA,70582,337-845-4478,W,M,D,310,12/31/2010,01/01/2007,Mr. Robertson -Councilman,"District 1, City of St. Martinville",P. O. Box 379,,St. Martinville,LA,70582,337-394-2230,ST. MARTIN,"Michael ""Mike"" Fuselier",114 East Hamilton St.,,St. Martinville,LA,70582,337-394-5720,W,M,O,310,06/30/2010,07/01/2006,Mr. Fuselier -Councilman,"District 1, City of St. Martinville",P. O. Box 379,,St. Martinville,LA,70582,337-394-2230,ST. MARTIN,"Michael ""Mike"" Fuselier, ",114 E. Hamilton St.,,St. Martinville,LA,70582-4014,337-394-5720,W,M,O,310 -Councilman ,"District 2, City of St. Martinville ",P. O. Box 379,,St. Martinville,LA,70582,337-394-2230,ST. MARTIN,Craig Prosper,P.O. Box 213,,St. Martinville,LA,70582,337-394-7796,W,M,D,310,06/30/2010,07/01/2006,Mr. Prosper -Councilman ,"District 2, City of St. Martinville ",P. O. Box 379,,St. Martinville,LA,70582,337-394-2230,ST. MARTIN,"Craig Prosper, ",149 Teresa Dr.,,St. Martinville,LA,70582-4226,337-394-7796,W,M,D,310 -Councilman ,"District 3, City of St. Martinville ",P. O. Box 379,,St. Martinville,LA,70582,337-394-2230,ST. MARTIN,Dennis Paul Williams,402 West Port St.,,St. Martinville,LA,70582,337-394-9242,B,M,,310,06/30/2010,07/01/2006,Mr. Williams -Councilman ,"District 4, City of St. Martinville ",P. O. Box 379,,St. Martinville,LA,70582,337-394-2230,ST. MARTIN,Ronald J. Charles,625 Washington St.,,St. Martinville,LA,70582,337-394-5418,B,M,D,310,06/30/2010,07/01/2006,Mr. Charles -Councilman ,"District 5, City of St. Martinville ",P. O. Box 379,,St. Martinville,LA,70582,337-394-2230,ST. MARTIN,"Arthur Champ, Jr.",316 Elmer St.,,St. Martinville,LA,70582,337-394-4635,B,M,D,310,06/30/2010,07/01/2006,Mr. Champ -Councilman ,Town of Henderson ,P.O. Box 595,,Henderson,LA,70517,337-228-7109,ST. MARTIN,Samantha LeBlanc,1035 Talley St.,,Henderson,LA,70517,337-288-4163,W,F,D,310,06/30/2012,10/27/2009,Ms. LeBlanc -Councilman ,Town of Henderson ,P.O. Box 595,,Henderson,LA,70517,337-228-7109,ST. MARTIN,"""Don"" LeGrand",1006-B LeGrand St.,,Henderson,LA,70517,337-228-2367,W,M,D,310,06/30/2012,07/01/2008,Mr. LeGrand -Councilman ,Town of Henderson ,P.O. Box 595,,Henderson,LA,70517,337-228-7109,ST. MARTIN,Jody Meche,P.O. Box 694,,Henderson,LA,70517,337-228-2732,W,M,O,310,06/30/2012,07/01/2008,Mr. Meche -Councilman ,Town of Henderson ,P.O. Box 595,,Henderson,LA,70517,337-228-7109,ST. MARTIN,Ray Robin,P.O. Box 556,,Henderson,LA,70517,337-228-2958,W,M,D,310,06/30/2012,07/01/2008,Mr. Robin -Councilman ,Town of Henderson ,P.O. Box 595,,Henderson,LA,70517,337-228-7109,ST. MARTIN,Michael Theriot,1063 Huval St.,,Henderson,LA,70517,337-257-9026,W,M,D,310,06/30/2012,07/01/2008,Mr. Theriot -DPEC Member ,at Large ,,,,LA,,,ST. MARY,Sam Jones,1501 Sterling Rd.,,Franklin,LA,70538,337-828-1530,W,M,D,054,02/20/2012,02/20/2008,Mr. Jones -DPEC Member ,at Large ,,,,LA,,,ST. MARY,"Gary ""Doc"" Wiltz",710 1st St.,,Franklin,LA,70538,337-828-1274,B,M,D,054,02/20/2012,02/20/2008,Mr. Wiltz -DPEC Member ,District 1 ,,,,LA,,,ST. MARY,,,,,,,,,,,056 -DPEC Member ,District 2 ,,,,LA,,,ST. MARY,,,,,,,,,,,056 -DPEC Member ,District 3 ,,,,LA,,,ST. MARY,,,,,,,,,,,056 -DPEC Member ,District 4 ,,,,LA,,,ST. MARY,,,,,,,,,,,056 -DPEC Member ,District 5 ,,,,LA,,,ST. MARY,,,,,,,,,,,056 -DPEC Member ,District 6 ,,,,LA,,,ST. MARY,,,,,,,,,,,056 -DPEC Member ,District 7 ,,,,LA,,,ST. MARY,,,,,,,,,,,056 -DPEC Member ,District 8 ,,,,LA,,,ST. MARY,,,,,,,,,,,056 -DPEC Member ,District 9 ,,,,LA,,,ST. MARY,,,,,,,,,,,056 -DPEC Member ,District 10 ,,,,LA,,,ST. MARY,,,,,,,,,,,056 -DPEC Member ,District 11 ,,,,LA,,,ST. MARY,,,,,,,,,,,056 -RPEC Member ,at Large ,,,,LA,,,ST. MARY,Robert Arceneaux,P. O. Box 157,,Patterson,LA,70392,985-519-7252,W,M,R,064,02/20/2012,02/20/2008,Mr. Arceneaux -RPEC Member ,at Large ,,,,LA,,,ST. MARY,"Herbert A. Estay, Jr.",P. O. Box 1731,,Patterson,LA,70392,985-397-3223,W,M,R,064,02/20/2012,02/20/2008 -RPEC Member ,at Large ,,,,LA,,,ST. MARY,Christian Gil,P. O. Box 157,,Patterson,LA,70392,985-399-4412,W,M,R,064,02/20/2012,02/20/2008,Mr. Gill -RPEC Member ,at Large ,,,,LA,,,ST. MARY,Bill L. Moore,P.O. Box 261,,Franklin,LA,70538,337-828-4479,W,M,R,064,02/20/2012,02/20/2008,Mr. Moore -RPEC Member ,at Large ,,,,LA,,,ST. MARY,Glynn P. Pellerin,578 Parish Rd. 131,,Franklin,LA,70538,337-836-9647,W,M,R,064,02/20/2012,02/20/2008,Mr. Pellerin -RPEC Member ,District 1 ,,,,LA,,,ST. MARY,,,,,,,,,,,066 -RPEC Member ,District 2 ,,,,LA,,,ST. MARY,,,,,,,,,,,066 -RPEC Member ,District 3 ,,,,LA,,,ST. MARY,,,,,,,,,,,066 -RPEC Member ,District 4 ,,,,LA,,,ST. MARY,,,,,,,,,,,066 -RPEC Member ,District 5 ,,,,LA,,,ST. MARY,,,,,,,,,,,066 -RPEC Member ,District 6 ,,,,LA,,,ST. MARY,,,,,,,,,,,066 -RPEC Member ,District 7 ,,,,LA,,,ST. MARY,,,,,,,,,,,066 -RPEC Member ,District 8 ,,,,LA,,,ST. MARY,,,,,,,,,,,066 -RPEC Member ,District 9 ,,,,LA,,,ST. MARY,,,,,,,,,,,066 -RPEC Member ,District 10 ,,,,LA,,,ST. MARY,,,,,,,,,,,066 -RPEC Member ,District 11 ,,,,LA,,,ST. MARY,,,,,,,,,,,066 -Sheriff ,,P. O. Box 571,,Franklin,LA,70538,318-828-1960,ST. MARY,David A. Naquin,P.O. Box 571,,Franklin,LA,70538,337-828-2819,W,M,D,225,06/30/2012,07/01/2008,Mr. Naquin -Clerk of Court ,,P. O. Drawer 1231,,Franklin,LA,70538,337-828-4100,ST. MARY,Cliff Dressel,P. O. Drawer 1231,,Franklin,LA,70538-1231,337-828-4100,W,M,D,230,06/30/2012,07/01/2008,Mr. Dressel -Assessor ,,P.O. Box 264,,Franklin,LA,70538,337-828-4100,ST. MARY,Jarrod K. Longman,1029 Fig St.,,Morgan City,LA,70380-1014,985-397-0227,W,M,D,235,12/31/2012,01/01/2009,Mr. Longman -Coroner ,,P.O. Box 2266,,Morgan City,LA,70381,985-384-9964,ST. MARY,"F. H. Metz, Jr.",1933 Hwy. 182 E.,,Morgan City,LA,70380,985-395-9197,W,M,D,240,03/25/2012,03/24/2008,Mr. Metz -Parish President ,,"Fifth Floor, Courthouse",,Franklin,LA,70538,337-828-4100,ST. MARY,"Paul P. Naquin, Jr.",P. O. Box 371,,Baldwin,LA,70514-0371 ,337-923-7521,W,M,D,243,01/09/2012,01/14/2008,Mr. Naquin -Council Member ,District 1 ,Fifth Floor Courthouse,,Franklin,LA,,337-828-4100,ST. MARY,Craig A. Mathews,2208 Hwy. 318,,Jeanerette,LA,70544-8721,337-276-6697,B,M,D,245,01/09/2012,01/14/2008,Mr. Mathews -Council Member ,District 2 ,Fifth Floor Courthouse,,Franklin,LA,70538,337-828-4100,ST. MARY,"Charles ""Butch"" Middleton",404 Sixth St.,,Franklin,LA,70538-5906,337-828-2017,B,M,D,245,01/09/2012,01/14/2008,Mr. Middleton -Council Member ,District 3 ,Fifth Floor Courthouse,,Franklin,LA,70538,337-828-4100,ST. MARY,David Hanagriff,P.O. Box 172,,Centerville,LA,70522-0172 ,337-836-5154,W,M,D,245,01/09/2012,01/14/2008,Mr. Hanagriff -Council Member ,District 4 ,Fifth Floor Courthouse,,Franklin,LA,70538,337-828-4100,ST. MARY,Glen J. Hidalgo,1219 Columbus Ave.,,Morgan City,LA,70380-5907,985-395-3182,W,M,D,245,01/09/2012,01/14/2008,Mr. Hidalgo -Council Member ,District 5 ,Fifth Floor Courthouse,,Franklin,LA,70538,337-828-4100,ST. MARY,"""Ken"" Singleton",108 Catherine St.,,Patterson,LA,70392-5026,337-962-2625,W,M,R,245,01/09/2012,01/14/2008,Mr. Singleton -Council Member ,District 6 ,Fifth Floor Courthouse,,Franklin,LA,70538,337-828-4100,ST. MARY,"Logan J. Fromenthal, Jr.",1725 Dale St.,,Morgan City,LA,70380-1407,985-384-8860,W,M,D,245,01/09/2012,01/14/2008,Mr. Fromenthal -Council Member ,District 7 ,Fifth Floor Courthouse,,Franklin,LA,70538,337-828-4100,ST. MARY,Kevin J. Voisin,1202 Hickory St.,,Morgan City,LA,70380-1147,985-385-5007,W,M,D,245,01/09/2012,01/14/2008,Mr. Voisin -Council Member ,District 8 ,Fifth Floor Courthouse,,Franklin,LA,70538,337-828-4100,ST. MARY,"""Chuck"" Walters",P.O. Box 702,,Amelia,LA,70340-0702 ,985-631-0235,W,M,D,245,01/09/2012,01/14/2008,Mr. Walters -Council Member at Large ,District 9 ,Fifth Floor Courthouse,,Franklin,LA,70538,337-828-4100,ST. MARY,Albert Foulcard,700 Magnolia St.,,Franklin,LA,70538-5316,337-578-0392,B,M,D,245,01/09/2012,01/14/2008,Mr. Foulcard -Council Member at Large ,District 10 ,Fifth Floor Courthouse,,Franklin,LA,70538,337-828-4100,ST. MARY,Steve F. Bierhorst,119 Jones Dr.,,Patterson,LA,70392-5622,985-395-3930,W,M,D,245,01/09/2012,01/14/2008,Mr. Bierhorst -Council Member at Large ,District 11 ,Fifth Floor Courthouse,,Franklin,LA,70538,337-828-4100,ST. MARY,Gary Duhon,53 Marquis Mnr.,,Morgan City,LA,70380-1152,985-385-7848,W,M,D,245,01/09/2012,01/14/2008,Mr. Duhon -City Judge ,"City Court, City of Franklin ",P. O. Box 343,,Franklin,LA,70538,318-828-0454,ST. MARY,Terry Breaux,P.O. Box 766,,Franklin,LA,70538,338-578-1153,W,M,D,250,12/31/2014,01/01/2009,Judge Breaux -City Judge ,"City Court, City of Morgan City ",P. O. Box 1577,,Morgan City,LA,70381,985-384-2718,ST. MARY,Kim P. Stansbury,3112 Lake Palourde Dr.,,Morgan City,LA,70380,985-384-0381,W,M,D,250,12/31/2014,01/01/2009,Judge Stansbury -City Marshal ,"City Court, City of Franklin ",P. O. Box 343,,Franklin,LA,70538,337-828-3859,ST. MARY,"David J. McCoy, Jr.",222 Saint Joseph Ln.,,Franklin,LA,70538,985-397-1025,B,M,D,250,12/31/2014,01/01/2009,Marshal McCoy -City Marshal ,"City Court, City of Morgan City ",P. O. Box 1577,,Morgan City,LA,70381,985-384-2350,ST. MARY,Kenneth J. Duval,1204 S. Prescott Dr.,,Morgan City,LA,70380,985-385-5132,W,M,R,250,12/31/2014,01/01/2009,Marshal Duval -Member of School Board ,District 1 ,P. O. Box 170,,Centerville,LA,70522,337-836-9661,ST. MARY,"Joseph Foulcard, Jr.",1503 Walnut St.,,Franklin,LA,70538-5325,337-828-4454,B,M,D,255,12/31/2010,01/01/2007,Mr. Foulcard -Member of School Board ,District 2 ,P. O. Box 170,,Centerville,LA,70522,337-836-9661,ST. MARY,Mary Shannette Lockley,506 Hwy. 318,,Franklin,LA,70538-6924,337-276-4668,B,F,D,255,12/31/2010,01/01/2007,Ms. Lockley -Member of School Board ,District 3 ,P. O. Box 170,,Centerville,LA,70522,337-836-9661,ST. MARY,"Edward Payton, Jr.",P.O. Box 461,,Baldwin,LA,70514,337-923-7786,W,M,D,255,12/31/2010,01/01/2007,Mr. Payton -Member of School Board ,District 4 ,P. O. Box 170,,Centerville,LA,70522,337-836-9661,ST. MARY,Murphy Pontiff,3970 Irish Bend Rd.,,Franklin,LA,70538,337-828-3221,W,M,D,255,12/31/2010,01/01/2007,Mr. Pontiff -Member of School Board ,District 5 ,P. O. Box 170,,Centerville,LA,70522,337-836-9661,ST. MARY,Ginger Smith Griffin,145 Laura Dr.,,Patterson,LA,70392-5718,985-395-7832,W,F,R,255,12/31/2010,01/01/2007,Mr. Griffin -Member of School Board ,District 6 ,P. O. Box 170,,Centerville,LA,70522,337-836-9661,ST. MARY,Marilyn LaSalle,P. O. Box 1068,,Patterson,LA,70392-5301,985-395-3848,B,F,D,255,12/31/2010,01/01/2007,Ms. LaSalle -Member of School Board ,District 7 ,P. O. Box 170,,Centerville,LA,70522,337-836-9661,ST. MARY,Wayne J. Deslatte,P.O. Box 165,,Centerville,LA,70522-0165 ,337-836-5487,W,M,D,255,12/31/2010,01/01/2007,Mr. Deslatte -Member of School Board ,District 8 ,P. O. Box 170,,Centerville,LA,70522,337-836-9661,ST. MARY,"Michael E. ""Mike"" Taylor",P.O. Box 661,,Berwick,LA,70342,985-384-7205,W,M,D,255,12/31/2010,01/01/2007,Mr. Taylor -Member of School Board ,District 9 ,P. O. Box 170,,Centerville,LA,70522,337-836-9661,ST. MARY,"""Bill"" McCarty",1701 Cedar St.,,Morgan City,LA,70380-1711,985-384-2608,W,M,D,255,12/31/2010,01/01/2007,Mr. McCarty -Member of School Board ,District 10 ,P. O. Box 170,,Centerville,LA,70522,337-836-9661,ST. MARY,Anthony Streva,1013 Walnut St.,,Morgan City,LA,70380,985-385-0988,W,M,D,255,12/31/2010,01/01/2007,Mr. Streva -Member of School Board ,District 11 ,P. O. Box 170,,Centerville,LA,70522,337-836-9661,ST. MARY,Roland Herman Verret,907 Lake Palourde Rd.,,Morgan City,LA,70380-6407,985-631-2460,W,M,D,255,12/31/2010,01/01/2007,Mr. Verrett -Justice of the Peace ,Justice of the Peace Ward 1 ,P.O. Box 254,,Baldwin,LA,70514-1419,318-923-7554,ST. MARY,Benjamin Grimm,293 Eves St.,,Jeanerette,LA,70544,337-276-7092,B,M,D,265,12/31/2014,01/01/2009,Mr. Grimm -Justice of the Peace ,Justice of the Peace Ward 2 ,4683 La.Hwy 83,,Franklin,LA,70538-7502,337-271-0167,ST. MARY,Ray A. Manuel,4683 Hwy. 83,,Franklin,LA,70538,337-924-7635,B,M,D,265,12/31/2014,01/01/2009,Mr. Manuel -Justice of the Peace ,Justice of the Peace Ward 4 ,114 Verdun Ln.,,Franklin,LA,70538-7323,337-836-9617,ST. MARY,Shelby J. Bourgeois,114 Verdun Ln.,,Franklin,LA,70538,337-836-9617,B,M,D,265,12/31/2014,01/01/2009,Mr. Bourgeois -Justice of the Peace ,Justice of the Peace Ward 5 ,P.O. Box 279,,Patterson,LA,70392-0279 ,985-395-2445,ST. MARY,Frank J. Cali,P.O. Box 279,,Patterson,LA,70392,985-395-2445,W,M,D,265,12/31/2014,01/01/2009,Mr. Cali -Justice of the Peace ,Justice of the Peace Ward 7 ,223 Gibbs Rd.,,Franklin,LA,70538-6950,337-923-7880,ST. MARY,Nekesia J. Bowie,"223 Gibbs Dr., Lot 1",,Franklin,LA,70538,337-923-0677,B,F,D,265,12/31/2014,01/01/2009,Ms. Bowie -Justice of the Peace ,Justice of the Peace Ward 8 ,1451 River Rd.,,Berwick,LA,70342-3019,985-385-2937,ST. MARY,Marketia R. Arthur,567 Young St.,,Berwick,LA,70342,985-385-2991,W,F,D,265,12/31/2014,01/01/2009,Ms. Arthur -Justice of the Peace ,Justice of the Peace Ward 9 ,P.O.Box 629,,Amelia,LA,70340-0629 ,985-631-2589,ST. MARY,Tracy V. Duval,P.O. Box 629,,Amelia,LA,70340,985-631-2589,W,F,D,265,12/31/2014,01/01/2009,Ms. Duval -Justice of the Peace ,Justice of the Peace Ward 10 ,P.O. Box 681,,Baldwin,LA,70514,337-923-7502,ST. MARY,Benny J. Druilhet,P.O. Box 681,,Baldwin,LA,70514,337-923-7502,B,M,D,265,12/31/2014,01/01/2009,Mr. Druilhet -Constable ,Justice of the Peace Ward 1 ,P.O. Box 375,,Charenton,LA,70523,337-923-7362,ST. MARY,"Donald ""Sonny"" Compton",P.O. Box 375,,Charenton,LA,70523,337-923-7362,W,M,D,267,12/31/2014,01/01/2009,Mr. Compton -Constable ,Justice of the Peace Ward 2 ,239 Georgetown Rd.,,Franklin,LA,70538-7542,337-923-7713,ST. MARY,Steven Drexler,180 Georgetown Rd.,,Franklin,LA,70538,337-923-7483,B,M,D,267,12/31/2014,01/01/2009,Mr. Drexler -Constable ,Justice of the Peace Ward 4 ,P.O. Box 17,,Franklin,LA,70522-0017 ,337-836-9336,ST. MARY,David A. Comeaux,P.O. Box 17,,Centerville,LA,70522,337-836-9336,W,M,D,267,12/31/2014,01/01/2009,Mr. Comeaux -Constable ,Justice of the Peace Ward 5 ,P.O. Box 1161,,Patterson,LA,70392-4538,985-395-2235,ST. MARY,"""Ned"" Stephens",P.O. Box 1161,,Patterson,LA,70392,985-395-4091,W,M,D,267,12/31/2014,01/01/2009,Mr. Stephens -Constable ,Justice of the Peace Ward 7 ,1506 Hwy. 318,,Jeanerette,LA,70544-8540,337-276-9461,ST. MARY,"Edward ""June"" Patrick",1506 Hwy. 318,,Jeanerette,LA,70544,337-276-9461,B,M,D,267,12/31/2014,01/01/2009,Mr. Patrick -Constable ,Justice of the Peace Ward 8 ,567 Young St.,,Berwick,LA,70342-2341,985-384-7008,ST. MARY,"Jonathan ""J.P."" Henry",711 Toups St.,,Berwick,LA,70342,985-518-3364,W,M,R,267,12/31/2014,01/01/2009,Mr. Henry -Constable ,Justice of the Peace Ward 9 ,P.O. Box 69,,Morgan City,LA,70340-0069 ,985-631-0653,ST. MARY,John Arceneaux,1158 Lakeview Dr.,,Morgan City,LA,70380,985-312-1031,W,M,,267,12/31/2014,01/01/2009,Mr. Arceneaux -Constable ,Justice of the Peace Ward 10 ,P.O. Box 513,,Franklin,LA,70538,337-923-0001,ST. MARY,"Harry J. Smith, Jr.",P.O. Box 513,,Franklin,LA,70538,337-578-4049,B,M,D,267,12/31/2014,01/01/2009,Mr. Smith -Mayor ,City of Franklin ,P. O. Box 567,,Franklin,LA,,337-828-6303,ST. MARY,"Raymond Harris, Jr.",1526 Sterling Rd.,,Franklin,LA,70538-3860,337-828-2701,B,M,D,300,06/30/2010,07/01/2006,Mayor Harris -Mayor ,City of Morgan City ,P. O. Box 1218,,Morgan City,LA,70381,985-385-1770,ST. MARY,"Timothy I. ""Tim"" Matte",1624 Glenmont Dr.,,Morgan City,LA,70380,985-385-2442,W,M,D,300,01/13/2013,01/12/2009,Mayor Matte -Mayor ,City of Patterson ,P. O. Box 367,,Patterson,LA,,985-395-5205,ST. MARY,"""Mike"" Accardo",P.O. Box 1805,,Patterson,LA,70392-5611,985-518-8593,W,M,D,300,12/31/2010,01/01/2007,Mr. Accardo -Mayor ,Town of Baldwin ,P. O. Box 800,,Baldwin,LA,,337-923-7523,ST. MARY,Wayne J. Breaux,P.O. Box 213,,Baldwin,LA,,337-578-3835,W,M,D,300,12/31/2010,01/01/2007,Mr. Breaux -Mayor ,Town of Berwick ,P. O. Box 486,,Berwick,LA,,985-384-8858,ST. MARY,Louis A. Ratcliff,400 Nelson St.,,Berwick,LA,70342-2064,985-384-3794,W,M,,300,12/31/2010,01/01/2007,Mayor Ratcliff -Chief of Police ,City of Patterson ,P. O. Box 367,,Patterson,LA,70392,985-395-5205,ST. MARY,Patrick M. LaSalle,P.O. Box 534,,Patterson,LA,70392-5201,985-395-7800,B,M,D,305,12/31/2010,01/01/2007,Mr. LaSalle -Chief of Police ,Town of Baldwin ,P. O. Box 800,,Baldwin,LA,70514,337-923-7523,ST. MARY,Gerald Minor,P.O. Box 1175,,Franklin,LA,70538-1175,337-923-6182,W,M,D,305,12/31/2010,01/01/2007,Chief Minor -Council Member ,"at Large, City of Franklin ",P. O. Box 567,,Franklin,LA,70538,337-828-6303,ST. MARY,"Kenny P. Scelfo, Sr.",91 Lee St.,,Franklin,LA,70538-7037,337-828-2654,W,M,D,308,06/30/2010,07/01/2006,Mr. Scelfo -Alderman ,Town of Baldwin ,P. O. Box 800,,Baldwin,LA,70514,337-923-7523,ST. MARY,Mike J. Caesar,P.O. Box 365,,Baldwin,LA,70514,337-923-7376,B,M,D,310,12/31/2010,01/01/2007,Mr. Caesar -Alderman ,Town of Baldwin ,P. O. Box 800,,Baldwin,LA,70514,337-923-7523,ST. MARY,"Herbert E. Druilhet, Jr.",P.O. Box 267,,Baldwin,LA,70514,337-923-4498,B,M,D,310,12/31/2010,01/01/2007,Mr. Druilhet -Alderman ,Town of Baldwin ,P. O. Box 800,,Baldwin,LA,70514,337-923-7523,ST. MARY,H. Gene St. Germain,P.O. Box 212,,Baldwin,LA,70514-1430,337-923-7758,W,M,D,310,12/31/2010,01/01/2007,Mr. St. Germain -Alderman ,Town of Baldwin ,P. O. Box 800,,Baldwin,LA,70514,337-923-7523,ST. MARY,"""Mike"" Lancelin",P.O. Box 248,,Baldwin,LA,70514,337-924-7711,B,M,D,310,12/31/2010,01/01/2007,Mr. Lancelin -Alderman ,Town of Baldwin ,P. O. Box 800,,Baldwin,LA,70514,337-923-7523,ST. MARY,Clarence A. Vappie,P.O. Box 817,,Baldwin,LA,70514,337-923-4609,B,M,D,310,12/31/2010,01/01/2007,Mr. Vappie -Council Member ,City of Patterson ,P. O. Box 367,,Patterson,LA,70392,985-395-5205,ST. MARY,Rodney A. Grogan,P.O. Box 1133,,Patterson,LA,70392,985-399-6618,B,M,D,310,12/31/2010,01/01/2007,Mr. Green -Council Member ,City of Patterson ,P. O. Box 367,,Patterson,LA,70392,985-395-5205,ST. MARY,"L. L. ""Larry"" Mendoza, Jr.",140 McGee Dr.,,Patterson,LA,70392-5611,985-395-3768,W,M,D,310,12/31/2010,01/01/2007,Mr. Mendoza -Council Member ,City of Patterson ,P. O. Box 367,,Patterson,LA,70392,985-395-5205,ST. MARY,"""Peg"" M. Rentrop",P.O. Box 1410,,Patterson,LA,70392,985-395-2522,W,F,D,310,12/31/2010,01/01/2007,Ms. Rentrop -Council Member ,City of Patterson ,P. O. Box 367,,Patterson,LA,70392,985-395-5205,ST. MARY,"""Joe"" Russo, III",P.O. Box 188,,Patterson,LA,70392-4456,985-395-9584,W,M,D,310,12/31/2010,01/01/2007,Mr. Russo -Council Member ,City of Patterson ,P. O. Box 367,,Patterson,LA,70392,985-395-5205,ST. MARY,Claire D. Sawyer,P.O. Box 520,,Patterson,LA,70392-4409,985-395-3547,W,F,D,310,12/31/2010,01/01/2007,Ms. Sawyer -Council Member ,"District A, City of Franklin ",P. O. Box 567,,Franklin,LA,70538,,ST. MARY,Dale J. Rogers,404 Ida St.,,Franklin,LA,70538-3618,337-828-4650,W,M,D,310,06/30/2010,07/01/2006,Mr. Rogers -Council Member ,"District B, City of Franklin ",P. O. Box 567,,Franklin,LA,70538,,ST. MARY,Chuck D. Autin,306 Jackson St.,,Franklin,LA,70538,337-828-7927,W,M,,310,06/30/2010,07/01/2006,Mr. Autin -Council Member ,"District B, City of Franklin ",P. O. Box 567,,Franklin,LA,70538,,ST. MARY,"Chuck D. Autin, ",306 Jackson St.,,Franklin,LA,70538-5435,337-578-2559,W,M,N,310 -Council Member ,"District C, City of Franklin ",P. O. Box 567,,Franklin,LA,70538,,ST. MARY,Eugene P. Foulcard,203 Foster St.,,Franklin,LA,70538,337-828-5778,B,M,D,310,06/30/2010,07/01/2006,Mr. Foulcard -Council Member ,"District D, City of Franklin ",P. O. Box 567,,Franklin,LA,70538,,ST. MARY,"Joseph H. Garrison, Sr.",1016 B St.,,Franklin,LA,70538-4305,337-828-3423,B,M,D,310,06/30/2010,07/01/2006,Mr. Garrison -Councilman,"District 1, City of Morgan City",P. O. Box 1218,,Morgan City,LA,70381,985-385-1770,ST. MARY,"""Tim"" Hymel",1000 Hickory St.,,Morgan City,LA,70380,985-385-5504,W,M,D,310,01/13/2013,01/12/2009,Mr. Hymel -Councilman ,"District 2, City of Morgan City ",P. O. Box 1218,,Morgan City,LA,70381,985-385-1770,ST. MARY,Larry P. Bergeron,307 Brashear Ave.,,Morgan City,LA,70380,985-384-2672,W,M,D,310,01/13/2013,01/12/2009,Mr. Bergeron -Councilman ,"District 3, City of Morgan City ",P. O. Box 1218,,Morgan City,LA,70381,985-385-1770,ST. MARY,"""Ron"" Bias",1009 Florence St.,,Morgan City,LA,70380,985-385-6221,B,M,D,310,01/13/2013,01/12/2009,Mr. Bias -Councilman ,"District 4, City of Morgan City ",P. O. Box 1218,,Morgan City,LA,70381,985-385-1770,ST. MARY,Luke P. Manfre,P.O. Box 642,,Morgan City,LA,70381,985-312-4558,W,M,R,310,01/13/2013,01/12/2009,Mr. Manfre -Councilman ,"District 5, City of Morgan City ",P. O. Box 1218,,Morgan City,LA,70381,985-385-1770,ST. MARY,"Louis J. Tamporello, Jr.",31 Chennault St.,,Morgan City,LA,70380,985-384-8804,W,M,D,310,01/13/2013,01/12/2009,Mr. Tamporello -Councilmen ,Town of Berwick ,P. O. Box 486,,Berwick,LA,70342,985-384-8858,ST. MARY,"Duval H. Arthur, Jr.",567 Young St.,,Berwick,LA,70342-2341,985-384-7008,W,M,D,310,12/31/2010,01/01/2007,Mr. Arthur -Councilmen ,Town of Berwick ,P. O. Box 486,,Berwick,LA,70342,985-384-8858,ST. MARY,Penny Crappell,528 Whitworth St.,,Berwick,LA,70342-2072,985-385-6006,W,F,,310,12/31/2010,01/01/2007,Ms. Crappell -Councilmen ,Town of Berwick ,P. O. Box 486,,Berwick,LA,70342,985-384-8858,ST. MARY,Troy M. Lombardo,523 Crenshaw St.,,Berwick,LA,70342,985-384-3236,W,M,,310,12/31/2010,01/01/2007,Mr. Lombardo -Councilmen ,Town of Berwick ,P. O. Box 486,,Berwick,LA,70342,985-384-8858,ST. MARY,Damon Robison,405 Riverside Dr.,,Berwick,LA,70342-3221,985-385-0819,W,M,,310,12/31/2010,01/01/2007,Mr. Robinson -Councilmen ,Town of Berwick ,P. O. Box 486,,Berwick,LA,70342,985-384-8858,ST. MARY,"Edgar Thomas, Jr.",4309 Cantrell Dr.,,Berwick,LA,70342-2301,337-923-4981,W,M,R,310,12/31/2010,01/01/2007,Mr. Thomas -DPEC Member ,at Large ,,,,LA,,,ST. TAMMANY,Richard H. Boyd,327 Marigny Ave.,,Mandeville,LA,70448-5940,985-624-9604,W,M,D,054,02/20/2012,02/20/2008,Mr. Boyd -DPEC Member ,at Large ,,,,LA,,,ST. TAMMANY,Alicia Walker Breaux,74355 Hwy. 437 (Lee Rd.),,Covington,LA,70435,985-809-1006,W,F,D,054,02/20/2012,02/20/2008,Ms. Breaux -DPEC Member ,at Large ,,,,LA,,,ST. TAMMANY,"Kenneth ""Ken"" Burkhalter",P.O. Box 1489,,Slidell,LA,70459,985-649-6674,B,M,D,054,02/20/2012,02/20/2008,Mr. Burkhalter -DPEC Member ,at Large ,,,,LA,,,ST. TAMMANY,Donna Christopher,P. O. Box 489,,Pearl River,LA,70452-3236,985-863-1934,W,F,D,054,02/20/2012,02/20/2008,Ms. Christopher -DPEC Member ,at Large ,,,,LA,,,ST. TAMMANY,Donna L. Singletary,36144 Jessie Singletary Rd.,,Pearl River,LA,70452,985-863-5058,W,F,D,054,02/20/2012,02/20/2008,Ms. Singletary -DPEC Member ,District 1 ,,,,LA,,,ST. TAMMANY,"Keith Villere, ",110 E 7th Ave,,Covington,LA,70433,985-898-0270,,,,056,,09/21/2009,Mr. Villere -DPEC Member ,District 2 ,,,,LA,,,ST. TAMMANY,Della Rose Perkins,101 Gratitude Dr.,,Covington,LA,70433,,,,,056,,06/25/2008 -DPEC Member ,District 3 ,,,,LA,,,ST. TAMMANY,Ella Selmon,609 W. 28th Ave.,,Covington,LA,70433-2045,985-892-7802,,,D,056,02/20/2012,02/20/2008,Ms. Selmon -DPEC Member ,District 4 ,,,,LA,,,ST. TAMMANY,Joan Simon,154 Belle Terre Blvd.,,Covington,LA,70433,985-892-8474,,F,D,056,02/20/2012,02/20/2008,Ms. Simon -DPEC Member ,District 5 ,,,,LA,,,ST. TAMMANY,,,,,,,,,,,056 -DPEC Member ,District 6 ,,,,LA,,,ST. TAMMANY,Jane C. Christopher,P.O. Box 489,,Pearl River,LA,70452,985-863-1934,W,F,D,056,02/20/2012,02/20/2008,Ms. Christopher -DPEC Member ,District 7 ,,,,LA,,,ST. TAMMANY,Brenda F. Palmer,P.O. Box 1132,,Lacombe,LA,70445,985-290-0109,B,F,D,056,02/20/2012,02/20/2008,Ms. Palmer -DPEC Member ,District 8 ,,,,LA,,,ST. TAMMANY,Michael Goff,155 Lake Deste Dr.,,Slidell,LA,70461-3608,985-781-1680,W,M,D,056,02/20/2012,02/20/2008,Mr. Goff -DPEC Member ,District 9 ,,,,LA,,,ST. TAMMANY,,,,,,,,,,,056 -DPEC Member ,District 10 ,,,,LA,,,ST. TAMMANY,Zella B. Walker,326 Adair St.,,Mandeville,LA,70448-5702,985-626-3512,W,F,D,056,02/20/2012,02/20/2008,Ms. Walker -DPEC Member ,District 11 ,,,,LA,,,ST. TAMMANY,Shannon Davis,34399 Laurent Rd.,,Slidell,LA,70460-3555,985-641-6834,W,M,D,056,02/20/2012,02/20/2008,Ms. Davis -DPEC Member ,District 12 ,,,,LA,,,ST. TAMMANY,Lois Link Fallon,3678 Riviera Dr.,,Slidell,LA,70458,985-643-1291,W,F,D,056,02/20/2012,02/20/2008,Ms. Fallon -DPEC Member ,District 13 ,,,,LA,,,ST. TAMMANY,Gail Ledet,218 Moonraker Dr.,,Slidell,LA,70458-5523,985-645-8963,W,F,D,056,02/20/2012,02/20/2008,Ms. Ledet -DPEC Member ,District 14 ,,,,LA,,,ST. TAMMANY,Elsie Palmer Burkhalter,P.O. Box 1108,,Slidell,LA,70459,985-643-9822,B,F,D,056,02/20/2012,02/20/2008,Ms. Burkhalter -RPEC Member ,at Large ,,,,LA,,,ST. TAMMANY,Adam A. Ackel,P. O. Box 747,,Abita Springs,LA,70420,985-871-5171,W,M,R,064,02/20/2012,02/20/2008,Mr. Ackel -RPEC Member ,at Large ,,,,LA,,,ST. TAMMANY,Kelly Dabdoub,3018 Canaan Pl.,,Mandeville,LA,70448-6300,985-966-3392,W,M,R,064,02/20/2012,02/20/2008,Mr. Dabdoub -RPEC Member ,at Large ,,,,LA,,,ST. TAMMANY,Pamela B. Egan,190 Eagle Rd.,,Covington,LA,70435-9426,985-898-0770,W,F,R,064,02/20/2012,02/20/2008,Ms. Egan -RPEC Member ,at Large ,,,,LA,,,ST. TAMMANY,Kristin McLaren,106 Trinity Ln.,,Mandeville,LA,70471,985-626-9050,W,F,R,064,02/20/2012,02/20/2008,Ms. McLaren -RPEC Member ,at Large ,,,,LA,,,ST. TAMMANY,Wynn Williams,1538 Monaco Dr.,,Slidell,LA,70458,985-640-4289,W,F,R,064,02/20/2012,02/20/2008,Ms. Williams -RPEC Member ,District 1 ,,,,LA,,,ST. TAMMANY,Mark Wright,16 Ellen Dr.,,Covington,LA,70433,985-809-7356,W,M,R,066,02/20/2012,02/20/2008,Mr. Wright -RPEC Member ,District 2 ,,,,LA,,,ST. TAMMANY,Peter F. Egan,190 Eagle Rd.,,Covington,LA,70435-9426,985-898-0770,W,M,R,066,02/20/2012,02/20/2008,Mr. Egan -RPEC Member ,District 3 ,,,,LA,,,ST. TAMMANY,,,,,,,,,,,066 -RPEC Member ,District 4 ,,,,LA,,,ST. TAMMANY,Evans C. Spiceland,123 W. Ruelle Dr.,,Mandeville,LA,70471-1750,985-845-0315,W,M,R,066,02/20/2012,02/26/2008,Mr. Spiceland -RPEC Member ,District 5 ,,,,LA,,,ST. TAMMANY,James Hartman,70386 A St.,,Covington,LA,70433-5452,504-458-4600,W,M,R,066,02/20/2012,02/20/2008,Mr. Hartman -RPEC Member ,District 6 ,,,,LA,,,ST. TAMMANY,William Songy,37145 Harper Rd. #2,,Pearl River,LA,70452,985-502-0857,W,M,R,066,02/20/2012,02/20/2008,Mr. Songy -RPEC Member ,District 7 ,,,,LA,,,ST. TAMMANY,Sharon A. Shad,61130 Timberbend Dr.,,Lacombe,LA,70445,985-966-2308,W,F,R,066,02/20/2012,02/20/2008,Ms. Shad -RPEC Member ,District 8 ,,,,LA,,,ST. TAMMANY,Stephanie H. Berault,433 Aire Ct.,,Slidell,LA,70461-6007,985-643-4422,W,F,R,066,02/20/2012,02/20/2008,Ms. Berault -RPEC Member ,District 9 ,,,,LA,,,ST. TAMMANY,Donna Holmes Faucheux,2029 Hampshire Dr.,,Slidell,LA,70461-5084,985-649-3537,W,F,R,066,02/20/2012,02/20/2008,Ms. Faucheux -RPEC Member ,District 10 ,,,,LA,,,ST. TAMMANY,Stewart R. Shields,2337 Butterfly Ct.,,Mandeville,LA,70448,985-624-4439,W,M,R,066,02/20/2012,02/20/2008,Mr. Shields -RPEC Member ,District 11 ,,,,LA,,,ST. TAMMANY,"James ""Jim"" Shea",432 Westminster Dr.,,Slidell,LA,70460,985-643-5349,W,M,R,066,02/20/2012,02/20/2008,Mr. Shea -RPEC Member ,District 12 ,,,,LA,,,ST. TAMMANY,Mark Sigur,P. O. Box 2616,,Slidell,LA,70459,985-643-6741,W,M,R,066,02/20/2012,02/20/2008,Mr. Sigur -RPEC Member ,District 13 ,,,,LA,,,ST. TAMMANY,Kevin G. Barkemeyer,116 Columbia Pl.,,Slidell,LA,70458-9148,985-649-5920,W,M,R,066,02/20/2012,02/20/2008,Mr. Barkemeyer -RPEC Member ,District 14 ,,,,LA,,,ST. TAMMANY,Mary A. Bishop,P. O. Box 4083,,Slidell,LA,70459,985-646-2848,W,F,R,066,02/20/2012,02/20/2008,Ms. Bishop -Sheriff ,,P. O. Box 1120,,Covington,LA,70434,985-809-8200,ST. TAMMANY,"R. Jack Strain, Jr.",P.O. Box 1120,,Covington,LA,70434,985-809-8207,,,R,225,06/30/2012,07/01/2008,Sheriff Strain -Clerk of Court ,,P. O. Box 1090,,Covington,LA,70434,985-809-8700,ST. TAMMANY,"""Malise"" Prieto",P. O. Box 1090,,Covington,LA,70434,,W,F,R,230,06/30/2012,07/01/2008,Ms. Prieto -Assessor ,,701 N. Columbia,,Covington,LA,70433,985-809-8180,ST. TAMMANY,Patricia Schwarz Core,200 Lakeside Ct.,,Covington,LA,70435-5542,985-898-0660,W,F,R,235,12/31/2012,01/01/2009,Ms. Core -Coroner ,,550 Brownswitch Road,,Slidell,LA,70458,985-781-1150,ST. TAMMANY,Peter R. Galvan,550 Brownswitch Rd.,,Slidell,LA,70458,985-768-0151,W,M,R,240,03/25/2012,03/24/2008,Mr. Galvan -Parish President ,,P.O. Box 628,,Covington,LA,70434,985-898-2591,ST. TAMMANY,Kevin C. Davis,718 Teddy Ave.,,Slidell,LA,70458,985-898-2700,W,M,R,243,01/09/2012,01/14/2008,Mr. Davis -Council Member,District 1,P. O. Box 628,,Covington,LA,70434,985-898-2591,ST. TAMMANY,"John M. ""Marty"" Dean",19 Kathleen Dr.,,Covington,LA,70433,985-789-7444,W,M,R,245,01/09/2012,01/14/2008,Mr. Dean -Council Member ,District 2 ,P. O. Box 628,,Covington,LA,70434,985-898-2591,ST. TAMMANY,Gary Cooper,22078 Sharp Chapel Rd.,,Bush,LA,70431,985-893-0789,W,M,R,245,01/09/2012,01/14/2008,Mr. Cooper -Council Member ,District 3 ,P. O. Box 628,,Covington,LA,70434,985-898-2591,ST. TAMMANY,"James A. ""Red"" Thompson, II",78111 J & B Rd.,,Folsom,LA,70437,985-796-0038,W,M,D,245,01/09/2012,01/14/2008,Mr. Thompson -Council Member ,District 4 ,P. O. Box 628,,Covington,LA,70434,985-898-2591,ST. TAMMANY,Reid Falconer,67 Magnolia Ridge Dr.,,Madisonville,LA,70447-9791,985-845-8983,W,M,R,245,01/09/2012,01/14/2008,Mr. Falconer -Council Member ,District 5 ,P. O. Box 628,,Covington,LA,70434,985-898-2591,ST. TAMMANY,"Martin W. ""Marty"" Gould, Jr.",300 Buckthorn Cir.,,Covington,LA,70433,985-869-2267,W,M,R,245,01/09/2012,01/14/2008,Mr. Cloud -Council Member ,District 6 ,P. O. Box 628,,Covington,LA,70434,985-898-2591,ST. TAMMANY,"Rebecca L. ""Becky"" Crawford",34441 Max Mercer Ln.,,Pearl River,LA,70452-2801,985-863-7007,W,F,D,245,01/09/2012,01/14/2008,Ms. Crawford -Council Member ,District 7 ,P. O. Box 628,,Covington,LA,70434,985-898-2591,ST. TAMMANY,"""Al"" Hamauei",60162 Oaklawn Ave.,,Lacombe,LA,70445,985-882-5735,W,M,R,245,01/09/2012,01/14/2008,Mr. Hamauei -Council Member ,District 8 ,P. O. Box 628,,Covington,LA,70434,985-898-2591,ST. TAMMANY,"Christopher ""Chris"" Canulette",109 Stratford Dr.,,Slidell,LA,70458-1745,985-290-6751,W,M,R,245,01/09/2012,01/14/2008,Mr. Canulette -Council Member ,District 9 ,P. O. Box 628,,Covington,LA,70434,985-898-2591,ST. TAMMANY,"""Gene"" Bellisaro",510 Bradford Dr.,,Slidell,LA,70461,985-641-2268,W,M,R,245,01/09/2012,01/14/2008,Mr. Bellisaro -Council Member ,District 10 ,,,,LA,,,ST. TAMMANY,Henry Billiot,821 Asbury Dr.,,Mandeville,LA,70471,985-373-0316,W,M,R,245,01/09/2012,01/14/2008,Mr. Billiot -Council Member ,District 11 ,,,,LA,,,ST. TAMMANY,"""Steve"" Stefancik",107 Royal Dr.,,Slidell,LA,70460,985-649-4580,W,M,R,245,01/09/2012,01/14/2008,Mr. Stefancik -Council Member ,District 12 ,,,,LA,,,ST. TAMMANY,"""Jerry"" Binder",470 Hickory Dr.,,Slidell,LA,70458,985-641-7064,W,M,R,245,01/09/2012,01/14/2008,Mr. Binder -Council Member ,District 13 ,,,,LA,,,ST. TAMMANY,"Richard ""Richie"" Artigue",53057 Hwy. 433,,Slidell,LA,70461,985-649-8952,W,M,R,245,01/09/2012,01/14/2008,Mr. Artigue -Council Member ,District 14 ,,,,LA,,,ST. TAMMANY,"Kenneth ""Ken"" Burkhalter",P.O. Box 1489,,Slidell,LA,70459,985-649-6674,,M,D,245,01/09/2012,01/14/2008,Mr. Burkhalter -City Judge ,"City Court, City of Slidell ",P. O. Box 1094,,Slidell,LA,70459,985-643-1274,ST. TAMMANY,"James ""Jim"" Lamz","636 Gause Blvd., Ste. 303",,Slidell,LA,70458,985-847-9757,W,M,R,250,12/31/2014,01/22/2009,Judge Lamz -City Marshal ,"City Court, City of Slidell ",P. O. Box 1094,,Slidell,LA,70459,985-847-1901,ST. TAMMANY,Wyatt Williams,200 Branch Rd.,,Slidell,LA,70461,985-643-4078,W,M,R,250,12/31/2014,01/01/2009,Marshal Williams -Member of School Board ,District 1 ,P. O. Box 940,,Covington,LA,70434,985-898-3214,ST. TAMMANY,Neal Hennegan,410 Magnolia Ln.,,Mandeville,LA,70471-1647,985-845-0863,W,M,R,255,12/31/2010,01/01/2007,Mr. Hennegan -Member of School Board ,District 2 ,P. O. Box 940,,Covington,LA,70434,985-898-3214,ST. TAMMANY,"Elizabeth B. ""Beth"" Heintz",908 W. 13th Ave.,,Covington,LA,70433-2408,985-892-2675,W,F,R,255,12/31/2010,01/01/2007,Ms. Heintz -Member of School Board ,District 3 ,P. O. Box 940,,Covington,LA,70434,985-898-3214,ST. TAMMANY,"Michael J. ""Mike"" Dirmann",711 Covington Point Dr.,,Covington,LA,70433-1563,985-893-4603,W,M,D,255,12/31/2010,01/01/2007,Mr. Dirmann -Member of School Board ,District 4 ,P. O. Box 940,,Covington,LA,70434,985-898-3214,ST. TAMMANY,"Stephen J. ""Jack"" Loup, III",11198 Willie Cemetery Rd.,,Folsom,LA,70437,985-796-3771,W,M,R,255,12/31/2010,01/01/2007,Mr. Loup -Member of School Board ,District 5 ,P. O. Box 940,,Covington,LA,70434,985-898-3214,ST. TAMMANY,Charles T. Harrell,23284 Oak Alley Pl.,,Covington,LA,70435-6607,985-893-8020,W,M,R,255,12/31/2010,01/01/2007,Mr. Harrell -Member of School Board ,District 6 ,P. O. Box 940,,Covington,LA,70434,985-898-3214,ST. TAMMANY,Donald J. Villere,584 Park Ave.,,Mandeville,LA,70448-4915,985-626-7291,W,M,R,255,12/31/2010,01/01/2007,Mr. Villere -Member of School Board ,District 7 ,P. O. Box 940,,Covington,LA,70434,985-898-3214,ST. TAMMANY,"Judy L. Palmer, ",P.O. Box 868,,Lacombe,LA,70445,985-882-3392,,,,255,,12/19/2009,Ms. Palmer -Member of School Board ,District 8 ,P. O. Box 940,,Covington,LA,70434,985-898-3214,ST. TAMMANY,Daniel Glen Zechenelly,69219 Taylor Rd.,,Pearl River,LA,70452-5903,985-882-1188,W,M,D,255,12/31/2010,01/01/2007,Mr. Zechnelley -Member of School Board ,District 9 ,P. O. Box 940,,Covington,LA,70434,985-898-3214,ST. TAMMANY,Robin Mullett,32 Oak Grove Way,,Slidell,LA,70458,985-290-1166,W,F,R,255,12/31/2010,10/27/2009,Ms. Mullett -Member of School Board ,District 10 ,P. O. Box 940,,Covington,LA,70434,985-898-3214,ST. TAMMANY,"""Ron"" Bettencourtt",P. O. Box 8944,,Mandeville,LA,70470,985-373-4716,W,M,R,255,12/31/2010,01/01/2007,Mr. Bettencourt -Member of School Board ,District 11 ,P. O. Box 940,,Covington,LA,70434,985-898-3214,ST. TAMMANY,"Robert R. ""Bob"" Womack",1343 Sunset Dr.,,Slidell,LA,70460-2517,985-641-4454,,,R,255,12/31/2010,01/01/2007,Mr. Womack -Member of School Board ,District 12 ,P. O. Box 940,,Covington,LA,70434,985-898-3214,ST. TAMMANY,"James ""Ronnie"" Panks, Sr.",3846 Oxford St.,,Slidell,LA,70458-5240,985-290-0423,W,M,R,255,12/31/2010,01/01/2007,Mr. Panks -Member of School Board ,District 13 ,P. O. Box 940,,Covington,LA,70434,985-898-3214,ST. TAMMANY,John C. Lamarque,648 Maine Ave.,,Slidell,LA,70458,985-643-4656,W,M,D,255,12/31/2010,01/01/2007,Mr. Lamarque -Member of School Board ,District 14 ,,,,LA,,,ST. TAMMANY,Ray Anthony Alfred,57097 Pace Rd.,,Slidell,LA,70461-2505,985-649-0136,B,M,D,255,12/31/2010,01/01/2007,Mr. Alfred -Member of School Board ,District 15 ,,,,LA,,,ST. TAMMANY,Mary K. Bellisario,510 Bradford Dr.,,Slidell,LA,70461-4910,985-641-2268,W,F,R,255,12/31/2010,01/01/2007,Ms. Bellisario -Justice of the Peace ,Justice of the Peace Ward 1 ,76347 Hwy. 1077,,Folsom,LA,70437,985-796-5455,ST. TAMMANY,Gregory B. Badeaux,131 Windermere Way,,Madisonville,LA,70447,985-845-1416,W,M,R,265,12/31/2014,01/01/2009,Mr. Badeaux -Justice of the Peace ,Justice of the Peace Ward 1 ,76347 Hwy. 1077,,Folsom,LA,70437,985-796-5455,ST. TAMMANY,Charles Wohltmann,68 Zinnia Dr.,,Covington,LA,70433,985-893-5622,W,M,R,265,12/31/2014,01/01/2009,Mr. Wohltmann -Justice of the Peace ,Justice of the Peace Ward 2 ,21336 Birtrue Rd.,,Bush,LA,70431-2702,985-875-0644,ST. TAMMANY,"""Tim"" Garlick",21336 Birtrue Rd.,,Bush,LA,70431,985-875-0644,W,M,R,265,12/31/2014,01/01/2009,Mr. Garlick -Justice of the Peace ,Justice of the Peace Ward 2 ,21336 Birtrue Rd.,,Bush,LA,70431-2702,985-875-0644,ST. TAMMANY,Juanita F. Mizell,80414 N. Willie Rd.,,Folsom,LA,70437,985-796-1860,W,F,R,265,12/31/2014,01/01/2009,Ms. Mizell -Justice of the Peace ,Justice of the Peace Ward 3 ,73477 Tammy Ln.,,Covington,LA,70435,985-892-4486,ST. TAMMANY,Connie G. Moore,73477 Tammy Ln.,,Covington,LA,70435,985-892-4486,W,F,R,265,12/31/2014,01/01/2009,Ms. Moore -Justice of the Peace ,Justice of the Peace Ward 4 ,1280 Clausel St.,,Mandeville,LA,70448,985-626-9382,ST. TAMMANY,Susan Tingstrom Leonard,225 St. Ann Dr.,,Mandeville,LA,70471,985-624-6635,W,F,R,265,12/31/2014,01/01/2009,Ms. Leonard -Justice of the Peace ,Justice of the Peace Ward 4 ,1280 Clausel St.,,Mandeville,LA,70448,985-626-9382,ST. TAMMANY,Marie M. Taylor,1449 Montmartre St.,,Mandeville,LA,70448,985-626-9120,W,F,R,265,12/31/2014,01/01/2009,Ms. Taylor -Justice of the Peace ,Justice of the Peace Ward 5 ,31392 Cowart-Bush Rd.,,Bush,LA,70431,985-886-3805,ST. TAMMANY,"James ""PeeWee"" Kahl",31392 Cowart-Bush Rd.,,Bush,LA,70431,985-886-2030,W,M,,265,12/31/2014,01/01/2009,Mr. Kahl -Justice of the Peace ,Justice of the Peace Ward 6 ,38090 Julia Dr.,,Pearl River,LA,70452,985-863-7007,ST. TAMMANY,Trecia Kennedy,67776 Hwy. 41,,Pearl River,LA,70452,985-863-2633,W,F,R,265,12/31/2014,01/01/2009,Ms. Kennedy -Justice of the Peace ,Justice of the Peace Ward 7 ,61261 Anchorage Dr.,,Lacombe,LA,70445,985-882-7051,ST. TAMMANY,Dewey Spies,59232 Pine Bay Ln.,,Lacombe,LA,70445,985-882-6861,W,M,R,265,12/31/2014,01/01/2009,Mr. Spies -Justice of the Peace ,Justice of the Peace Ward 8 ,4130 Audubon St.,,Slidell,LA,70461,985-781-7639,ST. TAMMANY,Tracey Turgeau Powell,"100 Galeria Blvd., Ste. 4",,Slidell,LA,70458,985-643-1711,W,F,R,265,12/31/2014,01/01/2009,Ms. Powell -Justice of the Peace ,Justice of the Peace Ward 10 ,74184 Allen Rd.,,Abita Springs,LA,70420,985-373-5970,ST. TAMMANY,"Olivia ""Levie"" Hannan",74184 Allen Rd.,,Abita Springs,LA,70420,985-875-7744,W,F,,265,12/31/2014,01/01/2009,Ms. Hannan -Justice of the Peace ,Justice of the Peace Ward 10 ,74184 Allen Rd.,,Abita Springs,LA,70420,985-373-5970,ST. TAMMANY,Lisa C. King,23495 Silver Springs Dr.,,Abita Springs,LA,70420,985-892-6450,W,F,R,265,12/31/2014,01/01/2009,Ms. King -Constable ,Justice of the Peace Ward 1 ,76021 Country Club,,Covington,LA,70435-0632 ,985-893-3823,ST. TAMMANY,"P. Wallace ""Wally"" Gottschalk",10080 Breen Rd.,,Covington,LA,70435,985-892-3411,W,M,R,267,12/31/2014,01/01/2009,Mr. Gottschalk -Constable ,Justice of the Peace Ward 1 ,76021 Country Club,,Covington,LA,70435-0632 ,985-893-3823,ST. TAMMANY,Blake Pennington,P.O. Box 955,,Madisonville,LA,70447,985-792-0531,W,M,R,267,12/31/2014,01/01/2009,Mr. Pennington -Constable ,Justice of the Peace Ward 2 ,81072 O.K. Lane,,Covington,LA,70435,985-892-7143,ST. TAMMANY,"Tilman ""Pete"" King",81191 Ben King Rd.,,Bush,LA,70431,985-892-0502,W,M,R,267,12/31/2014,01/01/2009,Mr. King -Constable ,Justice of the Peace Ward 2 ,81072 O.K. Lane,,Covington,LA,70435,985-892-7143,ST. TAMMANY,"John Thomas Mathies, III",396 Village Farms Ln.,,Folsom,LA,70437,985-796-0012,,,R,267,12/31/2014,01/01/2009,Mr. Mathies -Constable ,Justice of the Peace Ward 3 ,P.O. Box 1133,,Covington,LA,70435,985-892-4486,ST. TAMMANY,"Richard ""Rick"" Moore",73477 Tammy Ln.,,Covington,LA,70435,985-892-4486,W,M,R,267,12/31/2014,01/01/2009,Mr. King -Constable ,Justice of the Peace Ward 3 ,P.O. Box 1133,,Covington,LA,70435,985-892-4486,ST. TAMMANY,"Tasso ""Tiger"" Taylor, III",P.O. Box 1441,,Covington,LA,70435,985-892-5997,W,M,R,267,12/31/2014,01/01/2009,Mr. Taylor -Constable ,Justice of the Peace Ward 4 ,555 Kimberly Ann Dr.,,Mandeville,LA,70471,985-845-4694,ST. TAMMANY,Michael Hand,555 Kimberly Ann Dr.,,Mandeville,LA,70471,985-845-4694,W,M,R,267,12/31/2014,01/01/2009,Mr. Hand -Constable ,Justice of the Peace Ward 4 ,555 Kimberly Ann Dr.,,Mandeville,LA,70471,985-845-4694,ST. TAMMANY,"""Eddie"" Schmidt",116 Acadian Ln.,,Mandeville,LA,70471,985-792-1287,W,M,R,267,12/31/2014,01/01/2009,Mr. Schmidt -Constable ,Justice of the Peace Ward 5 ,79200 Watts Thomas Rd.,,Bush,LA,70431,985-886-3439,ST. TAMMANY,"""Woody"" Crawford",79218 Watts Thomas Rd.,,Bush,LA,70431,985-886-3439,W,M,O,267,12/31/2014,01/01/2009,Mr. Crawford -Constable ,Justice of the Peace Ward 6 ,36228 Lock 1 Rd.,,Pearl River,LA,70452,985-863-5074,ST. TAMMANY,Elton N. Jordan,35274 Firetower Rd.,,Pearl River,LA,70452,985-768-9600,W,M,,267,12/31/2014,01/01/2009,Mr. Jordan -Constable ,Justice of the Peace Ward 7 ,P.O. Box 752,,Lacombe,LA,70445,985-882-7869,ST. TAMMANY,"""Greg"" Chabreck",P.O. Box 752,,Lacombe,LA,70445,985-882-7869,W,M,R,267,12/31/2014,01/01/2009,Mr. Chabreck -Constable ,Justice of the Peace Ward 8 ,64511 Church St.,,Pearl River,LA,70452,985-863-5267,ST. TAMMANY,Floyd Trascher,64511 Church St.,,Pearl River,LA,70452,985-863-5267,W,M,R,267,12/31/2014,01/01/2009,Mr. Trascher -Constable ,Justice of the Peace Ward 10 ,22249 7th St.,,Abita Springs,LA,70420-3733,985-892-7458,ST. TAMMANY,"David M. ""Mike"" Davis",22249 Seventh St.,,Abita Springs,LA,70420,985-892-7458,W,M,R,267,12/31/2014,01/01/2009,Mr. Davis -Constable ,Justice of the Peace Ward 10 ,22249 7th St.,,Abita Springs,LA,70420-3733,985-892-7458,ST. TAMMANY,Leonard William Lenel,75420 Lenel Rd.,,Covington,LA,70435,985-892-7395,W,M,O,267,12/31/2014,01/01/2009,Mr. Lenel -Mayor ,City of Covington ,P. O. Box 778,,Covington,LA,,985-892-1811,ST. TAMMANY,Candace Watkins,P.O. Box 778,,Covington,LA,70434,985-898-1941,W,F,R,300,07/04/2011,07/01/2007,Mayor Watkins -Mayor ,City of Mandeville ,3101 E. Causeway Approach,,Mandeville,LA,,985-626-3144,ST. TAMMANY,Edward P. Lyons,3101 East Causeway Approach,,Mandeville,LA,70448,,,,,300,,10/17/2009,Mayor Lyons -Mayor ,City of Slidell ,P. O. Box 828,,Slidell,LA,,985-646-4307,ST. TAMMANY,"""Ben"" Morris",P.O. Box 828,,Slidell,LA,70459,985-646-4332,W,M,R,300,07/05/2010,07/03/2006,Mayor Morris -Mayor ,Town of Abita Springs ,P. O. Box 461,,Abita Springs,LA,,985-892-0711,ST. TAMMANY,Louis Fitzmorris,P.O. Box 472,,Abita Springs,LA,70420,985-892-0711,W,M,O,300,12/31/2010,01/01/2007,Mr. Fitzmorris -Mayor ,Town of Madisonville ,P. O. Box 160,,Madisonville,LA,,985-845-7311,ST. TAMMANY,"Peter Gitz, Jr.",P.O. Box 122,,Madisonville,LA,70447,985-845-3334,,,R,300,06/30/2012,07/01/2008,Mayor Gitz -Mayor ,Town of Pearl River ,P. O. Box 1270,,Pearl River,LA,,985-863-5800,ST. TAMMANY,James Lavigne,P.O. Box 1270,,Pearl River,LA,70452,985-863-7071,,,D,300,12/31/2010,01/01/2007,Mr. Lavigne -Mayor ,Village of Folsom ,P. O. Box 609,,Folsom,LA,,985-796-5607,ST. TAMMANY,Marshell Brumfield,P.O. Box 609,,Folsom,LA,70437,985-796-3778,B,M,D,300,12/31/2010,01/01/2007,Mr. Brumfield -Mayor ,Village of Sun ,P. O. Box 818,,Sun,LA,,985-886-5500,ST. TAMMANY,Barbara Gibson,P.O. Box 891,,Sun,LA,70463,985-886-5500,W,F,D,300,06/30/2011,07/01/2007,Mayor Gibson -Chief of Police ,City of Slidell ,P. O. Box 828,,Slidell,LA,70459,985-646-4307,ST. TAMMANY,"""Freddy"" Drennan",815 W. Hall Ave.,,Slidell,LA,70460,985-646-4285,W,M,R,305,07/05/2010,07/03/2006,Chief Drennan -Chief of Police ,Town of Pearl River ,P. O. Box 1270,,Pearl River,LA,70452,385-863-5800,ST. TAMMANY,"""Bennie"" Raynor",39449 Maple St.,,Pearl River,LA,70452,985-863-2883,W,M,D,305,12/31/2010,01/01/2007,Mr. Raynor -Council Member at Large ,City of Mandeville ,3101 E. Causeway Approach,,Mandeville,LA,70448-3592,985-626-3144,ST. TAMMANY,Adelaide J. Boettner,2815 North St.,,Mandeville,LA,70448-4904,985-264-9277,W,F,R,308,07/01/2012,07/01/2008,Ms. Boettner -Council Member at Large ,City of Mandeville ,3101 E. Causeway Approach,,Mandeville,LA,70448-3592,985-626-3144,ST. TAMMANY,Trilby Lenfant,16 Preserve Ln.,,Mandeville,LA,70471-2937,985-626-4312,W,F,R,308,07/01/2012,07/01/2008,Ms. Lenfant -Council Member at Large ,City of Slidell ,,,,LA,,,ST. TAMMANY,L. Landon Cusimano,311 Michigan Ave.,,Slidell,LA,70458,985-649-5449,W,M,R,308,07/05/2010,11/27/2007,Mr. Cusimano -Council Member at Large ,City of Slidell ,,,,LA,,,ST. TAMMANY,"L. Landon Cusimano, ",311 Michigan Ave.,,Slidell,LA,70458-2731,985-649-5449,W,M,R,308 -Council Member at Large ,City of Slidell ,,,,LA,,,ST. TAMMANY,Kim Baronet Harbison,315 Oriole Ln.,,Slidell,LA,70458,985-640-5049,W,F,R,308,07/05/2010,04/14/2009,Ms. Harbison -Council Member at Large ,City of Slidell ,,,,LA,,,ST. TAMMANY,"Kim Baronet Harbison, ",315 Oriole Ln.,,Slidell,LA,70458-1631,985-649-4438,W,F,R,308 -Councilman at Large ,City of Covington ,P. O. Box 778,,Covington,LA,70434,985-892-1811,ST. TAMMANY,"W. T. ""Trey"" Blackall, III",1006 S. Filmore St.,,Covington,LA,70433,985-966-2503,W,M,R,308,07/04/2011,07/01/2007,Mr. Blackall -Councilman at Large ,City of Covington ,P. O. Box 778,,Covington,LA,70434,985-892-1811,ST. TAMMANY,"""Matt"" Faust",602 Phyllis Dr.,,Covington,LA,70433-4253,985-893-3740,W,M,R,308,07/04/2011,07/01/2007,Mr. Faust -Alderman ,Town of Abita Springs ,P. O. Box 461,,Abita Springs,LA,70420,985-892-0711,ST. TAMMANY,Sheri Sable Campbell,72110 Gum St.,,Abita Springs,LA,70420,985-875-1247,W,F,O,310,12/31/2010,01/01/2007,Ms. Campbell -Alderman ,Town of Abita Springs ,P. O. Box 461,,Abita Springs,LA,70420,985-892-0711,ST. TAMMANY,Troy Dugas,72099 Hickory St.,,Abita Springs,LA,70420-3931,985-630-1197,W,M,R,310,12/31/2010,01/01/2007,Mr. Dugas -Alderman ,Town of Abita Springs ,P. O. Box 461,,Abita Springs,LA,70420,985-892-0711,ST. TAMMANY,Patricia Edmiston,72286 Gordon Ave.,,Abita Springs,LA,70420-3548,985-809-7393,,F,D,310,12/31/2010,01/01/2007,Ms. Edmiston -Alderman ,Town of Abita Springs ,P. O. Box 461,,Abita Springs,LA,70420,985-892-0711,ST. TAMMANY,"""Greg"" Lemons",71361 St. Joseph St.,,Abita Springs,LA,70420,985-809-7592,W,M,R,310,12/31/2010,01/01/2007 -Alderman ,Town of Abita Springs ,P. O. Box 461,,Abita Springs,LA,70420,985-892-0711,ST. TAMMANY,"W. E. ""Pat"" Patterson, III",72104 Laurel St.,,Abita Springs,LA,70420,985-871-4211,W,M,R,310,12/31/2010,01/01/2007,Mr. Patterson -Alderman ,Town of Pearl River ,P. O. Box 1270,,Pearl River,LA,70452,385-863-5800,ST. TAMMANY,Marie Crowe,65190 Hwy. 3081,,Pearl River,LA,70452-5142,985-863-9373,W,F,D,310,12/31/2010,01/01/2007,Ms. Crowe -Alderman ,Town of Pearl River ,P. O. Box 1270,,Pearl River,LA,70452,385-863-5800,ST. TAMMANY,Ruby Gauley,39107 McQueen Rd.,,Pearl River,LA,70452,985-863-7258,W,F,R,310,12/31/2010,01/01/2007,Ms. Gauley -Alderman ,Town of Pearl River ,P. O. Box 1270,,Pearl River,LA,70452,385-863-5800,ST. TAMMANY,David McQueen,P.O. Box 371,,Pearl River,LA,70452,985-960-1172,W,M,D,310,12/31/2010,01/01/2007,Mr. McQueen -Alderman ,Town of Pearl River ,P. O. Box 1270,,Pearl River,LA,70452,385-863-5800,ST. TAMMANY,Virgil R. Phillips,39110 Craddock Ln.,,Pearl River,LA,70452,985-863-9495,W,M,,310,12/31/2010,01/01/2007,Mr. Phillips -Alderman ,Town of Pearl River ,P. O. Box 1270,,Pearl River,LA,70452,385-863-5800,ST. TAMMANY,Jay Scroggins,65078 Bancks St.,,Pearl River,LA,70452-5100,985-863-9904,W,M,R,310,12/31/2010,01/01/2007,Mr. Scroggins -Alderman ,Village of Folsom ,P. O. Box 609,,Folsom,LA,70437,985-796-5607,ST. TAMMANY,Phillip Bickham,P.O. Box 914,,Folsom,LA,70437,985-796-3041,,,,310,12/31/2010,10/30/2007,Mr. Bickham -Alderman ,Village of Folsom ,P. O. Box 609,,Folsom,LA,70437,985-796-5607,ST. TAMMANY,"Ronald W. ""Ronnie"" Holliday",82286 Olive St.,,Folsom,LA,70437,985-796-5689,W,M,D,310,12/31/2010,10/30/2007,Mr. Holliday -Alderman ,Village of Folsom ,P. O. Box 609,,Folsom,LA,70437,985-796-5607,ST. TAMMANY,"""Ken"" Wilt",418 Acadian Dr.,,Folsom,LA,70437,985-796-8082,W,M,,310,12/31/2010,10/30/2007,Mr. Wilt -Alderman ,Village of Sun ,P. O. Box 818,,Sun,LA,70463,985-886-5500,ST. TAMMANY,Burrell Mullett,P.O. Bix 979,,Sun,LA,70463,985-516-3114,W,M,D,310,06/30/2011,07/01/2007,Mr. Mullett -Alderman ,Village of Sun ,P. O. Box 818,,Sun,LA,70463,985-886-5500,ST. TAMMANY,William M. Rivers,83445 Rivers Dr.,,Sun,LA,70427,985-886-1016,W,M,D,310,06/30/2011,07/01/2007,Mr. Rivers -Alderman ,Village of Sun ,P. O. Box 818,,Sun,LA,70463,985-886-5500,ST. TAMMANY,"Will Talley, ",29334 Hwy. 16,,Sun,LA,70463,985-237-9622,W,M,N,310,,02/15/2010 -Alderman ,Village of Sun ,P. O. Box 818,,Sun,LA,70463,985-886-5500,ST. TAMMANY,Will F. Talley,29334 Hwy 16,,Bogalusa,LA,70427,,,,,310,,09/08/2009,Mr. Talley -Council Member ,"District A, City of Slidell ",P.O. Box 828,,Slidell,LA,70459-0828 ,985-646-4307,ST. TAMMANY,Lionel J. Hicks,P.O. Box 939,,Slidell,LA,70459,985-290-8853,B,M,D,310,07/05/2010,07/03/2006,Mr. Hicks -Council Member ,"District A, City of Slidell ",P.O. Box 828,,Slidell,LA,70459-0828 ,985-646-4307,ST. TAMMANY,"Lionel J. Hicks, ",3103 Terrace Ave.,,Slidell,LA,70458-4523,985-641-4452,B,M,D,310 -Council Member ,"District B, City of Slidell ",P.O. Box 828,,Slidell,LA,70459-0828 ,985-646-4307,ST. TAMMANY,"Richard ""Rickey"" Hursey",305 Cumberland Dr.,,Slidell,LA,70458,985-646-0928,W,M,R,310,07/05/2010,07/03/2006,Mr. Hursey -Council Member ,"District C, City of Slidell ",P.O. Box 828,,Slidell,LA,70459-0828 ,985-646-4307,ST. TAMMANY,Warren Crockett,707 Maine Ave.,,Slidell,LA,70458,504-628-8529,W,M,R,310,07/05/2010,07/03/2006,Mr. Crockett -Council Member ,"District D, City of Slidell ",P.O. Box 828,,Slidell,LA,70459-0828 ,985-646-4307,ST. TAMMANY,"""Joe"" Fraught",1043 St. Peter Dr.,,Slidell,LA,70460,985-641-4255,W,M,R,310,07/05/2010,07/03/2006,Mr. Fraught -Council Member ,"District D, City of Slidell ",P.O. Box 828,,Slidell,LA,70459-0828 ,985-646-4307,ST. TAMMANY,"""Joe"" Fraught, ",1043 St. Peter Dr.,,Slidell,LA,70460-2327,985-641-4255,W,M,R,310 -Council Member ,"District E, City of Slidell ",P.O. Box 828,,Slidell,LA,70459-0828 ,985-646-4307,ST. TAMMANY,"""Ray"" Canada",1100 Rue Latour,,Slidell,LA,70458-2220,985-640-0266,W,M,R,310,07/05/2010,07/03/2006,Mr. Canada -Council Member ,"District E, City of Slidell ",P.O. Box 828,,Slidell,LA,70459-0828 ,985-646-4307,ST. TAMMANY,"Salvatore A. ""Sam"" Caruso, ",1557 Eastwood Dr.,,Slidell,LA,70458-3109,985-641-7289,W,M,R,310 -Council Member ,"District F, City of Slidell ",P.O. Box 828,,Slidell,LA,70459-0828 ,985-646-4307,ST. TAMMANY,James A. Devereux,P.O. Box 828,,Slidell,LA,70459,,,,,310,,04/28/2009,Mr. Devereux -Council Member ,"District G, City of Slidell ",P.O. Box 828,,Slidell,LA,70459-0828 ,985-646-4307,ST. TAMMANY,"""Bill"" Borchert, Jr.",1068 Front St.,,Slidell,LA,70458,985-649-4519,W,M,R,310,07/04/2010,12/21/2007,Mr. Borchert -Council Member ,"District G, City of Slidell ",P.O. Box 828,,Slidell,LA,70459-0828 ,985-646-4307,ST. TAMMANY,"""Bill"" Borchert, Jr.",322 Landon Dr.,,Slidell,LA,70458-1318,985-640-2266,W,M,R,310 -Council Member I ,"District A, City of Mandeville ",3101 E. Causeway Approach,,Mandeville,LA,70448-3592,985-626-3144,ST. TAMMANY,"Gerard F. Coogan, Jr.",525 Kinberly Ann,,Mandeville,LA,70471,985-626-9570,W,M,R,310,07/01/2012,07/01/2008,Mr. Coogan -Council Member II ,"District B, City of Mandeville ",3101 E. Causeway Approach,,Mandeville,LA,70448-3592,985-626-3144,ST. TAMMANY,Carla Buchholz,227 Kimberly Dr.,,Mandeville,LA,70448,985-626-8852,W,F,R,310,07/01/2012,07/01/2008,Ms. Bucholz -Council Member III ,"District C, City of Mandeville ",3101 E. Causeway Approach,,Mandeville,LA,70448-3592,985-626-3144,ST. TAMMANY,John F. Bernard,321 Marigny Ave.,,Mandeville,LA,70448-5940,985-626-8150,W,M,R,310,07/01/2012,07/01/2008,Mr. Bernard -Councilman ,"District A, City of Covington ",P. O. Box 778,,Covington,LA,70434,985-892-1811,ST. TAMMANY,Frances R. Dunn,827 W. 31st Ave.,,Covington,LA,70433,985-893-6813,B,F,D,310,07/04/2011,07/01/2007,Ms. Dunn -Councilman ,"District B, City of Covington ",P. O. Box 778,,Covington,LA,70434,985-892-1811,ST. TAMMANY,Clarence Romage,706 Covington Point Dr.,,Covington,LA,70433,985-893-2033,W,M,D,310,07/04/2011,07/01/2007,Mr. Romage -Councilman ,"District C, City of Covington ",P. O. Box 778,,Covington,LA,70434,985-892-1811,ST. TAMMANY,Mark Sacco,24 Michelle Dr.,,Covington,LA,70433,985-237-9317,W,M,R,310,07/04/2011,07/01/2007,Mr. Sacco -Councilman ,"District D, City of Covington ",P. O. Box 778,,Covington,LA,70434,985-892-1811,ST. TAMMANY,"Martin J. ""Marty"" Benoit",P.O. Box 792,,Covington,LA,70434,985-892-8064,,,D,310,07/04/2011,07/01/2007,Mr. Benoit -Councilman ,"District E, City of Covington ",P. O. Box 778,,Covington,LA,70434,985-892-1811,ST. TAMMANY,Lee S. Alexius,400 S. New Hampshire St.,,Covington,LA,70433-3551,985-892-6507,W,M,R,310,07/04/2011,07/01/2007,Mr. Alexius -Councilman ,Town of Madisonville ,P. O. Box 160,,Madisonville,LA,70447,985-845-7311,ST. TAMMANY,Mark D. Badeaux,P.O. Box 156,,Madisonville,LA,70447,985-845-4328,W,M,D,310,06/30/2012,07/01/2008,Mr. Badeaux -Councilman ,Town of Madisonville ,P. O. Box 160,,Madisonville,LA,70447,985-845-7311,ST. TAMMANY,"""Jim"" Bouey",P.O. Box 142,,Madisonville,LA,70447,985-630-2962,W,M,R,310,06/30/2012,07/01/2008,Mr. Bouey -Councilman ,Town of Madisonville ,P. O. Box 160,,Madisonville,LA,70447,985-845-7311,ST. TAMMANY,"""Tim"" Bounds",401 Johnson St.,,Madisonville,LA,70447-9767,985-845-3371,W,M,R,310,06/30/2012,07/01/2008,Mr. Bounds -Councilman ,Town of Madisonville ,P. O. Box 160,,Madisonville,LA,70447,985-845-7311,ST. TAMMANY,Jerry Lange,P.O. Box 393,,Madisonville,LA,70447-0393 ,985-845-7442,,,D,310,06/30/2012,07/01/2008,Mr. Lange -Councilman ,Town of Madisonville ,P. O. Box 160,,Madisonville,LA,70447,985-845-7311,ST. TAMMANY,L. P. Ostendorf,P.O. Box 37,,Madisonville,LA,70447-0037 ,985-845-3312,,,D,310,06/30/2012,07/01/2008,Mr. Ostendorf -DPEC Member ,at Large ,,,,LA,,,TANGIPAHOA,"James ""Rube"" Ardillo",59621 Puleston Rd.,,Amite,LA,70422,985-507-7121,W,M,D,054,02/20/2012,02/20/2008,Mr. Ardillo -DPEC Member ,at Large ,,,,LA,,,TANGIPAHOA,"John Henry Wright, Sr.",49474 Whiskey Ln.,,Tickfaw,LA,70466,985-345-7585,B,M,D,054,02/20/2012,02/20/2008,Mr. Wright -DPEC Member ,District 1 ,,,,LA,,,TANGIPAHOA,Margaret Jackson Smith,P.O. Box 119,,Kentwood,LA,70444,985-514-1584,B,F,D,056,02/20/2012,02/20/2008,Ms. Smith -DPEC Member ,District 2 ,,,,LA,,,TANGIPAHOA,,,,,,,,,,,056 -DPEC Member ,District 3 ,,,,LA,,,TANGIPAHOA,Mia Lewis,P.O. Box 1493,,Amite,LA,70422,985-747-8830,B,F,D,056,02/20/2012,02/20/2008,Ms. Lewis -DPEC Member ,District 4 ,,,,LA,,,TANGIPAHOA,,,,,,,,,,,056 -DPEC Member ,District 5 ,,,,LA,,,TANGIPAHOA,,,,,,,,,,,056 -DPEC Member ,District 6 ,,,,LA,,,TANGIPAHOA,,,,,,,,,,,056 -DPEC Member ,District 7 ,,,,LA,,,TANGIPAHOA,,,,,,,,,,,056 -DPEC Member ,District 8 ,,,,LA,,,TANGIPAHOA,"""Sal"" Demarco",42114 Veterans Ave.,,Hammond,LA,70403,985-351-1963,W,M,D,056,02/20/2012,02/20/2008,Mr. Demarco -DPEC Member ,District 9 ,,,,LA,,,TANGIPAHOA,,,,,,,,,,,056 -DPEC Member ,District 10 ,,,,LA,,,TANGIPAHOA,,,,,,,,,,,056 -RPEC Member ,at Large ,,,,LA,,,TANGIPAHOA,,,,,,,,,,,064 -RPEC Member ,District 1 ,,,,LA,,,TANGIPAHOA,,,,,,,,,,,066 -RPEC Member ,District 2 ,,,,LA,,,TANGIPAHOA,,,,,,,,,,,066 -RPEC Member ,District 3 ,,,,LA,,,TANGIPAHOA,,,,,,,,,,,066 -RPEC Member ,District 4 ,,,,LA,,,TANGIPAHOA,,,,,,,,,,,066 -RPEC Member ,District 5 ,,,,LA,,,TANGIPAHOA,Richard David Ramsey,11 White Dr.,,Hammond,LA,70401-1025,985-542-6845,W,M,R,066,02/20/2012,02/20/2008,Mr. Ramsey -RPEC Member ,District 6 ,,,,LA,,,TANGIPAHOA,,,,,,,,,,,066 -RPEC Member ,District 7 ,,,,LA,,,TANGIPAHOA,,,,,,,,,,,066 -RPEC Member ,District 8 ,,,,LA,,,TANGIPAHOA,,,,,,,,,,,066 -RPEC Member ,District 9 ,,,,LA,,,TANGIPAHOA,,,,,,,,,,,066 -RPEC Member ,District 10 ,,,,LA,,,TANGIPAHOA,,,,,,,,,,,066 -Sheriff ,,15475 Club Deluxe Rd.,,Hammond,LA,70403,985-748-8147,TANGIPAHOA,Daniel H. Edwards,15475 Club Deluxe Rd.,,Hammond,LA,70403,985-517-0909,W,M,D,225,06/30/2012,07/01/2008,Mr. Edwards -Clerk of Court ,,P. O. Box 667,,Amite,LA,70422,985-748-4146,TANGIPAHOA,Julian E. Dufreche,P.O. Box 667,,Amite,LA,70422,985-386-6281,W,M,D,230,06/30/2012,07/01/2008,Mr. Dufreche -Assessor ,,P.O. Box 336,,Amite,LA,70422,985-748-7176,TANGIPAHOA,"Joaquin ""JR."" Matheu",P.O. Box 336,,Amite,LA,70422,985-345-1805,W,M,D,235,12/31/2012,01/01/2009,Mr. Matheu -Coroner ,,15479 Club Deluxe,,Hammond,LA,70403,985-902-8580,TANGIPAHOA,"""Rick"" Foster",40094 N. Hoover Rd.,,Ponchatoula,LA,70454,985-386-8403,W,M,D,240,03/25/2012,03/24/2008,Mr. Foster -Parish President ,,P.O. Box 215,,Amite,LA,70422,985-748-3211,TANGIPAHOA,Gordon Burgess,56337 A. Richardson,,Loranger,LA,70446,985-878-6480,W,M,D,243,01/09/2012,01/14/2008,Mr. Burgess -Councilman,District 1,P. O. Box 215,,Amite,LA,70422,985-748-3211,TANGIPAHOA,"""Tom"" Tolar",P.O. Box 472,,Kentwood,LA,70444,985-229-5296,W,M,R,245,01/09/2012,01/14/2008,Mr. Tolar -Councilman ,District 2 ,P. O. Box 215,,Amite,LA,70422,985-748-3211,TANGIPAHOA,Tennis Rick,64357 Hwy. 1054,,Roseland,LA,70456,985-748-6330,W,M,D,245,01/09/2012,01/14/2008,Mr. Rick -Councilman ,District 3 ,P. O. Box 215,,Amite,LA,70422,985-748-3211,TANGIPAHOA,Michael A. Petitto,P.O. Box 613,,Amite,LA,70422,985-517-7584,W,M,D,245,01/09/2012,01/14/2008,Mr. Petitto -Councilman ,District 4 ,P. O. Box 215,,Amite,LA,70422,985-748-3211,TANGIPAHOA,Carlo S. Bruno,P.O. Box 1274,,Independence,LA,70443,985-878-3124,W,M,D,245,01/09/2012,01/14/2008,Mr. Bruno -Councilman ,District 5 ,P. O. Box 215,,Amite,LA,70422,985-748-3211,TANGIPAHOA,"H. G. ""Buddy"" Ridgel",17037 Ridgel Rd.,,Tickfaw,LA,70466,985-542-4065,W,M,D,245,01/09/2012,01/14/2008,Mr. Ridgel -Councilman ,District 6 ,P. O. Box 215,,Amite,LA,70422,985-748-3211,TANGIPAHOA,"""Ronnie"" Bankston",43229 Sweet Pea Ln.,,Hammond,LA,70401,225-567-3976,W,M,D,245,01/09/2012,01/14/2008,Mr. Bankston -Councilman ,District 7 ,P. O. Box 215,,Amite,LA,70422,985-748-3211,TANGIPAHOA,Lionell Wells,1700 S. Mooney Ave.,,Hammond,LA,70403,985-542-1499,B,M,D,245,01/09/2012,01/14/2008,Mr. Wells -Councilman ,District 8 ,P. O. Box 215,,Amite,LA,70422,985-748-3211,TANGIPAHOA,Carlos D. Notariano,43327 Olive Branch Rd.,,Hammond,LA,70403,985-419-2333,W,M,D,245,01/09/2012,01/14/2008,Mr. Notariano -Councilman ,District 9 ,P. O. Box 215,,Amite,LA,70422,985-748-3211,TANGIPAHOA,"""Debbie"" Edwards",39108 Keaghey Rd.,,Ponchatoula,LA,70454,985-386-2125,W,F,D,245,01/09/2012,01/14/2008,Ms. Edwards -Councilman ,District 10 ,P. O. Box 215,,Amite,LA,70422,985-748-3211,TANGIPAHOA,"""Bobby"" Cortez",42102 Jefferson Dr.,,Hammond,LA,70403,985-969-6010,W,M,R,245,01/09/2012,01/14/2008,Mr. Cortez -City Judge ,"City Court, City of Hammond ",303 E. Thomas St.,,Hammond,LA,70401,985-542-3465,TANGIPAHOA,Grace Bennett Gasaway,P.O. Box 1224,,Hammond,LA,70404,985-542-6316,W,F,D,250,12/31/2014,01/01/2009,Judge Gasaway -City Marshal ,"City Court, City of Hammond ",303 E. Thomas St.,,Hammond,LA,70401,985-542-3445,TANGIPAHOA,"Victor Gordon Anderson, Jr.",507 E. Thomas St.,,Hammond,LA,70401,985-345-9577,W,M,D,250,12/31/2014,01/01/2009,Marshal Anderson -Member of School Board ,District A ,59656 Puleston Rd.,,Amite,LA,70422,985-748-7153,TANGIPAHOA,Ann A. Smith,P.O. Box 123,,Kentwood,LA,70444,985-229-6265,B,F,D,255,12/31/2010,01/01/2007,Ms. Smith -Member of School Board ,District B ,59656 Puleston Rd.,,Amite,LA,70422,985-748-7153,TANGIPAHOA,Robert E. Potts,19255 Potts Rd.,,Kentwood,LA,70444,985-229-8033,W,M,D,255,12/31/2010,01/01/2007,Mr. Potts -Member of School Board ,District C ,59656 Puleston Rd.,,Amite,LA,70422,985-748-7153,TANGIPAHOA,"Leonard ""Tank"" Genco, Jr.",P.O. Box 1753,,Independence,LA,70443,985-878-3233,W,M,D,255,12/31/2010,01/01/2007,Mr. Genco -Member of School Board ,District D ,59656 Puleston Rd.,,Amite,LA,70422,985-748-7153,TANGIPAHOA,"""Al"" Link",P.O. Box 354,,Natalbany,LA,70451,985-345-4638,W,M,D,255,12/31/2010,01/01/2007,Mr. Link -Member of School Board ,District E ,59656 Puleston Rd.,,Amite,LA,70422,985-748-7153,TANGIPAHOA,"""Danny"" Ridgel",49196 Louis Ln.,,Tickfaw,LA,70466,985-542-2864,W,M,D,255,12/31/2010,04/14/2009,Mr. Ridgel -Member of School Board ,District F ,59656 Puleston Rd.,,Amite,LA,70422,985-748-7153,TANGIPAHOA,Sonya Jenkins Traylor,10186 Beckendorf Rd.,,Hammond,LA,70403,225-294-5316,W,F,R,255,12/31/2010,04/14/2009,Ms. Traylor -Member of School Board ,District G ,59656 Puleston Rd.,,Amite,LA,70422,985-748-7153,TANGIPAHOA,Eric Dangerfield,P.O. Box 562,,Hammond,LA,70403,985-345-1656,B,M,D,255,12/31/2010,01/01/2007,Mr. Dangerfield -Member of School Board ,District H ,59656 Puleston Rd.,,Amite,LA,70422,985-748-7153,TANGIPAHOA,Sandra Bailey-Simmons,49366 Ravenwood Dr.,,Loranger,LA,70446,985-345-4562,W,F,R,255,12/31/2010,01/01/2007,Ms. Simmons -Member of School Board ,District I ,59656 Puleston Rd.,,Amite,LA,70422,985-748-7153,TANGIPAHOA,Rose Quave Dominguez,39631 W. Sam Arnold,,Ponchatoula,LA,70454,985-845-4912,W,F,R,255,12/31/2010,01/01/2007,Ms. Dominguez -Justice of the Peace ,Justice of the Peace Ward 1 ,612 Ave. G,,Kentwwood,LA,70444,985-229-8945,TANGIPAHOA,David Sellers,612 Ave. G,,Kentwood,LA,70444,985-229-8945,W,M,D,265,12/31/2014,01/01/2009,Mr. Sellars -Justice of the Peace ,Justice of the Peace Ward 2 ,19413 La. Hwy. 38 E.,,Kentwood,LA,70444,985-229-2514,TANGIPAHOA,Kathy Dale Forrest,19413 Hwy. 38,,Kentwood,LA,70444,985-229-2514,W,F,R,265,12/31/2014,01/01/2009,Ms. Forrest -Justice of the Peace ,Justice of the Peace Ward 3 ,210 North Bay St.,,Amite,LA,70422,,TANGIPAHOA,Tonya P. Mabry,P.O. Box744,,Amite,LA,70422,985-747-0407,B,F,D,265,12/31/2014,01/01/2009,Ms. Mabry -Justice of the Peace ,Justice of the Peace Ward 4 ,17432 La. Hwy. 10,,Kentwood,LA,70444,985-748-7214,TANGIPAHOA,Edwina V. Ballard,17432 Hwy. 10,,Kentwood,LA,70444,985-748-7214,W,F,D,265,12/31/2014,01/01/2009,Ms. Ballard -Justice of the Peace ,Justice of the Peace Ward 5 ,P.O. Box 395,,Loranger,LA,70446,985-878-3633,TANGIPAHOA,"""Debbie"" Brunett",56044 North Cooper Rd.,,Loranger,LA,70446,985-878-6166,W,F,D,265,12/31/2014,01/01/2009,Ms. Brunett -Justice of the Peace ,Justice of the Peace Ward 6 ,P.O. Box 781,,Tickfaw,LA,70466,985-878-3628,TANGIPAHOA,Terri M. Crosby,P.O. Box 1004,,Natalbany,LA,,985-878-3628,W,F,D,265,12/31/2014,01/01/2009,Ms. Crosby -Justice of the Peace ,Justice of the Peace Ward 8 ,23288 Bardwell Rd.,,Ponchatoula,LA,70454,985-542-1732,TANGIPAHOA,,,,,,,,,,,265 -Constable ,Justice of the Peace Ward 1 ,70342 Kennedy Rd.,,Kentwood,LA,70444,985-229-3334,TANGIPAHOA,Quentin D. Hookfin,202 Avenue D,,Kentwood,LA,70444,985-514-2097,B,M,D,267,12/31/2014,01/01/2009,Mr. Hoofkin -Constable ,Justice of the Peace Ward 2 ,20575 Green Farm Rd.,,Kentwood,LA,70444,985-229-4032,TANGIPAHOA,Dickie Blades,70132 Simmons Rd.,,Kentwood,LA,70444,985-229-4032,W,M,D,267,12/31/2014,01/01/2009,Mr. Blades -Constable ,Justice of the Peace Ward 3 ,22140 Hwy. 16 East,,Amite,LA,70422,985-748-6327,TANGIPAHOA,"Anthony S. ""Butch"" Robinson",214 Gullett St.,,Amite,LA,70422,985-747-0653,B,M,D,267,12/31/2014,01/01/2009,Mr. Robinson -Constable ,Justice of the Peace Ward 4 ,22140 Hwy. 16 E,,Amite,LA,70422,985-748-6327,TANGIPAHOA,Teresa Grace Holden,22140 Hwy. 16,,Amite,LA,70422,985-748-6327,W,F,D,267,12/31/2014,01/01/2009,Ms. Holden -Constable ,Justice of the Peace Ward 5 ,18125 School Rd.,,Loranger,LA,70446,985-878-2253,TANGIPAHOA,"Louis ""Buddy"" Easley",18125 School Rd.,,Loranger,LA,70446,985-878-2253,W,M,D,267,12/31/2014,01/01/2009,Mr. Easley -Constable ,Justice of the Peace Ward 6 ,P.O. Box 1022,,Independence,LA,,985-878-3045,TANGIPAHOA,"""Joe"" Sinagra",P.O. Box 1022,,Independence,LA,70443,985-878-3045,W,M,D,267,12/31/2014,01/01/2009,Mr. Sinagra -Constable ,Justice of the Peace Ward 8 ,P.O. Box 383,,Robert,LA,70455,985-542-8254,TANGIPAHOA,Richard Z. Morse,P.O. Box 383,,Robert,LA,70455,985-345-0332,W,M,D,267,12/31/2014,01/01/2009,Mr. Morse -Mayor ,City of Hammond ,P. O. Box 2788,,Hammond,LA,,985-542-3400,TANGIPAHOA,Mayson H. Foster,800 W. Dakota,,Hammond,LA,70401,985-345-6339,W,M,R,300,12/31/2010,01/01/2007,Mr. Foster -Mayor ,City of Ponchatoula ,125 W. Hickory St.,,Ponchatoula,LA,,985-386-6484,TANGIPAHOA,"Robert F. ""Bob"" Zabbia",211 N. 7th St.,,Ponchatoula,LA,70454,985-386-9892,W,M,D,300,06/30/2012,07/01/2008,Mayor Zabbia -Mayor ,Town of Amite City ,212 E. Oak St.,,Amite,LA,,985-748-8761,TANGIPAHOA,Reginald Goldsby,P. O. Box 734,,Amite,LA,70422,985-748-9039,W,M,D,300,12/31/2012,01/01/2009,Mayor Goldsby -Mayor ,Town of Independence ,P. O. Box 35,,Independence,LA,,985-878-4145,TANGIPAHOA,Michael A. Ragusa,P.O. Box 1204,,Independence,LA,70443,985-878-3930,W,M,D,300,06/30/2012,07/01/2008,Mayor Ragusa -Mayor ,Town of Kentwood ,308 Ave. G,,Kentwood,LA,,985-229-3451,TANGIPAHOA,Harold J. Smith,P.O. Box 123,,Kentwood,LA,70444,985-229-6265,B,M,D,300,12/31/2010,01/01/2007,Ms. Smtih -Mayor ,Town of Roseland ,P. O. Box 302,,Roseland,LA,,985-748-9063,TANGIPAHOA,"Wanda ""Yodie"" McCoy",P.O.Box 511,,Roseland,LA,70456,985-748-2768,B,F,D,300,12/31/2012,01/01/2009,Ms. McCoy -Mayor ,Village of Tangipahoa ,P. O. Box 156,,Tangipahoa,LA,,985-229-8300,TANGIPAHOA,Michael Jackson,P.O. Box 473,,Tangipahoa,LA,70465,985-514-2013,B,M,D,300,12/31/2012,01/01/2009,Mayor Jackson -Mayor ,Village of Tickfaw ,P. O. Box 249,,Tickfaw,LA,,985-542-9249,TANGIPAHOA,"Anthony ""Tony"" Lamonte",14304 Nuccio Rd.,,Tickfaw,LA,70466,985-345-8796,W,M,D,300,12/31/2010,01/01/2007,Mayor Lamonte -Chief of Police ,City of Ponchatoula ,125 W. Hickory St.,,Ponchatoula,LA,70454,985-386-6484,TANGIPAHOA,Bry Layrisson,15 Weldon Circle,,Ponchatoula,LA,70454,985-386-6548,W,M,O,305,06/30/2012,07/01/2008,Chief Layrisson -Chief of Police ,Town of Amite City ,212 E. Oak St.,,Amite,LA,70422,985-748-8761,TANGIPAHOA,Jerry Trabona,506 North Ave.,,Amite,LA,70422,985-748-8337,W,M,D,305,12/31/2012,01/01/2009,Chief Trabona -Chief of Police ,Town of Independence ,P. O. Box 35,,Independence,LA,70443,985-878-4145,TANGIPAHOA,"Frank Edwards, III",P.O. Box 35,,Independence,LA,70443,,,,,305,,01/11/2010,Chief Edwards -Chief of Police ,Town of Kentwood ,308 Ave. G,,Kentwood,LA,70444,985-229-3451,TANGIPAHOA,James R. Rimes,307 Ave. I,,Kentwood,LA,70444,985-229-6305,W,M,D,305,12/31/2010,01/01/2007,Mr. Rimes -Chief of Police ,Town of Roseland ,P. O. Box 302,,Roseland,LA,70456,985-748-9063,TANGIPAHOA,"""Donnie"" Hammons",P. O. Box 536,,Roseland,LA,70456,985-969-5325,W,M,D,305,12/31/2012,01/01/2009,Chief Hammons -Chief of Police ,Village of Tangipahoa ,P. O. Box 156,,Tangipahoa,LA,70465,985-229-8300,TANGIPAHOA,Richard F. Banks,P. O. Box 131,,Tangipahoa,LA,70456,985-229-6136,B,M,D,305,12/31/2012,01/01/2009,Chief Banks -Chief of Police ,Village of Tickfaw ,P. O. Box 249,,Tickfaw,LA,70466,985-542-9249,TANGIPAHOA,Jimmy L. Sparacello,P.O. Box 131,,Tickfaw,LA,70466,985-969-5373,W,M,O,305,12/31/2010,01/01/2007,Chief Sparacello -Alderman ,Town of Independence ,P. O. Box 35,,Independence,LA,70443,985-878-4145,TANGIPAHOA,"Parnell ""Butch"" Baham",135 Charles Sinagra,,Independence,LA,70443,985-878-9356,W,M,D,310,06/30/2012,07/01/2008,Mr. Baham -Alderman ,Town of Independence ,P. O. Box 35,,Independence,LA,70443,985-878-4145,TANGIPAHOA,Larry Cardaronella,P.O. Box 332,,Independence,LA,70443,985-878-1905,W,M,D,310,06/30/2012,07/01/2008,Mr. Cardaronella -Alderman ,Town of Independence ,P. O. Box 35,,Independence,LA,70443,985-878-4145,TANGIPAHOA,"Louis ""Nick"" Joseph",P.O. Box 621,,Independence,LA,70443,985-878-4711,B,M,D,310,06/30/2012,07/01/2008,Mr. Joseph -Alderman ,Town of Independence ,P. O. Box 35,,Independence,LA,70443,985-878-4145,TANGIPAHOA,"""Mike"" Muscarello",P.O. Box 1021,,Independence,LA,70443,985-878-4760,W,M,D,310,06/30/2012,04/14/2009,Mr. Muscarello -Alderman ,Town of Independence ,P. O. Box 35,,Independence,LA,70443,985-878-4145,TANGIPAHOA,Richard Navarra,P.O. Box 857,,Independence,LA,70443,985-878-8879,W,M,D,310,06/30/2012,07/01/2008,Mr. Navarra -Alderman ,Town of Roseland ,P. O. Box 302,,Roseland,LA,70456,985-748-9063,TANGIPAHOA,Yvette Brooks,P.O. Box 559,,Roseland,LA,70454,985-747-9969,B,F,D,310,12/31/2012,01/01/2009,Ms. Brooks -Alderman ,Town of Roseland ,P. O. Box 302,,Roseland,LA,70456,985-748-9063,TANGIPAHOA,Jerrol W. Jones,P. O. Box 494,,Roseland,LA,70456,985-747-1988,B,M,D,310,12/31/2012,01/01/2009,Mr. Jones -Alderman ,Town of Roseland ,P. O. Box 302,,Roseland,LA,70456,985-748-9063,TANGIPAHOA,Van L. Showers,P. O. Box 317,,Roseland,LA,70456,985-517-4043,B,M,D,310,12/31/2012,01/01/2009,Mr. Showers -Alderman ,Town of Roseland ,P. O. Box 302,,Roseland,LA,70456,985-748-9063,TANGIPAHOA,Sandra W. Turner,P. O. Box 89,,Roseland,LA,70456,985-748-9589,B,F,D,310,12/31/2012,01/01/2009,Ms. Turner -Alderman ,Town of Roseland ,P. O. Box 302,,Roseland,LA,70456,985-748-9063,TANGIPAHOA,Ruthie L. Vernon,12184 Buchanan Ln.,,Roseland,LA,70456,985-748-3445,B,F,D,310,12/31/2012,01/01/2009,Ms. Vernon -Alderman ,Village of Tangipahoa ,P. O. Box 156,,Tangipahoa,LA,70465,985-229-8300,TANGIPAHOA,Mona Mary Downs,P.O. Box 14,,Tangipahoa,LA,70465,985-229-4111,B,F,R,310,12/31/2012,01/01/2009,Ms. Downs -Alderman ,Village of Tangipahoa ,P. O. Box 156,,Tangipahoa,LA,70465,985-229-8300,TANGIPAHOA,Dawn Gray,P. O. Box 410,,Tangipahoa,LA,70465,985-229-9118,B,F,D,310,12/31/2012,01/01/2009,Mr. Gray -Alderman ,Village of Tangipahoa ,P. O. Box 156,,Tangipahoa,LA,70465,985-229-8300,TANGIPAHOA,Eddie Myers,P.O. Box 28,,Tangipahoa,LA,70465,985-229-2692,B,M,D,310,12/31/2012,01/01/2009,Mr. Myers -Council Member ,"District 1, City of Hammond ",P. O. Box 2788,,Hammond,LA,70404,985-542-3406,TANGIPAHOA,Johnny E. Blount,102 Mitchell Dr.,,Hammond,LA,70401,985-543-0371,B,M,D,310,12/31/2010,01/01/2007,Mr. Blount -Council Member ,"District 2, City of Hammond ",P. O. Box 2788,,Hammond,LA,70404,985-542-3406,TANGIPAHOA,Jason Hood,609 N. General Pershing,,Hammond,LA,70401,985-345-0760,W,M,R,310,12/31/2010,01/01/2007,Mr. Hood -Council Member ,"District 3, City of Hammond ",P. O. Box 2788,,Hammond,LA,70404,985-542-3406,TANGIPAHOA,Willie Grant Jackson,122 Carolina St.,,Hammond,LA,70401,985-345-5564,B,M,D,310,12/31/2010,01/01/2007,Mr. Jackson -Council Member ,"District 4, City of Hammond ",P. O. Box 2788,,Hammond,LA,70404,985-542-3406,TANGIPAHOA,"""Kathy"" Montecino",700 Delmar Blvd.,,Hammond,LA,70403,985-419-0211,W,F,R,310,12/31/2010,01/01/2007,Ms. Montecino -Council Member ,"District 5, City of Hammond ",P. O. Box 2788,,Hammond,LA,70404,985-542-3406,TANGIPAHOA,Mike Williams,6 Audubon,,Hammond,LA,70401,985-345-7882,W,M,R,310,12/31/2010,01/01/2007,Mr. Williams -Council Member ,"District 1, Town of Amite City ",212 E. Oak St.,,Amite,LA,70422,985-748-8761,TANGIPAHOA,"Walter Daniels, III",427 E. Cherry St.,,Amite,LA,70422,985-517-9401,B,M,D,310,12/31/2012,01/01/2009,Mr. Daniels -Council Member ,"District 2, Town of Amite City ",212 E. Oak St.,,Amite,LA,70422,985-748-8761,TANGIPAHOA,Jonathan Foster,602 W. Palmetto St.,,Amite,LA,70422,985-969-5660,B,M,D,310,12/31/2012,01/01/2009,Mr. Foster -Council Member ,"District 3, Town of Amite City ",212 E. Oak St.,,Amite,LA,70422,985-748-8761,TANGIPAHOA,Mark D. Vining,301 E. Chestnut St.,,Amite,LA,70422,985-748-8524,W,M,D,310,12/31/2012,01/01/2009,Mr. Vining -Council Member ,"District 4, Town of Amite City ",212 E. Oak St.,,Amite,LA,70422,985-748-8761,TANGIPAHOA,"""Neil"" Currier",202A Daniel St.,,Amite,LA,70422,985-747-1680,W,M,R,310,12/31/2012,01/01/2009,Mr. Currier -Council Member ,"District 5, Town of Amite City ",212 E. Oak St.,,Amite,LA,70422,985-748-8761,TANGIPAHOA,"""Rose"" Sumrall",P.O. Box 186,,Amite,LA,70422,985-748-7526,W,F,R,310,12/31/2012,01/01/2009,Ms. Sumrall -Council Member ,"District A, City of Ponchatoula ",125 Hickory St.,,Pontchatoula,LA,70454,985-386-6484,TANGIPAHOA,Braville J. LeBlanc,132 Braville St.,,Ponchatoula,LA,70454,985-370-0938,W,M,D,310,06/30/2012,07/01/2008,Mr. LeBlanc -Council Member ,"District B, City of Ponchatoula ",125 W. Hickory St.,,Ponchatoula,LA,70454,985-386-6484,TANGIPAHOA,"Connie Dotey-Lewis, ",620 E. Oak St.,,Ponchatoula,LA,70454,985-386-9070,,,,310,,11/24/2009 -Council Member ,"District C, City of Ponchatoula ",125 W. Hickory St.,,Ponchatoula,LA,70454,985-386-6484,TANGIPAHOA,Jeannemarie Pierson,301 S. 8th St.,,Ponchatoula,LA,70454,985-386-6461,W,F,R,310,06/30/2012,07/01/2008,Ms. Pierson -Council Member ,"District D, City of Ponchatoula ",125 W. Hickory St.,,Ponchatoula,LA,70454,985-386-6484,TANGIPAHOA,"Carla Heisser, ",125 W. Hickory St.,,Pontchatoula,LA,70454,,,,,310,,02/03/2010,Ms Heisser -Council Member ,"District E, City of Ponchatoula ",125 W. Hickory St.,,Ponchatoula,LA,70454,385-386-6484,TANGIPAHOA,Vergil Sandifer,485 E. Cypress St.,,Ponchatoula,LA,70454,985-386-8373,W,M,D,310,06/30/2012,07/01/2008,Mr. Sandifer -Council Member ,Town of Kentwood ,308 Ave. G,,Kentwood,LA,70444,985-229-3451,TANGIPAHOA,Myrtle Cook,1335 Third St.,,Kentwood,LA,70444,985-229-8145,B,F,D,310,12/31/2010,01/01/2007,Ms. Cook -Council Member ,Town of Kentwood ,308 Ave. G,,Kentwood,LA,70444,985-229-3451,TANGIPAHOA,Carlton S. Faller,309 Ave. A,,Kentwood,LA,70444,985-229-3681,W,M,D,310,12/31/2010,01/01/2007,Mr. Faller -Council Member ,Town of Kentwood ,308 Ave. G,,Kentwood,LA,70444,985-229-3451,TANGIPAHOA,Irma Thompson Gordon,P.O. Box 454,,Kentwood,LA,70444,985-229-4959,B,F,D,310,12/31/2010,01/01/2007,Ms. Gordon -Council Member ,Town of Kentwood ,308 Ave. G,,Kentwood,LA,70444,985-229-3451,TANGIPAHOA,"Michael ""Mike"" Hall",P.O. Box 643,,Kentwood,LA,70444,985-229-1929,B,M,D,310,12/31/2010,01/01/2007,Mr. Hall -Council Member ,Town of Kentwood ,308 Ave. G,,Kentwood,LA,70444,985-229-3451,TANGIPAHOA,"""Jimbo"" Slaven",707 11th St,,Kentwood,LA,70444,985-229-5206,W,M,O,310,12/31/2010,01/01/2007,Mr. Slaven -Council Member ,Village of Tickfaw ,P. O. Box 249,,Tickfaw,LA,70466,985-542-9249,TANGIPAHOA,Toni Jean Abene Basso,P.O. Box 576,,Tickfaw,LA,70466,985-345-6509,W,F,D,310,12/31/2010,01/01/2007,Ms. Basso -Council Member ,Village of Tickfaw ,P. O. Box 249,,Tickfaw,LA,70466,985-542-9249,TANGIPAHOA,"""Ron"" Tanis",14087 Manina Ln.,,Tickfaw,LA,70466,985-542-4781,W,M,R,310,12/31/2010,01/01/2007,Mr. Tanis -Council Member ,Village of Tickfaw ,P. O. Box 249,,Tickfaw,LA,70466,985-542-9249,TANGIPAHOA,"""Preston"" Watts",P.O. Box 221,,Tickfaw,LA,70466,985-542-4625,W,M,O,310,12/31/2010,01/01/2007,Mr. Watts -DPEC Member ,at Large ,,,,LA,,,TENSAS,Leslie Lee,103 Washington St.,,St. Joseph,LA,71366,,,,,054,,07/24/2008 -DPEC Member ,District 1 ,,,,LA,,,TENSAS,,,,,,,,,,,056 -DPEC Member ,District 2 ,,,,LA,,,TENSAS,,,,,,,,,,,056 -DPEC Member ,District 3 ,,,,LA,,,TENSAS,,,,,,,,,,,056 -DPEC Member ,District 4 ,,,,LA,,,TENSAS,,,,,,,,,,,056 -DPEC Member ,District 5 ,,,,LA,,,TENSAS,,,,,,,,,,,056 -DPEC Member ,District 6 ,,,,LA,,,TENSAS,,,,,,,,,,,056 -DPEC Member ,District 7 ,,,,LA,,,TENSAS,,,,,,,,,,,056 -RPEC Member ,at Large ,,,,LA,,,TENSAS,,,,,,,,,,,064 -RPEC Member ,District 1 ,,,,LA,,,TENSAS,,,,,,,,,,,066 -RPEC Member ,District 2 ,,,,LA,,,TENSAS,,,,,,,,,,,066 -RPEC Member ,District 3 ,,,,LA,,,TENSAS,,,,,,,,,,,066 -RPEC Member ,District 4 ,,,,LA,,,TENSAS,,,,,,,,,,,066 -RPEC Member ,District 5 ,,,,LA,,,TENSAS,,,,,,,,,,,066 -RPEC Member ,District 6 ,,,,LA,,,TENSAS,,,,,,,,,,,066 -RPEC Member ,District 7 ,,,,LA,,,TENSAS,,,,,,,,,,,066 -Sheriff ,,P. O. Box 138,,St. Joseph,LA,71366,318-766-3961,TENSAS,Rickey A. Jones,P.O. Box 138,,st. Joseph,LA,71366,318-766-4500,W,M,D,225,06/30/2012,07/01/2008,Sheriff Jones -Clerk of Court ,,P. O. Box 78,,St. Joseph,LA,71366,318-766-3921,TENSAS,Ernest Sikes,P.O. Box 78,,St. Joseph,LA,71366,318-766-0080,W,M,D,230,06/30/2012,07/01/2008,Mr. Sikes -Assessor ,,P.O. Box 197,,St.Joseph,LA,71366,318-766-3501,TENSAS,Irby S. Gamble,P.O. Box 481,,St. Joseph,LA,71366,318-766-1540,W,M,D,235,12/31/2012,01/01/2009,Mr. Gamble -Coroner ,,P.O. Box 34,,St. Joseph,LA,71366,318-766-9443,TENSAS,Keith Dewayne Butler,P.O. Box 34,,St. Joseph,LA,71366,318-766-9443,W,M,R,240,03/25/2012,03/24/2008,Mr. Butler -Police Juror,District 1,P. O. Box 6168,,St. Joseph,LA,71366,318-766-3542,TENSAS,"Emmett L. Adams, Jr.",2727 Hwy. 575,,Newellton,LA,71357,318-467-5994,W,M,R,245,01/08/2012,01/14/2008,Mr. Adams -Police Juror ,District 2 ,P. O. Box 6168,,St. Joseph,LA,71366-6168,318-766-3542,TENSAS,Danny Clark,P.O. Box 252,,Newellton,LA,71357,318-341-1683,B,M,D,245,01/08/2012,01/14/2008,Mr. Clark -Police Juror ,District 3 ,P. O. Box 6168,,St. Joseph,LA,71366-6168,318-766-3542,TENSAS,Jane Netterville,1264 Hwy. 606,,St. Joseph,LA,71366,318-766-4585,W,F,D,245,01/08/2012,01/14/2008,Mr. Netterville -Police Juror ,District 4 ,P. O. Box 6168,,St. Joseph,LA,71366-6168,318-766-3542,TENSAS,William Trevillion,813 Trevillion Rd.,,Waterproof,LA,71375,318-749-3701,W,M,D,245,01/08/2012,01/14/2008,Mr. Trevillion -Police Juror ,District 5 ,P. O. Box 6168,,St. Joseph,LA,71366-6168,318-766-3542,TENSAS,"""Rod"" Webb",P.O. Box 516,,St. Joseph,LA,71366,318-766-4390,B,M,D,245,01/08/2012,01/14/2008,Mr. Webb -Police Juror ,District 6 ,P. O. Box 6168,,St. Joseph,LA,71366-6168,318-766-3542,TENSAS,"Carl Frank Olds, Sr.",120 Buckshot Rd.,,Waterproof,LA,71375,318-749-5426,W,M,D,245,01/08/2012,01/14/2008,Mr. Olds -Police Juror ,District 7 ,P. O. Box 6168,,St. Joseph,LA,71366-6168,318-766-3542,TENSAS,"Woodrow W. Wiley, Jr.",P.O. Box 33,,Waterproof,LA,71375,318-749-5449,B,M,D,245,01/08/2012,01/14/2008,Mr. Wiley -Member of School Board ,District 1 ,P. O. Box 318,,St. Joseph,LA,71366,318-766-3269,TENSAS,Larry W. Foster,P.O. Box 713,,Newellton,LA,71357,318-467-5255,W,,D,255,12/31/2010,01/01/2007,Mr. Foster -Member of School Board ,District 2 ,P. O. Box 318,,St. Joseph,LA,71366,318-766-3269,TENSAS,"James E. Kelly, Sr.",P.O. Box 403,,Newellton,LA,71357,318-467-5922,,,D,255,12/31/2010,01/01/2007,Mr. Kelly -Member of School Board ,District 3 ,P. O. Box 318,,St. Joseph,LA,71366,318-766-3269,TENSAS,Taylor Grayson,1592 Hwy. 606,,St. Joseph,LA,71366,318-766-0198,W,M,D,255,12/31/2010,01/01/2007,Mr. Grayson -Member of School Board ,District 4 ,P. O. Box 318,,St. Joseph,LA,71366,318-766-3269,TENSAS,Annice Miller,P.O. Box 53,,St. Joseph,LA,71366,318-766-3720,W,F,D,255,12/31/2010,01/01/2007,Ms. Miller -Member of School Board ,District 5 ,P. O. Box 318,,St. Joseph,LA,71366,318-766-3269,TENSAS,Esaw Turner,P.O. Box 383,,St. Joseph,LA,71366,318-166-3803,B,,D,255,12/31/2010,01/01/2007,Mr. Turner -Member of School Board ,District 6 ,P. O. Box 318,,St. Joseph,LA,71366,318-766-3269,TENSAS,Steven D. Vinson,960 Hwy. 568,,St. Joseph,LA,71366,318-766-3972,W,M,D,255,12/31/2010,01/01/2007,Mr. Vinson -Member of School Board ,District 7 ,P. O. Box 318,,St. Joseph,LA,71366,318-766-3269,TENSAS,Annie M. Watson,P.O. Box 318,,St. Joseph,LA,71375,318-766-3269,,,D,255,12/31/2010,01/01/2007,Ms. Watson -Justice of the Peace ,Justice of the Peace Ward 1 ,P.O. Box 147,,Newellton,LA,71357,318-467-5575,TENSAS,Glen McCarty,P. O. Box 147,,Newellton,LA,71357,318-467-5222,W,M,D,265,12/31/2014,01/01/2009,Mr. McCarty -Justice of the Peace ,Justice of the Peace Ward 2 ,P.O. Box 621,,St. Joseph,LA,71366,318-766-1421,TENSAS,Thelma A. Bradford,P.O. Box 127,,St. Joseph,LA,71366,318-766-4420,B,F,D,265,12/31/2014,01/01/2009,Ms. Bradford -Justice of the Peace ,Justice of the Peace Ward 3 ,P.O. Box 155,,Waterproof,LA,71375,318-749-5435,TENSAS,Arthur L. Johnson,P.O. Box 155,,Waterproof,LA,71375,318-749-5435,B,M,D,265,12/31/2014,01/01/2009,Mr. Johnson -Constable ,Justice of the Peace Ward 1 ,P.O. Box 273,,Newellton,LA,71357,318-467-2695,TENSAS,Jack W. McMillian,P.O. Box 193,,Newellton,LA,71357,318-467-5169,B,M,D,267,12/31/2014,01/01/2009,Mr. McMillian -Constable ,Justice of the Peace Ward 2 ,P.O. Box 191,,St. Joseph,LA,71366,318-766-4643,TENSAS,Ernest L. Hestle,P.O. Box 191,,St. Joseph,LA,71366,318-766-4643,W,M,D,267,12/31/2014,01/01/2009,Mr. Hestle -Constable ,Justice of the Peace Ward 3 ,P.O. Box 33,,Waterproof,LA,71375,318-749-5287,TENSAS,"""Doug"" Miller",738 Miller Rd.,,Waterproof,LA,71375,318-749-3327,W,M,D,267,12/31/2014,01/01/2009,Mr. Miller -Mayor ,Town of Newellton ,P. O. Box 477,,Newellton,LA,,318-467-5050,TENSAS,Alex Davis,P.O. Box 774,,,LA,71357,318-467-9702,B,M,D,300,12/31/2012,01/01/2009,Mr. Davis -Mayor ,Town of St. Joseph ,P. O. Box 217,,St. Joseph,LA,,318-766-3713,TENSAS,Edward L. Brown,P. O. Box 433,,St. Joseph,LA,71366,318-766-4923,B,M,D,300,12/31/2012,01/01/2009,Mayor Brown -Mayor ,Town of Waterproof ,P. O. Box 248,,Waterproof,LA,,318-749-5233,TENSAS,Bobby D. Higginbotham,"218 ""A"" St.",,Waterproof,LA,71375,318-749-3610,B,M,D,300,12/31/2010,01/01/2007,Mayor Higginbotham -Chief of Police ,Town of Newellton ,P. O. Box 477,,Newellton,LA,71357,318-467-5050,TENSAS,Johnny Gales,P.O. Box 1084,,Newellton,LA,71357,318-467-9600,B,M,D,305,12/31/2012,01/01/2009,Mr. Gales -Alderman ,"District 1, Town of Newellton ",P. O. Box 477,,Newellton,LA,71357,318-467-5050,TENSAS,Timothy Turner,P.O. Box 283,,Newellton,LA,71357,318-434-0163,B,M,D,310,12/31/2012,01/01/2009,Mr. Turner -Alderman ,"District 2, Town of Newellton ",P. O. Box 477,,Newellton,LA,71357,318-467-5050,TENSAS,Edwin Britt,P.O. Box 398,,Newellton,LA,71357,318-467-5911,W,M,R,310,12/31/2012,01/01/2009,Mr. Britt -Alderman ,"District 3, Town of Newellton ",P. O. Box 477,,Newellton,LA,71357,318-467-5050,TENSAS,Billy Mitchell,P. O. Box 632,,Newellton,LA,71357,318-467-5083,W,M,D,310,12/31/2012,01/01/2009,Mr. Mitchell -Alderman ,"District 4, Town of Newellton ",P. O. Box 477,,Newellton,LA,71357,318-467-5050,TENSAS,Mattie Sampson,P. O. Box 395,,Newellton,LA,71357,318-467-2310,B,F,D,310,12/31/2012,01/01/2009,Ms. Sampson -Alderman ,"District 5, Town of Newellton ",P. O. Box 477,,Newellton,LA,71357,318-467-5050,TENSAS,Carroll Fuller,P. O. Box 303,,Newellton,LA,71357,318-467-5651,W,M,R,310,12/31/2012,01/01/2009,Mr. Fuller -Alderman ,"District A, Town of St. Joseph ",P. O. Box 217,,St. Joseph,LA,71366,318-766-3713,TENSAS,"Albert ""Buddy"" Tindell",P. O. Box 164,,St. Joseph,LA,71366,318-766-4443,W,M,D,310,12/31/2012,01/01/2009,Mr. Tindell -Alderman ,"District B, Town of St. Joseph ",P. O. Box 217,,St. Joseph,LA,71366,318-766-3713,TENSAS,Ed Dandridge,115 2nd St.,,,LA,71366,318-766-1002,W,M,D,310,12/31/2012,01/01/2009,Mr. Dandridge -Alderman ,"District C, Town of St. Joseph ",P. O. Box 217,,St. Joseph,LA,71366,318-766-3713,TENSAS,"Jimmy S. Clark, Sr.",663 Third St.,,St. Joseph,LA,71366,318-766-3324,B,M,D,310,12/31/2012,01/01/2009,Mr. clark -Alderman ,"District D, Town of St. Joseph ",P. O. Box 217,,St. Joseph,LA,71366,318-766-3713,TENSAS,Theodore Jackson,P. O. Box 701,,St. Joseph,LA,71366,318-766-4614,B,M,D,310,12/31/2012,01/01/2009,Mr. Jackson -Alderman ,"District E, Town of St. Joseph ",P. O. Box 217,,St. Joseph,LA,71366,318-766-3713,TENSAS,Evelyn Guy,P. O. Box 730,,St. Joseph,LA,71366,318-766-3857,B,F,D,310,12/31/2012,01/01/2009,Ms. Guy -Alderman ,Town of Waterproof ,P. O. Box 248,,Waterproof,LA,71375,318-749-5233,TENSAS,Edna J. Cooper,955 Kentucky Lane,,Waterproof,LA,71375,318-749-3828,,,D,310,12/31/2010,01/01/2007,Ms. Cooper -Alderman ,Town of Waterproof ,P. O. Box 248,,Waterproof,LA,71375,318-749-5233,TENSAS,Elizabeth Cooper,P.O. Box 69,,Waterproof,LA,71375,318-749-5810,B,F,D,310,12/31/2010,01/01/2007,Ms. Cooper -Alderman ,Town of Waterproof ,P. O. Box 248,,Waterproof,LA,71375,318-749-5233,TENSAS,George Taylor,P.O. Box 351,,Waterproof,LA,71375,318-749-9533,B,M,D,310,12/31/2010,01/01/2007,Mr. Taylor -Alderman ,Town of Waterproof ,P. O. Box 248,,Waterproof,LA,71375,318-749-5233,TENSAS,"Lionel Travers, Jr.",P.O. Box 132,,Waterproof,LA,71375,318-749-3915,B,M,D,310,12/31/2010,01/01/2007,Mr. Travers -DPEC Member ,at Large ,,,,LA,,,TERREBONNE,"""S. P."" LaRussa",208 Glenhill Ln.,,Houma,LA,70363-3813,985-876-6161,W,M,D,054,02/20/2012,02/20/2008,Mr. LaRussa -DPEC Member ,District 1 ,,,,LA,,,TERREBONNE,,,,,,,,,,,056 -DPEC Member ,District 2 ,,,,LA,,,TERREBONNE,,,,,,,,,,,056 -DPEC Member ,District 3 ,,,,LA,,,TERREBONNE,,,,,,,,,,,056 -DPEC Member ,District 4 ,,,,LA,,,TERREBONNE,,,,,,,,,,,056 -DPEC Member ,District 5 ,,,,LA,,,TERREBONNE,,,,,,,,,,,056 -DPEC Member ,District 6 ,,,,LA,,,TERREBONNE,,,,,,,,,,,056 -DPEC Member ,District 7 ,,,,LA,,,TERREBONNE,,,,,,,,,,,056 -DPEC Member ,District 8 ,,,,LA,,,TERREBONNE,,,,,,,,,,,056 -DPEC Member ,District 9 ,,,,LA,,,TERREBONNE,,,,,,,,,,,056 -RPEC Member ,at Large ,,,,LA,,,TERREBONNE,Dale Norred,1434 Savanne Rd.,,Houma,LA,70360-8902,985-876-2400,W,F,R,064,02/20/2012,02/20/2008,Mr. Norred -RPEC Member ,District 1 ,,,,LA,,,TERREBONNE,,,,,,,,,,,066 -RPEC Member ,District 2 ,,,,LA,,,TERREBONNE,,,,,,,,,,,066 -RPEC Member ,District 3 ,,,,LA,,,TERREBONNE,June S. Williams,106 Kenney St.,,Houma,LA,70364,985-209-8381,W,F,R,066,02/20/2012,02/20/2008,Ms. Williams -RPEC Member ,District 4 ,,,,LA,,,TERREBONNE,,,,,,,,,,,066 -RPEC Member ,District 5 ,,,,LA,,,TERREBONNE,,,,,,,,,,,066 -RPEC Member ,District 6 ,,,,LA,,,TERREBONNE,,,,,,,,,,,066 -RPEC Member ,District 7 ,,,,LA,,,TERREBONNE,Barbara Cenac,3650 Southdown Mandalay Rd.,,Houma,LA,70360,985-876-5772,W,F,R,066,02/20/2012,02/20/2008,Ms. Cenac -RPEC Member ,District 8 ,,,,LA,,,TERREBONNE,,,,,,,,,,,066 -RPEC Member ,District 9 ,,,,LA,,,TERREBONNE,,,,,,,,,,,066 -Sheriff ,,P. O. Box 1670,,Houma,LA,70361,985-876-2500,TERREBONNE,"L. Vernon Bourgeois, Jr.",P.O. Box 1670,,Houma,LA,70361,985-876-2428,W,M,D,225,06/30/2012,07/01/2008,Sheriff Bourgeois -Clerk of Court ,,P. O. Box 1569,,Houma,LA,70361-1569,985-868-5660,TERREBONNE,"I. Robert ""Bobby"" Boudreaux",P.O. Box 1569,,Houma,LA,70361-1569,985-872-5093,W,M,D,230,06/30/2012,07/01/2008,Mr. Boudreaux -Assessor ,,P.O. Box 5094,,Houma,LA,70361,385-876-6620,TERREBONNE,Gene P. Bonvillain,354 Robert St.,,Houma,LA,70363-3636,985-876-1292,W,M,D,235,12/31/2012,01/01/2009,Mr. Bonvillain -Coroner ,,P.O. Box 252,,Houma,LA,70361,985-873-6440,TERREBONNE,Victor Tedesco,101 Summerfield Dr.,,Houma,LA,70360-6255,985-868-1293,W,M,R,240,03/25/2012,03/24/2008,Mr. Tedesco -Parish President ,,P.O. Box 2768,,Houma,LA,,985-873-6519,TERREBONNE,Michel Claudet,P.O. Box 2416,,Houma,LA,70361,985-868-4775,W,M,R,243,01/09/2012,01/14/2008,Mr. Claudet -Council Member ,District 1 ,P. O. Box 2768,,Houma,LA,,985-873-6519,TERREBONNE,Alvin Tillman,3635 Friendswood Dr.,,Houma,LA,70363-3852,985-853-2086,B,M,D,245,01/09/2012,01/14/2008,Mr. Tillman -Council Member ,District 2 ,P. O. Box 2768,,Houma,LA,70361,985-873-6519,TERREBONNE,Arlanda Williams,343 Polk St.,,Houma,LA,70360-4147,985-853-2079,B,F,D,245,01/09/2012,01/14/2008,Ms. Williams -Council Member ,District 3 ,P. O. Box 2768,,Houma,LA,70361,985-873-6519,TERREBONNE,Billy Hebert,302 Richard Dr.,,Houma,LA,70364-2532,985-872-4343,W,M,D,245,01/09/2012,01/14/2008,Mr. Hebert -Council Member,District 4,P. O. Box 2768,,Houma,LA,70361,985-873-6519,TERREBONNE,Teri Cavalier,307 Lola St.,,Gray,LA,70359-3017,985-879-4521,W,F,,245,01/09/2012,01/14/2008,Ms. Cavalier -Council Member ,District 5 ,P. O. Box 2768,,Houma,LA,70361,985-873-6519,TERREBONNE,John Pizzolatto,103 John St.,,Houma,LA,70360-2720,985-872-2962,W,M,R,245,01/09/2012,01/14/2008,Mr. Pizzolatto -Council Member ,District 6 ,P. O. Box 2768,,Houma,LA,70361,985-873-6519,TERREBONNE,Kevin Michael Voisin,101 Angelle Circle,,Houma,LA,70360-3981,985-868-5971,W,M,R,245,01/09/2012,12/16/2008,Mr. Voisin -Council Member ,District 7 ,P. O. Box 2768,,Houma,LA,70361,985-873-6519,TERREBONNE,Clayton J. Voisin,P.O. Box 427,,Dulac,LA,70353-0427 ,985-223-0253,W,M,D,245,01/09/2012,01/14/2008,Mr. Voisin -Council Member ,District 8 ,P. O. Box 2768,,Houma,LA,70361,985-873-6519,TERREBONNE,"""Joey"" Cehan",216 Hialeah Ave.,,Houma,LA,70363-6933,985-873-8705,W,M,D,245,01/09/2012,01/14/2008,Mr. Cehan -Council Member ,District 9 ,P. O. Box 2768,,Houma,LA,70361,985-873-6519,TERREBONNE,"""Pete"" Lambert",861 Hwy. 55,,Montegut,LA,70377-3407,985-594-9880,W,M,D,245,01/09/2012,01/14/2008,Mr. Lambert -City Judge ,"City Court, City of Houma ",7887 Main St.,,Houma,LA,70360,985-868-4232,TERREBONNE,Jude Thaddeus Fanguy,8033 Park Ave.,,Houma,LA,70364-3359,985-868-0897,W,M,D,250,12/31/2014,01/01/2009,Judge Thaddeus -City Marshal ,"City Court, City of Houma ",7887 Main St.,,Houma,LA,70360,985-868-8914,TERREBONNE,Brian J. LeBlanc,P. O. Box 283,,Chauvin,LA,70344-0283 ,985-594-7133,W,M,D,250,12/31/2014,01/01/2009,Marshal LeBlanc -Member of School Board ,District 1 ,P. O. Box 5097,,Houma,LA,70361,985-876-7400,TERREBONNE,"Roosevelt ""Rosey"" Thomas",P.O. Box 10094,,Houma,LA,70363-5240,985-876-7612,B,M,D,255,12/31/2010,01/01/2007,Mr. Thomas -Member of School Board ,District 2 ,P.O. Box 5097,,Houma,LA,70361,985-876-7400,TERREBONNE,"Gregory ""Dut"" Harding",215 Prince Collins St.,,Houma,LA,70364-3057,985-876-0393,B,M,D,255,12/31/2010,01/01/2007,Mr. Harding -Member of School Board ,District 3 ,P.O. Box 5097,,Houma,LA,70361,985-876-7400,TERREBONNE,"Richard ""Dicky"" Jackson",607 Funderburk Ave.,,Houma,LA,70364-1822,985-868-1657,W,M,D,255,12/31/2010,01/01/2007,Mr. Jackson -Member of School Board ,District 4 ,P.O. Box 5097,,Houma,LA,70361,985-876-7400,TERREBONNE,Rickie Pitre,214 Bayou Gardens Dr.,,Houma,LA,70364-1441,985-879-1879,W,M,D,255,12/31/2010,01/01/2007,Mr. Pitre -Member of School Board ,District 5 ,P.O. Box 5097,,Houma,LA,70361,985-876-7400,TERREBONNE,Clark J. Bonvillain,8608 Park Ave.,,Houma,LA,70363-3771,985-876-0712,W,M,D,255,12/31/2010,01/01/2007,Mr. Bonvillain -Member of School Board ,District 6 ,P.O. Box 5097,,Houma,LA,70361,985-876-7400,TERREBONNE,"""L. P."" Bordelon",217 Tiger Tail Rd.,,Houma,LA,70360-6024,985-876-3305,W,M,R,255,12/31/2010,01/01/2007,Mr. Bordelon -Member of School Board ,District 7 ,P.O. Box 5097,,Houma,LA,70361,985-876-7400,TERREBONNE,Roger Dale DeHart,1353 Dr. Beatrous Rd.,,Theriot,LA,70397-9633,985-879-1329,W,M,D,255,12/31/2010,01/01/2007,Mr. DeHart -Member of School Board ,District 8 ,P.O. Box 5097,,Houma,LA,70361,985-876-7400,TERREBONNE,"Donald ""Don"" Duplantis",313 Hialeah Ave.,,Houma,LA,70363-6934,985-873-8239,W,M,D,255,12/31/2010,01/01/2007,Mr. Duplantis -Member of School Board ,District 9 ,P.O. Box 5097,,Houma,LA,70361,985-876-7400,TERREBONNE,"Hayes J. Badeaux, Jr.",P.O. Box 127,,Bourg,LA,70343-3506,985-594-4723,W,M,D,255,12/31/2010,01/01/2007,Mr. Badeaux -Justice of the Peace ,Justice of the Peace Ward 1 ,212 Ciera Dr.,,Houma,LA,70364,985-872-0235,TERREBONNE,"Robert ""Yogi"" Naquin",204 Ciera Dr.,,Houma,LA,70364-3711,985-872-0235,W,M,R,265,12/31/2014,01/01/2009,Mr. Naquin -Justice of the Peace ,Justice of the Peace Ward 2 ,104 Nottoway Dr.,,Houma,LA,70360,985-872-4600,TERREBONNE,"Kenneth ""Kenny"" Hamner",104 Nottoway Dr.,,Houma,LA,70360-8935,985-872-9913,W,M,D,265,12/31/2014,01/01/2009,Mr. Hamner -Justice of the Peace ,Justice of the Peace Ward 4 ,6583 Grand Caillou Rd.,,Dulac,LA,70353,985-563-4330,TERREBONNE,Cheryl Authement Blanchard,311 Ashland Dr.,,Houma,LA,70363-7281,985-209-5574,W,F,D,265,12/31/2014,01/01/2009,Ms. Blanchard -Justice of the Peace ,Justice of the Peace Ward 5 ,103 Gaudet Dr.,,Bourg,LA,70343,985-594-3560,TERREBONNE,Jerome C. Fabre,105 Gaudet Dr.,,Bourg,LA,70343-3707,985-594-3560,W,M,D,265,12/31/2014,01/01/2009,Mr. Fabre -Justice of the Peace ,Justice of the Peace Ward 6 ,919 La. Hwy. 55,,Montegut,LA,70377,985-594-4960,TERREBONNE,"Louis J. Riche, III",919 Hwy. 55,,Montegut,LA,70377-2221,985-594-4960,W,M,D,265,12/31/2014,01/01/2009,Mr. Riche -Justice of the Peace ,Justice of the Peace Ward 7 ,204 S. Central Blvd.,,Chauvin,LA,70344,985-594-3103,TERREBONNE,Johnny B. Eschete,204 South Central Blvd.,,Chauvin,LA,70344-4306,985-594-3103,W,F,D,265,12/31/2014,01/01/2009,Mr. Eschete -Justice of the Peace ,Justice of the Peace Ward 8 ,6052 N. Bayou Black Dr.,,Gibson,LA,70356,985-575-3198,TERREBONNE,Horace Johnson,5562 N. Bayou Black Dr.,,Gibson,LA,70356-3662,985-575-3198,B,M,D,265,12/31/2014,01/01/2009,Mr. Johnson -Justice of the Peace ,Justice of the Peace Ward 9 ,3938 Southdown Mandalay Rd.,,Houma,LA,70360,985-868-2870,TERREBONNE,Drew P. Breaux,3938 Southdown Mandalay Rd.,,Houma,LA,70360,985-868-2870,W,M,,265,12/31/2014,01/01/2009,Mr. Breaux -Justice of the Peace ,Justice of the Peace Ward 10 ,1578-A Doctor Beatrous Rd.,,Theriot,LA,70397,985-851-7002,TERREBONNE,Junior J. Theriot,1578-A Doctor Beatrous Rd.,,Theriot,LA,70397-9638,985-851-7002,W,M,D,265,12/31/2014,01/01/2009,Mr. Theriot -Constable ,Justice of the Peace Ward 1 ,P.O. Box 1388,,Gray,LA,70359-1388,985-876-2461,TERREBONNE,David J. LeBoeuf,106 Bayou Gardens Dr.,,Houma,LA,70364,985-879-1203,W,M,R,267,12/31/2014,01/01/2009,Mr. LeBoeuf -Constable ,Justice of the Peace Ward 2 ,804 Bull Run Rd.,,Schriever,LA,70395,985-879-1684,TERREBONNE,"""L. J."" Schexnayder",814 Bull Run Rd.,,Schriever,LA,70395-3214,985-879-1684,W,M,D,267,12/31/2014,01/01/2009,Mr. Schexnayder -Constable ,Justice of the Peace Ward 4 ,3392 Grand Caillou Rd.,,Houma,LA,70363,985-223-2672,TERREBONNE,"Harrison ""Sonny"" Parfait",3392 Grand Caillou Rd.,,Houma,LA,70363-7142,985-872-4333,W,M,D,267,12/31/2014,01/01/2009,Mr. Parfait -Constable ,Justice of the Peace Ward 5 ,P.O. Box 813,,Bourg,LA,70343-0813 ,985-868-7888,TERREBONNE,"Douglas ""Chubby"" Chauvin",P. O. Box 316,,Bourg,LA,70343,985-868-7888,W,M,R,267,12/31/2014,01/01/2009,Mr. Chauvin -Constable ,Justice of the Peace Ward 6 ,100 Dennis St.,,Montegut,LA,70377,985-594-8219,TERREBONNE,"William ""B. J."" Underwood, III",105 N J Bourg Ln.,,Montegut,LA,70377-3417,985-209-0725,W,M,R,267,12/31/2014,01/01/2009,Mr. Underwood -Constable ,Justice of the Peace Ward 7 ,5282 Bayouside Dr.,,Chauvin,LA,70344,985-594-4890,TERREBONNE,Daniel J. Trahan,5282 Bayouside Dr.,,Chauvin,LA,70344-3907,985-594-4890,W,M,D,267,12/31/2014,01/01/2009,Mr. Trahan -Constable ,Justice of the Peace Ward 8 ,P.O. Box 319,,Gibson,LA,70356,985-575-8021,TERREBONNE,Lloyd Gibson,P.O. Box 319,,Gibson,LA,70356-0319 ,985-575-8021,B,M,D,267,12/31/2014,01/01/2009,Mr. Gibson -Constable ,Justice of the Peace Ward 9 ,4518-A N Bayou Black Dr.,,Gibson,LA,70356,985-572-2129,TERREBONNE,Floyd A. Trahan,4518-A N. Bayou Black Dr.,,Gibson,LA,70356-3006,985-575-2129,W,M,O,267,12/31/2014,01/01/2009,Mr. Trahan -Constable ,Justice of the Peace Ward 10 ,1327 Doctor Beatrous Rd.,,Theriot,LA,70397,985-876-0728,TERREBONNE,Dale A. Theriot,1327 Doctor Beatrous Rd.,,Theriot,LA,70397-9633,985-876-0728,W,M,D,267,12/31/2014,01/01/2009,Mr. Theriot -DPEC Member ,at Large ,,,,LA,,,UNION,Ralph M. Kelley,278 Kelley Rd.,,Downsville,LA,71234,318-982-5634,W,M,D,054,02/20/2012,02/20/2008,Mr. Kelley -DPEC Member ,Ward 1 ,,,,LA,,,UNION,,,,,,,,,,,056 -DPEC Member ,Ward 2 ,,,,LA,,,UNION,,,,,,,,,,,056 -DPEC Member ,Ward 3 ,,,,LA,,,UNION,,,,,,,,,,,056 -DPEC Member ,Ward 4 ,,,,LA,,,UNION,,,,,,,,,,,056 -DPEC Member ,Ward 5 ,,,,LA,,,UNION,,,,,,,,,,,056 -DPEC Member ,Ward 6 ,,,,LA,,,UNION,,,,,,,,,,,056 -DPEC Member ,Ward 7 ,,,,LA,,,UNION,,,,,,,,,,,056 -DPEC Member ,Ward 8 ,,,,LA,,,UNION,,,,,,,,,,,056 -DPEC Member ,Ward 9 ,,,,LA,,,UNION,,,,,,,,,,,056 -RPEC Member ,at Large ,,,,LA,,,UNION,"Joseph A. Cusimano, Jr.",108 Memory Ln.,,Farmerville,LA,71241,318-368-2747,W,M,R,064,02/20/2012,02/20/2008,Mr. Cusimano -RPEC Member ,Ward 1 ,,,,LA,,,UNION,,,,,,,,,,,066 -RPEC Member ,Ward 2 ,,,,LA,,,UNION,,,,,,,,,,,066 -RPEC Member ,Ward 3 ,,,,LA,,,UNION,,,,,,,,,,,066 -RPEC Member ,Ward 4 ,,,,LA,,,UNION,,,,,,,,,,,066 -RPEC Member ,Ward 5 ,,,,LA,,,UNION,,,,,,,,,,,066 -RPEC Member ,Ward 6 ,,,,LA,,,UNION,,,,,,,,,,,066 -RPEC Member ,Ward 7 ,,,,LA,,,UNION,,,,,,,,,,,066 -RPEC Member ,Ward 8 ,,,,LA,,,UNION,,,,,,,,,,,066 -RPEC Member ,Ward 9 ,,,,LA,,,UNION,,,,,,,,,,,066 -Sheriff ,,"100 E. Bayou St., Ste. 101",,Farmerville,LA,71241,318-368-3124,UNION,"Robert G. ""Bob"" Buckley","100 E. Bayou St., Ste. 101",,Farmerville,LA,71241,318-368-3124,W,M,D,225,06/30/2012,07/01/2008,Sheriff Buckley -Clerk of Court ,,"100 E. Bayou St., Ste. 105",,Farmerville,LA,71241,318-368-3055,UNION,Dodi Dodd Eubanks,"100 E. Bayou St., Ste. 105",,Farmerville,LA,71241,318-368-9772,W,F,R,230,06/30/2012,07/01/2008,Ms. Eubanks -Assessor ,,"100 E. Bayou St., Ste. 103",,Farmerville,LA,71241,318-368-3232,UNION,"""Terry"" Baker",1449 Tech Dr.,,Farmerville,LA,71241,318-368-1076,W,F,D,235,12/31/2012,01/01/2009,Mr. Baker -Coroner ,,"811 James Ave., Ste. B.",,Farmerville,LA,71241,318-368-0190,UNION,Steven Venters,P.O. Box 218,,Farmerville,LA,71241,318-368-0190,W,M,R,240,03/25/2012,03/24/2008,Mr. Venters -Police Juror ,District 1 ,P. O. Box 723,,Farmerville,LA,,318-368-3296,UNION,Charles Sawyer,P.O. Box 673,,Farmerville,LA,71241,318-368-2166,B,M,D,245,01/08/2012,01/14/2008,Mr. Sawyer -Police Juror ,District 2 ,P. O. Box 723,,Farmerville,LA,71241,318-368-3296,UNION,Lanny Parker,270 Mina Parker Rd.,,Marion,LA,71260,318-292-5291,W,M,R,245,01/08/2012,01/14/2008,Mr. Parker -Police Juror ,District 3 ,P. O. Box 723,,Farmerville,LA,71241,318-368-3296,UNION,A. J. Smith,1248 Webster Bluff Rd.,,Farmerville,LA,71241,318-368-8497,W,M,D,245,01/08/2012,01/14/2008,Mr. Smith -Police Juror ,District 4 ,P. O. Box 723,,Farmerville,LA,71241,318-368-3296,UNION,Johnny Buckley,12784 Hwy. 2,,Bernice,LA,71222,318-285-7134,W,M,D,245,01/08/2012,01/14/2008,Mr. Buckley -Police Juror ,District 5 ,P. O. Box 723,,Farmerville,LA,71241,318-368-3296,UNION,Jerry Rugg,390 Wells Rd.,,Downsville,LA,71234,318-982-5992,W,M,R,245,01/08/2012,01/14/2008,Mr. Rugg -Police Juror ,District 6 ,P. O. Box 723,,Farmerville,LA,71241,318-368-3296,UNION,Alvin Allen,1919 Sweet Lily Rd.,,Marion,LA,71260,318-368-3822,W,M,R,245,01/08/2012,01/14/2008,Mr. Allen -Police Juror ,District 7 ,P. O. Box 723,,Farmerville,LA,71241,318-368-3296,UNION,Vergil Ramsey,510 Deloutre Switch Rd.,,Farmerville,LA,71241,318-368-3434,W,M,D,245,01/08/2012,01/14/2008,Mr. Ramsey -Police Juror ,District 8 ,P. O. Box 723,,Farmerville,LA,71241,318-368-3296,UNION,Don Acree,9271 Hwy. 143,,Farmerville,LA,71241,318-726-5467,W,M,D,245,01/08/2012,01/14/2008,Mr. Acree -Police Juror ,District 9 ,P. O. Box 723,,Farmerville,LA,71241,318-368-3296,UNION,"John ""Johnny"" Watley",509 Gary St.,,Bernice,LA,71222,318-285-7397,B,M,D,245,01/08/2012,01/14/2008,Mr. Watley -Member of School Board ,District 1 ,P. O. Box 308,,Farmerville,LA,71241,318-368-9715,UNION,"Robert C. James, Jr.",205 Line St.,,Farmerville,LA,71241,318-368-2946,B,M,D,255,12/31/2010,01/01/2007,Mr. James -Member of School Board ,District 2 ,P. O. Box 308,,Farmerville,LA,71241,318-368-9715,UNION,Jimmy Hollis,508 Wheeler Rd.,,Marion,LA,71260,318-292-5210,W,M,D,255,12/31/2010,01/01/2007,Mr. Hollis -Member of School Board ,District 3 ,P. O. Box 308,,Farmerville,LA,71241,318-368-9715,UNION,Michael Holley,358 Goose Elkins Rd.,,Spearsville,LA,71277,318-778-3382,W,M,D,255,12/31/2010,01/01/2007,Mr. Holley -Member of School Board ,District 4 ,P. O. Box 308,,Farmerville,LA,71241,318-368-9715,UNION,Barbara Yarbrough,12762 Hwy. 2,,Bernice,LA,71222,318-285-9684,W,F,D,255,12/31/2010,01/01/2007,Ms. Yarbrough -Member of School Board ,District 5 ,P. O. Box 308,,Farmerville,LA,71241,318-368-9715,UNION,Howard C. Allen,P.O. Box 65,,Downsville,LA,71234,318-982-5900,W,M,D,255,12/31/2010,01/01/2007,Mr. Allen -Member of School Board ,District 6 ,P. O. Box 308,,Farmerville,LA,71241,318-368-9715,UNION,John E. Ellis,617 Burch Rd.,,Marion,LA,71260,318-292-4343,B,M,D,255,12/31/2010,01/01/2007,Mr. Ellis -Member of School Board ,District 7 ,P. O. Box 308,,Farmerville,LA,71241,318-368-9715,UNION,Casey Kennedy,1420 West Port Union Rd.,,Farmerville,LA,71241,318-368-1880,W,M,D,255,12/31/2010,01/01/2007,Mr. Kennedy -Member of School Board ,District 8 ,P. O. Box 308,,Farmerville,LA,71241,318-368-9715,UNION,"""Steve"" Johnson",152 Girl Scout Rd.,,Sterlington,LA,71280,318-726-5001,W,M,D,255,12/31/2010,01/01/2007,Mr. Johnson -Member of School Board ,District 9 ,P. O. Box 308,,Farmerville,LA,71241,318-368-9715,UNION,Marcus Watley,P.O. Box 69,,Bernice,LA,71222,318-285-9758,B,M,D,255,12/31/2010,01/01/2007,Mr. Watley -Justice of the Peace ,Justice of the Peace Ward 1 ,705 Taylor St.,,Farmerville,LA,71241,318-368-2711,UNION,"Herman Senn, Jr.",705 Taylor St.,,Farmerville,LA,71241,318-368-2711,W,M,R,265,12/31/2014,01/01/2009,Mr. Senn -Justice of the Peace ,Justice of the Peace Ward 2 ,814 Denton Rd.,,Farmerville,LA,71241,318-368-9406,UNION,Nancy Moon Hearn,177 Barr Rd.,,Farmerville,LA,71241,,W,F,D,265,12/31/2014,01/01/2009,Ms. Hearn -Justice of the Peace ,Justice of the Peace Ward 3 ,P.O. Box 310,,Bernice,LA,71222,318-285-7291,UNION,Robert Dean Tubbs,778 Pisgah Church Rd.,,Bernice,LA,71222,318-285-7291,W,M,D,265,12/31/2014,01/01/2009,Mr. Tubbs -Constable ,Justice of the Peace Ward 1 ,5530 Hwy. 2,,Farmerville,LA,71241,318-368-2949,UNION,Scotty Aulds,5530 Hwy. 2,,Farmerville,LA,71241,318-368-2949,W,M,D,267,12/31/2014,01/01/2009,Mr. Aulds -Constable ,Justice of the Peace Ward 2 ,558 Acree Rd.,,Farmerville,LA,71241,318-368-7626,UNION,Larry Booth,558 Acree Rd.,,Farmerville,LA,71241,318-726-7626,W,M,D,267,12/31/2014,01/01/2009,Mr. Booth -Constable ,Justice of the Peace Ward 3 ,435 Pleasant Hill Rd.,,Farmerville,LA,71241,318-368-2465,UNION,Kevin Doster,470 Gatson Road,,Spearsville,LA,71277,318-778-4383,W,M,R,267,12/31/2014,01/01/2009,Mr. Doster -Mayor ,Town of Bernice ,P. O. Box 186,,Bernice,LA,,318-285-9071,UNION,Joe Hicks,P.O. Box 329,,Bernice,LA,71222,318-285-0128,B,M,D,300,12/31/2010,01/01/2007,Mayor Hicks -Mayor ,Town of Farmerville ,P. O. Box 427,,Farmerville,LA,,318-368-7140,UNION,"Stein Baughman, Jr.",P. O. Box 796,,Farmerville,LA,71241,318-368-8656,W,M,D,300,12/31/2012,01/01/2009,Mayor Baughman -Mayor ,Town of Marion ,398 Main St.,,Marion,LA,,318-292-4715,UNION,Kenneth W. Franklin,572 Main St.,,Marion,LA,71260,318-292-4485,W,M,D,300,12/31/2010,01/01/2007,Mr. Franklin -Mayor ,Village of Lillie ,P. O. Box 10,,Lillie,LA,,318-285-0222,UNION,"Isaac M. Lee, Jr.",3598 Hwy 167,,Lillie,LA,71256,318-285-9695,B,M,D,300,12/31/2012,01/01/2009,Mr. Lee -Mayor ,Village of Spearsville ,2511 Hwy. 3121,,Spearsville,LA,,318-778-3886,UNION,"""Bob"" Shoemaker",1352 Hwy. 15,,Spearsville,LA,71277,318-778-3828,W,M,D,300,12/31/2010,01/01/2007,Mayor Shoemaker -Chief of Police ,Town of Bernice ,P. O. Box 186,,Bernice,LA,71222,318-285-9071,UNION,Ricky Albritton,P.O. Box 335,,Bernice,LA,71222,318-243-5559,W,M,D,305,12/31/2010,01/01/2007,Chief Albritton -Chief of Police ,Town of Marion ,398 Main St.,,Marion,LA,71260,318-292-4715,UNION,Mark Dodd,300 Joe Brown Drive,,Marion,LA,71260,318-292-4143,W,M,D,305,12/31/2010,01/01/2007,Mr. Dodd -Chief of Police ,Village of Lillie ,P. O. Box 10,,Lillie,LA,71256,318-285-0094,UNION,,,,,,,,,,,305 -Chief of Police ,Village of Spearsville ,2511 Hwy. 3121,,Spearsville,LA,71277,318-778-3886,UNION,John B. Rhodes,P.O. Box 31,,Spearsville,LA,71277,318-778-0642,W,M,D,305,12/31/2010,09/14/2007,Chief Rhodes -Marshal ,Town of Farmerville ,P. O. Box 427,,Farmerville,LA,71241,318-368-9242,UNION,"E. ""Bim"" Coulbertson",515 East Green St.,,Farmerville,LA,71241,318-368-7221,B,M,D,305,12/31/2012,01/01/2009,Mr. Coulberson -Alderman ,"District 1, Town of Bernice ",P. O. Box 186,,Bernice,LA,71222,318-285-9071,UNION,Gene Terral,929 Pisgah Church Rd.,,Bernice,LA,71222,318-285-7137,W,M,D,310,12/31/2010,01/01/2007,Mr. Terral -Alderman ,"District 2, Town of Bernice ",P. O. Box 186,,Bernice,LA,71222,318-285-9071,UNION,Rhodell Montgomery,P.O. Box 273,,Bernice,LA,71222,318-285-7476,B,M,D,310,12/31/2010,01/01/2007,Mr. Montgomery -Alderman ,"District 3, Town of Bernice ",P. O. Box 186,,Bernice,LA,71222,318-285-9071,UNION,Teddy Sutton,113 Church St.,,Bernice,LA,71222,318-285-7490,B,M,D,310,12/31/2010,01/01/2007,Mr. Sutton -Alderman ,"District 4, Town of Bernice ",P. O. Box 186,,Bernice,LA,71222,318-285-9071,UNION,Mildred Ferguson,P.O. Box 43,,Bernice,LA,71222,318-285-7175,B,F,D,310,12/31/2010,01/01/2007,Ms. Ferguson -Alderman ,"District 5, Town of Bernice ",P. O. Box 186,,Bernice,LA,71222,318-285-9071,UNION,Amy Pesnell,3017 Roberson St.,,Bernice,LA,71222,318-285-9107,W,F,D,310,12/31/2010,01/01/2007,Ms. Pesnell -Alderman ,"District A, Town of Farmerville ",P. O. Box 427,,Farmerville,LA,71241,318-368-9242,UNION,"Wayne ""Pone"" Jones",1312 Marion Hwy.,,Farmerville,LA,71241,318-368-5476,B,M,,310,12/31/2012,01/01/2009,Mr. Jones -Alderman ,"District B, Town of Farmerville ",P. O. Box 427,,Farmerville,LA,71241,318-368-9242,UNION,Lavelle Maine,P. O. Box 82,,Farmerville,LA,71241,318-368-1766,B,M,D,310,12/31/2012,01/01/2009,Mr. Maine -Alderman ,"District C, Town of Farmerville ",P. O. Box 427,,Farmerville,LA,71241,318-368-9242,UNION,Joseph Jones,808 Martin Luther King Dr.,,Farmerville,LA,71241,318-368-9386,B,M,D,310,12/31/2012,01/01/2009,Mr. Jones -Alderman ,"District D, Town of Farmerville ",P. O. Box 427,,Farmerville,LA,71241,318-368-9242,UNION,Gerome Nation,714 West Bayou St.,,Farmerville,LA,71241,318-368-3885,B,M,D,310,12/31/2012,01/01/2009,Mr. Nation -Alderman ,"District E, Town of Farmerville ",P. O. Box 427,,Farmerville,LA,71241,318-368-9242,UNION,Jerry Taylor,303 Miller St.,,Farmerville,LA,71241,318-368-8673,W,M,D,310,12/31/2012,01/01/2009,Mr. Taylor -Alderman ,Town of Marion ,398 Main St.,,Marion,LA,71260,318-292-4715,UNION,Johnny B. Gilliam,P.O. Box 408,,Marion,LA,71260,318-292-5550,B,M,D,310,12/31/2010,01/01/2007,Mr. Gilliam -Alderman ,Town of Marion ,398 Main St.,,Marion,LA,71260,318-292-4715,UNION,"Eugene ""Bubba"" Hoggatt",P.O. Box 376,,Marion,LA,71160,318-292-5419,W,M,R,310,12/31/2010,01/01/2007,Mr. Hoggatt -Alderman ,Town of Marion ,398 Main St.,,Marion,LA,71260,318-292-4715,UNION,Ralph D. Holley,231 Crow St.,,Marion,LA,71260,318-292-5471,B,M,D,310,12/31/2010,01/01/2007,Mr. Holley -Alderman ,Town of Marion ,398 Main St.,,Marion,LA,71260,318-292-4715,UNION,Ann D. Miller,1042 Main St.,,Marion,LA,71260,318-292-5405,W,F,D,310,12/31/2010,01/01/2007,Ms. Miller -Alderman ,Town of Marion ,398 Main St.,,Marion,LA,71260,318-292-4715,UNION,Danny A. Smith,172 Concord St.,,Marion,LA,71260,318-292-5249,W,M,D,310,12/31/2010,01/01/2007,Mr.Smith -Alderman ,Village of Lillie ,P. O. Box 10,,Lillie,LA,71256,318-285-0094,UNION,"A. J. Ford, Jr.",147 Cook Rd.,,Lillie,LA,71256,318-285-7074,B,M,D,310,12/31/2012,02/23/2009,Mr. Ford -Alderman ,Village of Lillie ,P. O. Box 10,,Lillie,LA,71256,318-285-0094,UNION,Joseph Larry,114 Cook Rd.,,Lillie,LA,71256,318-285-7048,B,M,D,310,12/31/2012,01/01/2009,Mr. Larry -Alderman ,Village of Lillie ,P. O. Box 10,,Lillie,LA,71256,318-285-0094,UNION,"Jarrell Wilson, Sr.",103 Sycamore Circle,,Lillie,LA,71256,318-285-7308,W,M,R,310,12/31/2012,01/01/2009,Mr. Wilson -Alderman ,Village of Spearsville ,2511 Hwy. 3121,,Spearsville,LA,71277,318-778-3886,UNION,Betty B. Barron,370 Spearsville Rd,,Spearsville,LA,71277,318-778-3765,W,F,R,310,12/31/2010,08/24/2009,Ms. Barron -Alderman ,Village of Spearsville ,2511 Hwy. 3121,,Spearsville,LA,71277,318-778-3886,UNION,John R. Rhodes,385 Spearsville Road,,Spearsville,LA,71277,318-778-3222,W,M,D,310,12/31/2010,01/01/2007,Mr. Rhodes -Alderman ,Village of Spearsville ,2511 Hwy. 3121,,Spearsville,LA,71277,318-778-3886,UNION,Peggy Rockett,250 Carroll Loop,,Spearsville,LA,71277,318-778-4255,W,F,D,310,12/31/2010,01/01/2007,Ms. Rockett -DPEC Member ,at Large ,,,,LA,,,VERMILION,Cynthia Sudduth Campisi,306 S. Hollingsworth Dr.,,Abbeville,LA,70510,337-893-0762,W,F,D,054,02/20/2012,02/20/2008,Ms. Campisi -DPEC Member ,at Large ,,,,LA,,,VERMILION,Rodney Simon,506 N. Gin St.,,Erath,LA,70533-3729,337-937-5124,W,M,D,054,02/20/2012,02/20/2008,Mr. Simon -DPEC Member ,at Large ,,,,LA,,,VERMILION,Robert B. Vincent,405 N. Gin St.,,Erath,LA,70533,337-937-5585,W,M,D,054,02/20/2012,02/20/2008,Mr. Vincent -DPEC Member ,District 1 ,,,,LA,,,VERMILION,,,,,,,,,,,056 -DPEC Member ,District 2 ,,,,LA,,,VERMILION,,,,,,,,,,,056 -DPEC Member ,District 3 ,,,,LA,,,VERMILION,,,,,,,,,,,056 -DPEC Member ,District 4 ,,,,LA,,,VERMILION,,,,,,,,,,,056 -DPEC Member ,District 5 ,,,,LA,,,VERMILION,,,,,,,,,,,056 -DPEC Member ,District 6 ,,,,LA,,,VERMILION,,,,,,,,,,,056 -DPEC Member ,District 7 ,,,,LA,,,VERMILION,,,,,,,,,,,056 -DPEC Member ,District 8 ,,,,LA,,,VERMILION,,,,,,,,,,,056 -DPEC Member ,District 9 ,,,,LA,,,VERMILION,,,,,,,,,,,056 -DPEC Member ,District 10 ,,,,LA,,,VERMILION,"Jagdish ""Jack"" Gupta",407 Church St.,,Kaplan,LA,70548,337-643-1275,O,M,D,056,02/20/2012,02/20/2008,Mr. Gupta -DPEC Member ,District 11 ,,,,LA,,,VERMILION,,,,,,,,,,,056 -DPEC Member ,District 12 ,,,,LA,,,VERMILION,,,,,,,,,,,056 -DPEC Member ,District 13 ,,,,LA,,,VERMILION,,,,,,,,,,,056 -DPEC Member ,District 14 ,,,,LA,,,VERMILION,,,,,,,,,,,056 -RPEC Member ,at Large ,,,,LA,,,VERMILION,Dexter James Duhon,9016 Rachelle Drive,,Abbeville,LA,70510-2119,337-893-2702,W,M,R,064,02/20/2012,02/20/2008,Mr. Duhon -RPEC Member ,District 1 ,,,,LA,,,VERMILION,,,,,,,,,,,066 -RPEC Member ,District 2 ,,,,LA,,,VERMILION,,,,,,,,,,,066 -RPEC Member ,District 3 ,,,,LA,,,VERMILION,,,,,,,,,,,066 -RPEC Member ,District 4 ,,,,LA,,,VERMILION,,,,,,,,,,,066 -RPEC Member ,District 5 ,,,,LA,,,VERMILION,,,,,,,,,,,066 -RPEC Member ,District 6 ,,,,LA,,,VERMILION,,,,,,,,,,,066 -RPEC Member ,District 7 ,,,,LA,,,VERMILION,,,,,,,,,,,066 -RPEC Member ,District 8 ,,,,LA,,,VERMILION,,,,,,,,,,,066 -RPEC Member ,District 9 ,,,,LA,,,VERMILION,,,,,,,,,,,066 -RPEC Member ,District 10 ,,,,LA,,,VERMILION,,,,,,,,,,,066 -RPEC Member ,District 11 ,,,,LA,,,VERMILION,,,,,,,,,,,066 -RPEC Member ,District 12 ,,,,LA,,,VERMILION,,,,,,,,,,,066 -RPEC Member ,District 13 ,,,,LA,,,VERMILION,,,,,,,,,,,066 -RPEC Member ,District 14 ,,,,LA,,,VERMILION,,,,,,,,,,,066 -Sheriff ,,P. O. Box 307,,Abbeville,LA,70511,337-898-4409,VERMILION,"Michael ""Mike"" Couvillon",P.O. Box 307,,Abbeville,LA,70511,337-643-2534,W,M,D,225,06/30/2012,07/01/2008,Sheriff -Clerk of Court ,,"100 North State St., Ste. 101",,Abbeville,LA,70510,337-898-1992,VERMILION,Diane Meaux Broussard,"100 North State St., Ste. 101",,Abbeville,LA,70510,337-893-2329,W,F,D,230,06/30/2012,07/01/2008,Mr. Broussard -Assessor ,,"100 N. State St., Ste. 110",,Abbeville,LA,70510,377-893-2837,VERMILION,"Kathryn ""Kathy"" Broussard",11404 Hare St.,,Abbeville,LA,70510,337-893-7404,,,D,235,12/31/2012,01/01/2009,Ms. Broussard -Coroner ,,P.O. Box 445,,Abbeville,LA,70511-0445 ,337-898-6430,VERMILION,Myriam Hutchinson,9326 LA Hwy. 82,,Abbeville,LA,70510,337-789-7272,W,F,R,240,03/25/2012,03/24/2008,Ms. Hutchinson -Police Juror,District 1,"100 N. State St., Ste. 200",,Abbeville,LA,70510,337-898-4300,VERMILION,Dane Hebert,5569 Alfred Rd.,,Maurice,LA,70555,337-893-9331,W,M,D,245,01/08/2012,01/14/2008,Mr. Hebert -Police Juror ,District 2 ,"100 N. State St., Ste. 200",,Abbeville,LA,70510,337-898-4300,VERMILION,"""Chris"" Beraud",8625 Westwood Dr.,,Abbeville,LA,70510,337-893-9471,W,M,D,245,01/08/2012,01/14/2008,Mr. Beraud -Police Juror ,District 3 ,"100 N. State St., Ste. 200",,Abbeville,LA,70510,337-898-4300,VERMILION,Nathan Granger,10903 North Rd.,,Abbeville,LA,70510-2524,337-937-4414,W,M,D,245,01/08/2012,01/14/2008,Mr. Granger -Police Juror ,District 4 ,"100 N. State St., Ste. 200",,Abbeville,LA,70510,337-898-4300,VERMILION,Ronald J. Darby,1617 Maude Ave.,,Abbeville,LA,70510-7063,337-893-5145,B,M,D,245,01/08/2012,01/14/2008,Mr. Darby -Police Juror ,District 5 ,"100 N. State St., Ste. 200",,Abbeville,LA,70510,337-898-4300,VERMILION,Wayne Touchet,505 Eaton Dr.,,Abbeville,LA,70510,337-893-1246,W,M,R,245,01/08/2012,01/14/2008,Mr. Touchet -Police Juror ,District 6 ,"100 N. State St., Ste. 200",,Abbeville,LA,70510,337-898-4300,VERMILION,Mark Poche,1013 S. Broadway St.,,Erath,LA,70533,337-937-4900,W,M,D,245,01/08/2012,01/14/2008,Mr. Poche -Police Juror ,District 7 ,"100 N. State St., Ste. 200",,Abbeville,LA,70510,337-898-4300,VERMILION,Keith Meaux,906 Meaux Ln.,,Abbeville,LA,70510,337-893-4527,,,R,245,01/08/2012,01/14/2008,Mr. Meaux -Police Juror ,District 8 ,"100 N. State St., Ste. 200",,Abbeville,LA,70510,337-898-4300,VERMILION,Errol J. Domingues,17237 LA Hwy. 331,,Erath,LA,70533,337-937-4654,W,M,D,245,01/08/2012,01/14/2008,Mr. Domingues -Police Juror ,District 9 ,"100 N. State St., Ste. 200",,Abbeville,LA,70510,337-898-4300,VERMILION,Gerald W. Butaud,17828 Pelican Rd.,,Erath,LA,70533-6113,337-893-7154,W,M,D,245,01/08/2012,01/14/2008,Mr. Butaud -Police Juror ,District 10 ,"100 N. State St., Ste. 200",,Abbeville,LA,70510,337-898-4300,VERMILION,"Ronald ""Dago"" Menard",9338 Hemlock Rd.,,Kaplan,LA,70548-7217,337-643-6043,W,M,D,245,01/08/2012,01/14/2008,Mr. Menard -Police Juror ,District 11 ,"100 N. State St., Ste. 200",,Abbeville,LA,70510,337-898-4300,VERMILION,Pervis Gaspard,9127 Sand Pit Rd.,,Abbeville,LA,70510,337-893-2985,,,D,245,01/08/2012,01/14/2008,Mr. Gaspard -Police Juror ,District 12 ,"100 N. State St., Ste. 200",,Abbeville,LA,70510,337-898-4300,VERMILION,Cloris J. Boudreaux,16635 W. LA Hwy. 700,,Kaplan,LA,70548-6453,337-643-8880,W,M,D,245,01/08/2012,01/14/2008,Mr. Boudreaux -Police Juror ,District 13 ,"100 N. State St., Ste. 200",,Abbeville,LA,70510,337-898-4300,VERMILION,"T. J. Prejean, Jr.",17507 LA Hwy. 35,,Abbeville,LA,70510-8969,337-643-2200,W,M,D,245,01/08/2012,01/14/2008,Mr. Prejean -Police Juror ,District 14 ,"100 N. State St., Ste. 200",,Abbeville,LA,70510,337-898-4300,VERMILION,Leon Broussard,401 Boatner St.,,Gueydan,LA,70542,337-536-8621,W,M,D,245,01/08/2012,01/14/2008,Mr. Broussard -City Judge ,"City Court, City of Abbeville ",P. O. Box 251,,Abbeville,LA,70511-0251 ,337-893-1513,VERMILION,"""Rick"" Putnam",102 S. Hollingsworth Dr.,,Abbeville,LA,70510-3640,337-296-8187,W,M,D,250,12/31/2014,01/01/2009,Judge Putnam -City Judge ,"City Court, City of Kaplan ",P. O. Box 121,,Kaplan,LA,70548,337-643-6611,VERMILION,Frank LeMoine,164 Richelieu Circle,,Kaplan,LA,70548-3608,337-643-6620,W,M,D,250,12/31/2014,01/01/2009,Judge Lemoine -City Marshal ,"City Court, City of Abbeville ",P.O. Box 251,,Abbeville,LA,70511-0251 ,337-893-1831,VERMILION,Jeremiah Bolden,P. O. Box 31 .,,Abbeville,LA,70511,337-652-8508,,,O,250,12/31/2014,01/01/2009,Marshal Bolden -City Marshal ,"City Court, City of Kaplan ",P.O. Box 121,,Kaplan,LA,70548,337-643-6663,VERMILION,"Percy Manceaux, Jr.",P. O. Box 243,,Kaplan,LA,70548,337-643-6348,W,M,D,250,12/31/2014,01/01/2009,Marshal Manceaux -Member of School Board ,District A ,P. O. Drawer 520,,Abbeville,LA,70511-0520 ,337-898-5764,VERMILION,"""Bill"" Searle",P.O. Box 184,,Gueydan,LA,70542,337-536-9451,W,M,R,255,12/31/2010,01/01/2007,Mr. Searle -Member of School Board ,District B ,P. O. Drawer 520,,Abbeville,LA,70511-0520 ,337-898-5764,VERMILION,Angela Faulk,9504 LA Hwy 696,,Abbeville,LA,70510-2177,337-501-8986,W,F,,255,12/31/2010,01/01/2007,Ms. Faulk -Member of School Board ,District C ,P. O. Drawer 520,,Abbeville,LA,70511-0520 ,337-898-5764,VERMILION,Dexter James Callahan,17101 LA Hwy. 696,,Kaplan,LA,70548-6471,337-643-6673,W,M,D,255,12/31/2010,01/01/2007,Mr. Callahan -Member of School Board ,District D ,P. O. Drawer 520,,Abbeville,LA,70511-0520 ,337-898-5764,VERMILION,Ricky LeBouef,16403 S. Liberty Farm Rd.,,Kaplan,LA,70548-7020,337-643-1791,W,M,,255,12/31/2010,01/01/2007,Mr. LeBouef -Member of School Board ,District E ,P. O. Drawer 520,,Abbeville,LA,70511-0520 ,337-898-5764,VERMILION,"Anthony ""Tony"" Fontana",210 N. Washington,,Abbeville,LA,70510-8157,337-893-8846,W,M,R,255,12/31/2010,01/01/2007,Mr. Fontana -Member of School Board ,District F ,P. O. Drawer 520,,Abbeville,LA,70511-0520 ,337-898-5764,VERMILION,Charles Campbell,206 S. Oliver St.,,Abbeville,LA,70510,337-893-2944,,,D,255,12/31/2010,01/01/2007,Mr. Campbell -Member of School Board ,District G ,P. O. Drawer 520,,Abbeville,LA,70511-0520 ,337-898-5764,VERMILION,Chris Mayard,11584 Sabra Circle,,Erath,LA,70533,337-937-6759,W,M,R,255,12/31/2010,01/01/2007,Mr. Mayard -Member of School Board ,District H ,P. O. Drawer 520,,Abbeville,LA,70511-0520 ,337-898-5764,VERMILION,Ricky J. Broussard,3401 Bethany Rd.,,Erath,LA,70533-5700,337-918-6166,W,M,D,255,12/31/2010,01/01/2007,Mr. Broussard -Justice of the Peace ,Justice of the Peace Ward 1 ,2313 Reginald Rd.,,Erath,LA,70533-5039,337-937-6346,VERMILION,"Perry Bourgeois, Jr.",2313 Reginald Rd.,,Erath,LA,70533-5039,337-937-6346,W,M,D,265,12/31/2014,01/01/2009,Mr. Bourgeois -Justice of the Peace ,Justice of the Peace Ward 1 ,2313 Reginald Rd.,,Erath,LA,70533-5039,337-937-6346,VERMILION,Roland Suire,708 E. Conrad St.,,Erath,LA,70533-3108,337-937-5576,W,M,D,265,12/31/2014,01/01/2009,Mr. Suire -Justice of the Peace ,Justice of the Peace Ward 2 ,16008 La. Hwy. 685,,Erath,LA,70533,337-937-6767,VERMILION,Eric John Toups,16008 La. Hwy. 685,,Erath,LA,70533-5618,337-937-6767,W,M,D,265,12/31/2014,01/01/2009,Mr. Toups -Justice of the Peace ,Justice of the Peace Ward 4 ,4279 US Hwy. 167,,Maurice,LA,70555-3703,337-893-3480,VERMILION,"Kenneth ""Keno"" Picard",4279 U. S. Hwy. 167,,Maurice,LA,70555,337-893-3480,,,D,265,12/31/2014,01/01/2009,Mr. Picard -Justice of the Peace ,Justice of the Peace Ward 5 ,4850 Leroy Rd.,,Maurice,LA,70555-3517,337-893-6370,VERMILION,Jessie J. Fabre,4850 Leroy Rd.,,Maurice,LA,70555-3517,337-893-6370,W,M,D,265,12/31/2014,01/01/2009,Mr. Fabre -Justice of the Peace ,Justice of the Peace Ward 6 ,17911 Gallet Rd.,,Abbeville,LA,70510-0253 ,337-642-5679,VERMILION,Sheb W. Callahan,16505 Lionel Rd.,,Abbeville,LA,70510-8940,337-643-6090,W,M,D,265,12/31/2014,01/01/2009,Mr. Callahan -Justice of the Peace ,Justice of the Peace Ward 7 ,16127 La. Hwy. 82,,Abbeville,LA,70510-8763,337-893-3327,VERMILION,Johnny C. Choate,18626 Theall Rd.,,Abbeville,LA,70510,337-893-4046,W,M,D,265,12/31/2014,01/01/2009,Mr. Choate -Justice of the Peace ,Justice of the Peace Ward 8 ,314 McMurtry St.,,Gueydan,LA,70542-4020,337-536-9853,VERMILION,"""Tim"" LeBlanc",314 McMurtry St.,,Gueydan,LA,70542-4020,337-536-9853,W,M,D,265,12/31/2014,01/01/2009,Mr. Leblanc -Constable ,Justice of the Peace Ward 1 ,14723 Emily Rd.,,Erath,LA,70533-5639,337-937-4295,VERMILION,Randy Granger,5000 Albert Rd.,,Abbeville,LA,70510-2596,337-937-4295,W,M,D,267,12/31/2014,01/01/2009,Mr. Granger -Constable ,Justice of the Peace Ward 1 ,14723 Emily Rd.,,Erath,LA,70533-5639,337-937-4295,VERMILION,Paul Poche',600 E. Derouen St.,,Erath,LA,70533,337-937-5459,W,M,,267,12/31/2014,01/01/2009,Mr. Poche -Constable ,Justice of the Peace Ward 2 ,4916 Morgan Rd.,,Erath,LA,70533,337-937-6204,VERMILION,Fabian J. Hulin,4916 Morgan Rd.,,Erath,LA,70533-6011,337-937-6204,W,M,D,267,12/31/2014,01/01/2009,Mr. Hulin -Constable ,Justice of the Peace Ward 4 ,7727 US Hwy. 167,,Abbeville,LA,70510-2168,337-893-4005,VERMILION,Charles J. Hebert,7420 Fusilier Rd.,,Maurice,LA,70555-4317,337-893-4005,W,M,D,267,12/31/2014,01/01/2009,Mr. Hebert -Constable ,Justice of the Peace Ward 5 ,1533 La. Hwy. 700,,Rayne,LA,70578-1702,337-334-4362,VERMILION,Earl C. Hoffpauir,1533 LA Hwy. 700,,Rayne,LA,70578-1702,337-334-4362,W,M,R,267,12/31/2014,01/01/2009,Mr. Hoffpauir -Constable ,Justice of the Peace Ward 6 ,21538 Keno Rd.,,Abbeville,LA,70510-0647 ,337-642-5442,VERMILION,"""B. J."" Lege",21538 Keno Rd.,,Abbeville,LA,70510,337-642-5442,W,M,D,267,12/31/2014,01/01/2009,Mr. Lege -Constable ,Justice of the Peace Ward 7 ,11723 Audubon Rd.,,Abbeville,LA,70510-8749,337-898-0223,VERMILION,"Antoine Barras, Jr.",11723 Audubon Rd.,,Abbeville,LA,70510,337-893-7652,W,M,D,267,12/31/2014,01/01/2009,Mr. Barras -Constable ,Justice of the Peace Ward 8 ,205 Walker St.,,Gueydan,LA,70542-3028,337-536-6145,VERMILION,Grayson Benoit,8916 Cowboy Rd.,,Gueydan,LA,70542,337-536-7496,,,D,267,12/31/2014,01/01/2009,Mr. Benoit -Mayor ,City of Abbeville ,101 N. State St.,,Abbeville,LA,,337-893-8550,VERMILION,Mark Piazza,1300 St. Dominic St.,,Abbeville,LA,70510,337-893-0400,W,M,D,300,06/30/2010,07/01/2006,Mayor Piazza -Mayor ,City of Abbeville ,101 N. State St.,,Abbeville,LA,,337-893-8550,VERMILION,"Mark Piazza, ",1300 St. Dominic Dr.,,Abbeville,LA,70510-2191,337-893-0400,W,M,D,300 -Mayor ,City of Kaplan ,701 Cushing Ave.,,Kaplan,LA,,337-643-8602,VERMILION,Linda Hardee,409 Jackson Ave.,,Kaplan,LA,70548,337-643-8046,W,F,D,300,06/30/2010,07/01/2006,Mayor Hardee -Mayor ,Town of Erath ,115 W. Edwards,,Erath,LA,,337-937-8401,VERMILION,George Dupuis,624 E. Edward St.,,Erath,LA,70533-4210,337-937-8413,W,M,D,300,12/31/2010,01/01/2007,Mr. Dupuis -Mayor ,Town of Gueydan ,600 Main St.,,Gueydan,LA,,337-536-9415,VERMILION,"Craig ""Bob"" Hensgens",305 Wilkinson St.,,Gueydan,LA,70542,337-536-9984,,,D,300,12/31/2010,10/30/2007,Mayor Hensgens -Mayor ,Village of Maurice ,P. O. Box 128,,Maurice,LA,,337-893-6406,VERMILION,"Robert H. ""Bob"" Ferguson",411 Chief H. Fred Ave.,,Maurice,LA,70555-4423,337-898-1401,W,M,D,300,12/31/2010,01/01/2007,Mr. Ferguson -Chief of Police ,City of Abbeville ,101 N. State St.,,Abbeville,LA,70510,337-893-8550,VERMILION,"Rickey ""Rick"" Coleman",2405 Helen St.,,Abbeville,LA,70510,337-893-9121,,,R,305,06/30/2010,07/01/2006,Chief Coleman -Chief of Police ,City of Abbeville ,101 N. State St.,,Abbeville,LA,70510,337-893-8550,VERMILION,"Tony J. Hardy, ",1120 N. Shireview Cir.,,Abbeville,LA,70510-7951,337-523-5746,W,M,D,305 -Chief of Police ,City of Kaplan ,701 Cushing Ave.,,Kaplan,LA,70548,337-643-8602,VERMILION,Steve Perry,110 Sonny Ln.,,Kaplan,LA,70548,337-643-8846,,M,D,305,06/30/2010,07/01/2006,Chief Perry -Chief of Police ,Town of Erath ,115 W. Edwards,,Erath,LA,70533,337-937-8401,VERMILION,"Gerald Hebert, ",415 LaSalle St.,,Erath,LA,70533,337-937-0463,W,M,D,305,12/31/2010,01/01/2007,Chief Hebert -Chief of Police ,Town of Gueydan ,600 Main St.,,Gueydan,LA,70542,337-536-9415,VERMILION,"Stoney P. Broussard, ",600 Main St.,,Gueydan,LA,70542,337-536-9415,,,,305,,01/08/2010,Mr. Broussard -Chief of Police ,Village of Maurice ,P. O. Box 128,,Maurice,LA,70555,337-893-6406,VERMILION,Warren Rost,114 James St.,,Maurice,LA,70555,337-893-2540,,,D,305,12/31/2010,01/01/2007,Mr. Rost -Councilman at Large ,City of Abbeville ,101 N. State St.,,Abbeville,LA,70510,337-893-8550,VERMILION,Francis J. Plaisance,2333 Camella St.,,Abbeville,LA,70510,337-652-0646,W,M,D,308,06/30/2010,07/01/2006,Mr. Plaisance -Councilman at Large ,City of Abbeville ,101 N. State St.,,Abbeville,LA,70510,337-893-8550,VERMILION,"Francis J. Plaisance, ",2333 Camella St.,,Abbeville,LA,70510-4010,337-652-0646,W,M,D,308 -Alderman ,"District A, City of Kaplan ",701 Cushing Ave.,,Kaplan,LA,70548,337-643-8602,VERMILION,Eva Dell Morrison,411 N. Guidry Ave.,,Kaplan,LA,70548-4214,337-643-2894,B,F,D,310,06/30/2010,07/21/2008,Ms. Morrison -Alderman ,"District A, City of Kaplan ",701 Cushing Ave.,,Kaplan,LA,70548,337-643-8602,VERMILION,"Eva Dell Morrison, ",411 N. Guidry Ave.,,Kaplan,LA,70548-4214,337-643-2894,B,F,D,310 -Alderman ,"District B, City of Kaplan ",701 Cushing Ave.,,Kaplan,LA,70548,337-643-8602,VERMILION,"Gerard ""Jerry"" Touchet",109 Sonny Ln.,,Kaplan,LA,70548,337-643-8642,W,M,D,310,06/30/2010,07/01/2006,Mr. Touchet -Alderman ,"District B, City of Kaplan ",701 Cushing Ave.,,Kaplan,LA,70548,337-643-8602,VERMILION,"Gerard ""Jerry"" Touchet, ",109 Sonny Ln.,,Kaplan,LA,70548-6487,337-643-8642,W,M,D,310 -Alderman ,"District C, City of Kaplan ",701 Cushing Ave.,,Kaplan,LA,70548,337-643-8602,VERMILION,Brent N. DuBois,406 W. Seventh St.,,Kaplan,LA,70548,337-643-2690,W,M,D,310,06/30/2010,07/01/2006,Mr. DuBois -Alderman ,"District C, City of Kaplan ",701 Cushing Ave.,,Kaplan,LA,70548,337-643-8602,VERMILION,"Brent N. DuBois, ",406 W. 7th St.,,Kaplan,LA,70548-3200,337-643-2690,W,M,D,310 -Alderman ,"District D, City of Kaplan ",701 Cushing Ave.,,Kaplan,LA,70548,337-643-8602,VERMILION,Kevin G. Guidry,401 Trahan Ave.,,Kaplan,LA,70548-3929,337-643-1806,W,M,D,310,06/30/2010,07/01/2006,Mr. Guidry -Alderman ,"District D, City of Kaplan ",701 Cushing Ave.,,Kaplan,LA,70548,337-643-8602,VERMILION,"Kevin G. Guidry, ",401 N. Trahan Ave.,,Kaplan,LA,70548-3929,337-643-1806,W,M,D,310 -Alderman ,Town of Erath ,115 W. Edwards,,Erath,LA,70533,337-937-8401,VERMILION,"Carl ""Co Co"" Broussard",706 E. Bourque St.,,Erath,LA,70533-4206,337-937-5250,W,M,D,310,12/31/2010,01/01/2007,Mr. Broussard -Alderman ,Town of Erath ,115 W. Edwards,,Erath,LA,70533,337-937-8401,VERMILION,"""Billy"" Cormier",502 N. Patrick Toole St.,,Erath,LA,70533-3739,337-937-5214,W,M,D,310,12/31/2010,01/01/2007,Mr. Cormier -Alderman ,Town of Erath ,115 W. Edwards,,Erath,LA,70533,337-937-8401,VERMILION,"Robert ""T-Bob"" Domingues",739 N. Severin St.,,Erath,LA,70533-3015,337-937-5733,,,D,310,12/31/2010,01/01/2007,Mr. Domingues -Alderman ,Town of Erath ,115 W. Edwards,,Erath,LA,70533,337-937-8401,VERMILION,John Earl LeBlanc,308 S. Severin St.,,Erath,LA,70533-4138,337-937-5568,W,M,D,310,12/31/2010,01/01/2007,Mr. LeBlance -Alderman ,Town of Erath ,115 W. Edwards,,Erath,LA,70533,337-937-8401,VERMILION,Donald Menard,208 N. Kibbe St.,,Erath,LA,70533,337-937-5113,,,D,310,12/31/2010,01/01/2007,Mr. Menard -Alderman ,Town of Gueydan ,600 Main St.,,Gueydan,LA,70542,337-536-9415,VERMILION,David Dupuis,401 Wilkinson St.,,Gueydan,LA,70542,337-536-7197,W,M,D,310,12/31/2010,01/01/2007,Mr. Dupuis -Alderman ,Town of Gueydan ,600 Main St.,,Gueydan,LA,70542,337-536-9415,VERMILION,Claudette Simon Price,P.O. Box 377,,Gueydan,LA,70542,337-536-6305,W,F,D,310,12/31/2010,10/30/2007,Ms. Price -Alderman ,Town of Gueydan ,600 Main St.,,Gueydan,LA,70542,337-536-9415,VERMILION,Jude D. Reese,510 Ninth St.,,Gueydan,LA,70542-3714,337-536-7201,,,R,310,12/31/2010,01/01/2007,Mr. Reese -Alderman ,Town of Gueydan ,600 Main St.,,Gueydan,LA,70542,337-536-9415,VERMILION,Gale Smith,P.O. Box 369,,Gueydan,LA,70542-3817,337-536-9523,W,F,D,310,12/31/2010,01/01/2007,Ms. Smith -Alderman ,Town of Gueydan ,600 Main St.,,Gueydan,LA,70542,337-536-9415,VERMILION,Scott Vallo,308 4th St.,,Gueydan,LA,70542-4004,337-536-5253,W,M,D,310,12/31/2010,10/14/2008,Mr. Vallo -Alderman ,Village of Maurice ,P. O. Box 128,,Maurice,LA,70555,337-893-6406,VERMILION,Troy Catalon,218 E. Vincent St.,,Maurice,LA,70555,337-278-0361,,,R,310,12/31/2010,01/01/2007,Mr. Catalon -Alderman ,Village of Maurice ,P. O. Box 128,,Maurice,LA,70555,337-893-6406,VERMILION,Darin Desormeaux,231 E. Etienne Rd.,,Maurice,LA,70555-4345,337-898-9799,W,M,D,310,12/31/2010,01/01/2007,Mr. Desormeaux -Alderman ,Village of Maurice ,P. O. Box 128,,Maurice,LA,70555,337-893-6406,VERMILION,Gary J. Villien,345 Andre Ave.,,Maurice,LA,70555,337-898-9404,W,M,D,310,12/31/2010,01/01/2007,Mr. Villien -Alderman at Large ,City of Kaplan ,,,,LA,,,VERMILION,Kirk Champagne,108 Vermilion St.,,Kaplan,LA,70548,337-643-1069,W,M,D,310,06/30/2010,07/01/2006,Mr. Champagne -Councilman ,"District A, City of Abbeville ",101 N. State St.,,Abbeville,LA,70510,337-893-8550,VERMILION,Louis Joe Hardy,124 Alan Ln.,,Abbeville,LA,70510,337-893-3336,W,M,D,310,06/30/2010,07/01/2006,Mr. Hardy -Councilman ,"District B, City of Abbeville ",101 N. State St.,,Abbeville,LA,70510,337-893-8550,VERMILION,"Francis Touchet, Jr.",2328 Helen St.,,Abbeville,LA,70510,337-893-5270,W,M,D,310,06/30/2010,07/01/2006,Mr. Touchet -Councilman ,"District C, City of Abbeville ",101 N. State St.,,Abbeville,LA,70510,337-893-8550,VERMILION,Carbett Duhon,1507 S. Jefferson St.,,Abbeville,LA,70510,337-893-1967,W,M,D,310,06/30/2010,07/01/2006,Mr. Duhon -Councilman ,"District C, City of Abbeville ",101 N. State St.,,Abbeville,LA,70510,337-893-8550,VERMILION,"Carbett Duhon, ",1507 S. Jefferson St.,,Abbeville,LA,70510-7424,337-893-1967,W,M,D,310 -Councilman ,"District D, City of Abbeville ",101 N. State St.,,Abbeville,LA,70510,337-893-8550,VERMILION,Wayne Landry,508 Kibbie St.,,Abbeville,LA,70510,337-898-0797,B,M,,310,06/30/2010,10/14/2008,Mr. Landry -Councilman ,"District D, City of Abbeville ",101 N. State St.,,Abbeville,LA,70510,337-893-8550,VERMILION,"Wayne Landry, ",805 Kibbe St.,,Abbeville,LA,70510-6933,337-898-0790,B,M,D,310 -DPEC Member ,at Large ,,,,LA,,,VERNON,Alton Bailey,147 Powell Dr.,,Leesville,LA,71446,337-238-2936,B,M,D,054,02/20/2012,02/20/2008,Mr. Bailey -DPEC Member ,District 1 ,,,,LA,,,VERNON,,,,,,,,,,,056 -DPEC Member ,District 2 ,,,,LA,,,VERNON,,,,,,,,,,,056 -DPEC Member ,District 3 ,,,,LA,,,VERNON,,,,,,,,,,,056 -DPEC Member ,District 4 ,,,,LA,,,VERNON,,,,,,,,,,,056 -DPEC Member ,District 5 ,,,,LA,,,VERNON,,,,,,,,,,,056 -DPEC Member ,District 6 ,,,,LA,,,VERNON,,,,,,,,,,,056 -DPEC Member ,District 7 ,,,,LA,,,VERNON,,,,,,,,,,,056 -DPEC Member ,District 8 ,,,,LA,,,VERNON,,,,,,,,,,,056 -DPEC Member ,District 9 ,,,,LA,,,VERNON,Aarlene Campion,2056 Columbus Cir,,Leesville,LA,71446,337-397-0998,W,F,D,056,02/20/2012,02/20/2008,Ms. Campion -DPEC Member ,District 10 ,,,,LA,,,VERNON,,,,,,,,,,,056 -DPEC Member ,District 11 ,,,,LA,,,VERNON,,,,,,,,,,,056 -DPEC Member ,District 12 ,,,,LA,,,VERNON,,,,,,,,,,,056 -RPEC Member ,at Large ,,,,LA,,,VERNON,Sharon Wilhelm,100 Walker St.,,Leesville,LA,71446,337-238-4452,W,F,R,064,02/20/2012,02/20/2008,Ms. Wilhelm -RPEC Member ,at Large ,,,,LA,,,VERNON,Sheri Wilhelm,100 Walker St.,,Leesville,LA,71446,337-238-4452,W,F,R,064,02/20/2012,02/20/2008,Ms. Wilhelm -RPEC Member ,District 1 ,,,,LA,,,VERNON,,,,,,,,,,,066 -RPEC Member ,District 2 ,,,,LA,,,VERNON,,,,,,,,,,,066 -RPEC Member ,District 3 ,,,,LA,,,VERNON,,,,,,,,,,,066 -RPEC Member ,District 4 ,,,,LA,,,VERNON,,,,,,,,,,,066 -RPEC Member ,District 5 ,,,,LA,,,VERNON,,,,,,,,,,,066 -RPEC Member ,District 6 ,,,,LA,,,VERNON,,,,,,,,,,,066 -RPEC Member ,District 7 ,,,,LA,,,VERNON,,,,,,,,,,,066 -RPEC Member ,District 8 ,,,,LA,,,VERNON,,,,,,,,,,,066 -RPEC Member ,District 9 ,,,,LA,,,VERNON,,,,,,,,,,,066 -RPEC Member ,District 10 ,,,,LA,,,VERNON,,,,,,,,,,,066 -RPEC Member ,District 11 ,,,,LA,,,VERNON,,,,,,,,,,,066 -RPEC Member ,District 12 ,,,,LA,,,VERNON,,,,,,,,,,,066 -Sheriff ,,P. O. Box 649,,Leesville,LA,71496,318-238-1311,VERNON,"Sam Craft, ",P.O. Box 649,,Leesville,LA,71496,337-238-4979,W,M,D,225,06/30/2012,07/01/2008,Sheriff Craft -Clerk of Court ,,P. O. Box 40,,Leesville,LA,71496-0040 ,318-238-1384,VERNON,"Willie Deon, Jr.",P.O. Box 40,,Leesville,LA,71496-0040 ,337-238-1399,W,M,D,230,06/30/2012,07/01/2008,Mr. Deon -Assessor ,,P.O. Box 1535,,Leesville,LA,71466,337-239-2167,VERNON,James A. Johnson,3564 Hwy. 399,,,LA,70656,318-358-5346,W,M,D,235,12/31/2012,01/01/2009,Mr. Johnson -Coroner ,,P.O. Box 337,,Leesville,LA,71496,337-392-0422,VERNON,Shawn P. Granger,379 Peavy Road,,Leesville,LA,71446,337-392-2330,W,M,R,240,03/25/2012,03/24/2008,Mr. Granger -Police Juror ,District 1 ,P. O. Box 1548,,Leesville,LA,,337-238-0324,VERNON,James B. Tuck,488 Cryer Rd.,,Leesville,LA,71446,337-392-8527,W,M,R,245,01/08/2012,01/14/2008,Mr. Tuck -Police Juror ,District 2 ,P. O. Box 1548,,Leesville,LA,71446,337-238-0324,VERNON,"""Pete"" Dowden",248 Dowden Loop,,Anacoco,LA,71403,337-238-9407,W,M,D,245,01/08/2012,01/14/2008,Mr. Dowden -Police Juror ,District 3 ,P. O. Box 1548,,Leesville,LA,71446,337-238-0324,VERNON,Tommy McMahon,P.O. Box 124,,Evans,LA,70639,337-286-5965,W,M,D,245,01/08/2012,01/14/2008,Mr. McMahon -Police Juror ,District 4 ,P. O. Box 1548,,Leesville,LA,71446,337-238-0324,VERNON,Jackie Grimes,137 Moore Rd.,,Leesville,LA,71446,337-238-5736,W,M,D,245,01/08/2012,01/14/2008,Mr. Grimes -Police Juror ,District 5 ,P. O. Box 1548,,Leesville,LA,71446,337-238-0324,VERNON,"Reginald ""Reggie"" Johnson",388 Boundary Rd.,,Pitkin,LA,70656,337-224-5783,W,M,D,245,01/08/2012,01/14/2008,Mr. Johnson -Police Juror ,District 6 ,P. O. Box 1548,,Leesville,LA,71446,337-238-0324,VERNON,Jerry Blair,268 Candi Ln.,,Leesville,LA,71446,337-383-1070,W,M,D,245,01/08/2012,01/14/2008,Mr. Blair -Police Juror ,District 7 ,P. O. Box 1548,,Leesville,LA,71446,337-238-0324,VERNON,Leonard Johnson,226 L Johnson Rd.,,Pitkin,LA,70656,337-328-7356,W,M,D,245,01/08/2012,01/14/2008,Mr. Johnson -Police Juror ,District 8 ,P. O. Box 1548,,Leesville,LA,71446,337-238-0324,VERNON,Melvin Haymon,171 B & G Loop,,Leesville,LA,71446,337-238-0621,W,M,D,245,01/08/2012,01/14/2008,Mr. Haymon -Police Juror ,District 9 ,P. O. Box 1548,,Leesville,LA,71446,337-238-0324,VERNON,"Sam B. Fulton, Jr.",P.O. Box 2565,,Leesville,LA,,337-238-9412,W,M,D,245,01/08/2012,01/14/2008,Mr. Fulton -Police Juror ,District 10 ,P. O. Box 1548,,Leesville,LA,71446,337-238-0324,VERNON,Curtis Clay,P.O. Box 805,,Leesville,LA,71496,337-239-7924,B,M,D,245,01/08/2012,01/14/2008,Mr. Clay -Police Juror ,District 11 ,P. O. Box 1548,,Leesville,LA,71446,337-238-0324,VERNON,"Joseph ""Bo"" Cryer",215 Stanley Rd.,,Leesville,LA,71446,337-238-4846,W,M,D,245,01/08/2012,01/14/2008,Mr. Cryer -Police Juror ,District 12 ,P. O. Box 1548,,Leesville,LA,71446,337-238-0324,VERNON,Kenny Haymon,247 Earl Haymon Rd.,,Leesville,LA,71446,337-239-2232,W,M,D,245,01/08/2012,01/14/2008,Mr. Haymon -City Judge ,"City Court, City of Leesville ",P. O. Box 1486,,Leesville,LA,71496-1486,318-238-1531,VERNON,"Elvin Fontenot, Jr.",803 Abe Allen Dr.,,Leesville,LA,71446,337-239-0062,W,M,D,250,12/31/2014,01/01/2009,Judge Fontenot -City Marshal ,"City Court, City of Leesville ",P.O. Box 1486,,Leesville,LA,71496-1486,,VERNON,Robert Pynes,251 Alexandria Hwy.,,Leesville,LA,71446,337-239-2481,W,M,D,250,12/31/2014,01/01/2009,Marshal Pynes -Member of School Board,District 1,201 Belview Rd.,,Leesville,LA,71446,337-239-1628,VERNON,Randi Schamerhorn Gleason,207 Werner Rd.,,Leesville,LA,71446,337-239-7465,W,F,R,255,12/31/2010,11/14/2008,Ms. Gleason -Member of School Board,District 1,201 Belview Rd.,,Leesville,LA,71446,337-239-1628,VERNON,Mel Harris,263 Stacy,,Leesville,LA,71446,337-238-9714,W,M,R,255,12/31/2010,01/01/2007,Mr. Harris -Member of School Board,District 1,201 Belview Rd.,,Leesville,LA,71446,337-239-1628,VERNON,"Robert Pynes, Jr.",1614 W. Hawthorne Rd.,,Leesville,LA,71446,337-238-1236,W,M,D,255,12/31/2010,01/01/2007,Mr. Pynes -Member of School Board,District 1,201 Belview Rd.,,Leesville,LA,71446,337-239-1628,VERNON,Mark H. Smith,298 Country Club Fairway,,Leesville,LA,71446,337-238-1636,W,M,D,255,12/31/2010,01/01/2007,Mr. Smith -Member of School Board,District 1,201 Belview Rd.,,Leesville,LA,71446,337-239-1628,VERNON,Steve Woods,121 St. Denis Lane,,Leesville,LA,71446,337-392-0212,W,M,R,255,12/31/2010,01/01/2007,Mr. Woods -Member of School Board ,District 2 ,201 Belview Rd.,,Leesville,LA,71446,337-239-1628,VERNON,Ricky Reese,384 Holly Estates Rd.,,Anacoco,LA,71403,337-238-5552,W,M,R,255,12/31/2010,01/01/2007,Mr. Reese -Member of School Board ,District 3 ,201 Belview Rd.,,Leesville,LA,71446,337-239-1628,VERNON,Beryl Ford,1461 Ford's Dairy Rd.,,New Llano,LA,71461,337-238-0103,W,F,D,255,12/31/2010,01/01/2007,Ms. Ford -Member of School Board ,District 4 ,201 Belview Rd.,,Leesville,LA,71446,337-239-1628,VERNON,"W.R. ""Randy"" Martin",12521 Lake Charles Hwy,,Leesville,LA,71446,337-537-1032,W,M,D,255,12/31/2010,01/01/2007,Mr. Martin -Member of School Board ,District 5 ,201 Belview Rd.,,Leesville,LA,71446,337-239-1628,VERNON,Michael Perkins,232 M Perkins Rd.,,Pitkin,LA,70656,318-358-3253,W,M,O,255,12/31/2010,01/01/2007,Mr. Perkins -Member of School Board ,District 6 ,201 Belview Rd.,,Leesville,LA,71446,337-239-1628,VERNON,"Vernon Travis, Jr.",1323 Pine Rd.,,Leesville,LA,71446,337-392-8802,B,M,D,255,12/31/2010,01/01/2007,Mr. Travis -Member of School Board ,District 7 ,201 Belview Rd.,,Leesville,LA,71446,337-239-1628,VERNON,Gaye W. McKee,P.O. Box 556,,Rosepine,LA,70659,337-463-9243,W,F,D,255,12/31/2010,01/01/2007,Mr. McKee -Member of School Board ,District 8 ,201 Belview Rd.,,Leesville,LA,71446,337-239-1628,VERNON,"Kay Wilbanks, ",201 Belview Rd,,Leesville,LA,71446,,,,,255,,02/04/2010,Ms. Wilbanks -Justice of the Peace ,Justice of the Peace Ward 2 ,196 Holly Grove Rd.,,Anacoco,LA,71403,337-239-9175,VERNON,Rodney Haymon,196 Holly Grove Rd.,,Anacoco,LA,71403,337-239-9175,W,M,D,265,12/31/2014,01/01/2009,Mr. Haymon -Justice of the Peace ,Justice of the Peace Ward 3 ,P.O. Box 101,,Evans,LA,70639,337-286-5907,VERNON,John Bonner,P.O. Box 101,,Evans,LA,70639,337-286-5907,W,M,,265,12/31/2014,01/01/2009,Mr. Bonner -Justice of the Peace ,Justice of the Peace Ward 4 ,207 Ray Cook Rd.,,Leesville,LA,71446,337-537-1967,VERNON,Arlene J. Cook,207 Ray Cook Rd.,,Leesville,LA,71446,337-537-1967,W,F,,265,12/31/2014,01/01/2009,Ms. Cook -Justice of the Peace ,Justice of the Peace Ward 5 ,P.O. Box 54,,Pitkin,LA,70656,318-358-3562,VERNON,Ellis Yeley,132 P. Lacaze Rd.,,Pitkin,LA,70656,318-358-5351,W,M,,265,12/31/2014,01/01/2009,Mr. Yeley -Justice of the Peace ,Justice of the Peace Ward 6 ,P.O. Box 176,,Simpson,LA,71474,337-383-7957,VERNON,Bobby Hillman,3527 Hwy. 465,,Leesville,LA,71446,337-383-6177,W,M,O,265,12/31/2014,01/01/2009,Mr. Hillman -Justice of the Peace ,Justice of the Peace Ward 7 ,226 L. Johnson Rd.,,Pitkin,LA,70656,337-328-7356,VERNON,"Lavell ""Pete"" Johnson",4935 Churchman Rd.,,Pitkin,LA,70656,337-328-7948,W,M,D,265,12/31/2014,01/01/2009,Mr. Johnson -Justice of the Peace ,Justice of the Peace Ward 8 ,189 Boswell Rd.,,Leesville,LA,71446,337-659-3157,VERNON,Ruby Oleta Boswell,189 Boswell Rd.,,Leander,LA,71438,318-659-3157,W,F,D,265,12/31/2014,01/01/2009,Ms. Boswell -Constable ,Justice of the Peace Ward 2 ,P.O. Box 561,,Anacoco,LA,71403,337-239-9452,VERNON,Roger Smart,P.O. Box 561,,Anacoco,LA,71403,337-239-9452,O,M,D,267,12/31/2014,01/01/2009,Mr. Smart -Constable ,Justice of the Peace Ward 3 ,P.O. Box 148,,Evans,LA,70639,337-286-5237,VERNON,Bobby Minion,P.O. Box 146,,Evans,LA,70639,337-286-5237,W,M,,267,12/31/2014,01/01/2009,Mr. Minion -Constable ,Justice of the Peace Ward 4 ,P.O. Box 887,,New Llano,LA,71461,337-537-0532,VERNON,Dan Atchison,318 Blackmon Rd.,,Leesville,LA,71446,337-392-0748,W,M,R,267,12/31/2014,01/01/2009,Mr. Atchinson -Constable ,Justice of the Peace Ward 5 ,1052 Hwy. 113,,Pitkin,LA,70656,318-634-7685,VERNON,Robert M. Lacaze,6963 Hwy. 463,,Pitkin,LA,70656,318-358-5269,W,M,D,267,12/31/2014,01/01/2009,Mr. Lacaze -Constable ,Justice of the Peace Ward 6 ,P.O. Box 63,,Simpson,LA,71474,337-383-7758,VERNON,"Thomas ""Tommy"" Jackson",P.O. Box 476,,Simpson,LA,71474,337-383-7384,W,M,R,267,12/31/2014,01/01/2009,Mr. Jackson -Constable ,Justice of the Peace Ward 7 ,131 Lavelle Johnson Rd.,,Pitkin,LA,70656,318-328-8435,VERNON,Lealon Johnson,131 Lavelle Johnson Rd.,,Pitkin,LA,70656,337-328-8436,W,M,D,267,12/31/2014,01/01/2009,Mr. Johnson -Constable ,Justice of the Peace Ward 8 ,176 Ronnie Hagan Rd.,,Leesville,LA,71446,337-239-2354,VERNON,"R. G. ""Ronnie"" Hagan",176 Ronnie Hagan Rd.,,Leesville,LA,71446,337-239-2354,W,M,D,267,12/31/2014,01/01/2009,Mr. Hagan -Mayor ,City of Leesville ,P. O. Drawer 350,,Leesville,LA,,337-239-2444,VERNON,Betty Westerchil,101 W. Lee St.,,Leesville,LA,71446,337-239-2444,W,F,D,300,06/30/2010,07/01/2006,Mayor Westerchil -Mayor ,Town of Hornbeck ,P. O. Box 129,,Hornbeck,LA,,318-565-4659,VERNON,Clarence Beebe,P.O. Box 292,,Hornbeck,LA,71439,318-565-4379,W,M,,300,12/31/2010,01/01/2007,Mr. Beebe -Mayor ,Town of New Llano ,109 Stanton St.,,New Llano,LA,,337-239-3670,VERNON,Freddie Boswell,105 Burnley St.,,New Llano,LA,71461,337-239-2952,W,M,D,300,06/30/2010,07/01/2006,Mayor Boswell -Mayor ,Town of Rosepine ,P. O. Box 528,,Rosepine,LA,,337-463-8908,VERNON,Bruce Ward,P.O. Box 989,,Rosepine,LA,70659,337-463-8371,W,M,R,300,12/31/2010,01/01/2007,Mayor Ward -Mayor ,Village of Anacoco ,P. O. Box 280,,Anacoco,LA,,337-239-0215,VERNON,Leroy Cooley,P.O. Box 528,,Anacoco,LA,71403,337-239-0215,W,M,R,300,12/31/2012,01/01/2009,Mr. Cooley -Mayor ,Village of Simpson ,P. O. Box 278,,Simpson,LA,,337-383-7731,VERNON,Roger Bennett,P.O. Box 43,,Simpson,LA,71474,337-383-7407,W,M,R,300,12/31/2012,01/01/2009,Mr. Bennett -Chief of Police ,Town of Hornbeck ,P. O. Box 129,,Hornbeck,LA,71439,318-565-4659,VERNON,Stieve E. Holley,1272 Trimble St.,,Hornbeck,LA,71439,318-565-4659,W,M,D,305,12/31/2010,01/01/2007,Mr. Holley -Chief of Police ,Town of New Llano ,P. O. Box 306,,New Llano,LA,71461,337-239-3670,VERNON,Danny Hunt,503 Magnolia St.,,New Llano,LA,71461,337-392-6045,W,M,D,305,06/30/2010,07/01/2006,Chief Hunt -Chief of Police ,Town of Rosepine ,P. O. Box 528,,Rosepine,LA,70634,337-463-8908,VERNON,James Dennis Parrott,P.O. Box 529,,Rosepine,LA,70659,337-463-8249,W,M,D,305,12/31/2010,01/01/2007,Chief Parrott -Chief of Police ,Village of Anacoco ,P. O. Box 280,,Anacoco,LA,71403,337-239-0215,VERNON,Randall Bryan,P.O. Box 528,,Anacoco,LA,71403,337-239-0215,W,M,,305,12/31/2012,01/01/2009,Chief Bryan -Chief of Police ,Village of Simpson ,P.O. Box 278,,Simpson,LA,71474,337-383-7731,VERNON,"Houston ""Tully"" Burns, Jr.",P. O. Box 213,,Simpson,LA,71474,337-383-7698,W,M,,305,12/31/2012,01/01/2009,Chief Burns -Councilman at Large ,City of Leesville ,P.O. Drawer 350,,Leesville,LA,71446,337-239-2444,VERNON,"Alice Guess, ",1005 W. Union St.,,Leesville,LA,71446-3228,337-238-0252,B,F,D,308 -Councilman at Large ,City of Leesville ,P.O. Drawer 350,,Leesville,LA,71446,337-239-2444,VERNON,Alice Upshaw Guess,1005 West Union St.,,Leesville,LA,71446,337-238-0252,B,F,D,308,06/30/2010,07/01/2006,Ms. Guess -Councilman at Large ,City of Leesville ,P.O. Drawer 350,,Leesville,LA,71446,337-239-2444,VERNON,"""Joe"" McKee, ",1307 Ronald Dr.,,Leesville,LA,71446,337-238-9533,W,M,D,308 -Councilman at Large ,City of Leesville ,P.O. Drawer 350,,Leesville,LA,71446,337-239-2444,VERNON,Joe McKee,P.O. Box 202,,Leesville,LA,71496,337-238-9533,W,M,D,308,06/30/2010,07/01/2006,Mr. McKee -Alderman ,Town of Hornbeck ,P. O. Box 129,,Hornbeck,LA,71439,318-927-3555,VERNON,Doyle Carpenter,P.O. Box 81,,Hornbeck,LA,71439,318-565-4597,W,M,D,310,12/31/2010,01/01/2007,Mr. Carpenter -Alderman ,Town of Hornbeck ,P. O. Box 129,,Hornbeck,LA,71439,318-927-3555,VERNON,Jose S. Chavez,P.O. Box 167,,Hornbeck,LA,71439,318-565-4374,O,M,R,310,12/31/2010,01/01/2007,Mr. Chavez -Alderman ,Town of Hornbeck ,P. O. Box 129,,Hornbeck,LA,71439,318-927-3555,VERNON,"""Greg"" Lantier",189 Reeks Lane Lot #1,,Hornbeck,LA,71439,318-565-8497,W,M,,310,12/31/2010,01/01/2007,Mr. Lantier -Alderman ,Town of Hornbeck ,P. O. Box 129,,Hornbeck,LA,71439,318-927-3555,VERNON,Lawrence Trotti,P.O. Box 275,,Hornbeck,LA,71439,318-565-0010,W,M,D,310,12/31/2010,01/01/2007,Mr. Trottie -Alderman ,Town of Hornbeck ,P. O. Box 129,,Hornbeck,LA,71439,318-927-3555,VERNON,Terri Whiddon,P.O. Box 156,,Hornbeck,LA,71439,318-565-4924,W,F,D,310,12/31/2010,01/01/2007,Ms. Whiddon -Alderman ,Town of Rosepine ,P. O. Box 528,,Rosepine,LA,70634,337-463-8908,VERNON,"James ""Jimmy"" Cryer",7339 Main St.,,DeRidder,LA,70634,337-463-8778,W,M,D,310,12/31/2010,01/01/2007,Mr. Cryer -Alderman ,Town of Rosepine ,P. O. Box 528,,Rosepine,LA,70634,337-463-8908,VERNON,Damon Johnson,P.O. Box 982,,Rosepine,LA,70659,337-463-2406,W,M,R,310,12/31/2010,01/01/2007,Mr. Johnson -Alderman ,Town of Rosepine ,P. O. Box 528,,Rosepine,LA,70634,337-463-8908,VERNON,Daniel Martinez,P.O. Box 87,,Rosepine,LA,70659,337-462-2119,O,M,D,310,12/31/2010,01/01/2007,Mr. Martinez -Alderman ,Town of Rosepine ,P. O. Box 528,,Rosepine,LA,70634,337-463-8908,VERNON,Billy N. Owens,P. O. Box 1138,,Rosepine,LA,70659,337-463-7636,W,M,R,310,12/31/2010,10/27/2009,Mr. Owens -Alderman ,Town of Rosepine ,P. O. Box 528,,Rosepine,LA,70634,337-463-8908,VERNON,Jeffery Solinsky,8759 Main St.,,Deridder,LA,70634,337-462-0326,W,M,R,310,12/31/2010,01/01/2007,Mr. Solinsky -Alderman ,Village of Simpson ,P.O. Box 278,,Simpson,LA,71474,337-383-7731,VERNON,"Carol ""Ma Carol"" Adams",6949 Hwy 8,,Leesville,LA,71446,337-383-6065,W,F,R,310,12/31/2012,01/22/2009,Ms. Adams -Alderman ,Village of Simpson ,P.O. Box 278,,Simpson,LA,71474,337-383-7731,VERNON,Gerald Cooley,P.O. Box 235,,Simpson,LA,71474,337-383-7702,W,M,R,310,12/31/2012,01/01/2009,Mr. Cooley -Alderman ,Village of Simpson ,P.O. Box 278,,Simpson,LA,71474,337-383-7731,VERNON,Neva Knight,P.O. Box 81,,Simpson,LA,71474,337-383-6330,W,F,,310,12/31/2012,01/01/2009,Ms. Knight -Council Member ,Village of Anacoco ,P. O. Box 280,,Anacoco,LA,71403,337-239-0215,VERNON,Howard Keith Lewing,P. O. Box 16,,Anacoco,LA,71403,337-238-3631,W,M,D,310,12/31/2012,01/01/2009,Mr. Lewing -Council Member ,Village of Anacoco ,P. O. Box 280,,Anacoco,LA,71403,337-239-0215,VERNON,Archie Martin,P. O. Box 513,,Anacoco,LA,71403,337-238-0418,W,M,D,310,12/31/2012,01/01/2009,Mr. Martin -Council Member ,Village of Anacoco ,P. O. Box 280,,Anacoco,LA,71403,337-239-0215,VERNON,LaVerne Miers,P. O. Box 535,,Anacoco,LA,71403,337-239-7128,W,F,R,310,12/31/2012,01/01/2009,Ms. Miers -Councilman ,"District 1, City of Leesville ",P. O. Drawer 350,,Leesville,LA,71446,337-239-2444,VERNON,"""Pat"" Martinez, ",501 N. First St.,,Leesville,LA,71446-3503,337-238-5508,W,F,D,310 -Councilman ,"District 1, City of Leesville ",P. O. Drawer 350,,Leesville,LA,71446,337-239-2444,VERNON,Pat Martinez,501 N. First St.,,Leesville,LA,71446,337-238-5508,W,F,D,310,06/30/2010,07/01/2006,Ms. Martinez -Councilman ,"District 2, City of Leesville ",P. O. Drawer 350,,Leesville,LA,71446,337-239-2444,VERNON,Steve Kennedy,1205 West St.,,Leesville,LA,71446,337-238-1319,B,M,D,310,06/30/2010,07/01/2006,Mr. Kennedy -Councilman ,"District 3, City of Leesville ",P. O. Drawer 350,,Leesville,LA,71446,337-239-2444,VERNON,"""Danny"" Dowd",906 Pinckney Ave.,,Leesville,LA,71446,337-238-0904,W,M,R,310,06/30/2010,07/01/2006,Mr. Dowd -Councilman ,"District 4, City of Leesville ",P. O. Drawer 350,,Leesville,LA,71446,337-239-2444,VERNON,"William M. ""Mike"" Elliott",P.O. Box 1287,,Leesville,LA,71496,337-239-2535,W,M,R,310,06/30/2010,07/01/2006,Mr. Elliott -Councilman ,"District 4, City of Leesville ",P. O. Drawer 350,,Leesville,LA,71446,337-239-2444,VERNON,"William ""Mike"" Elliott, ",2006 Allison St.,,Leesville,LA,71446-5104,337-239-2535,W,M,R,310 -Councilman ,Town of New Llano ,P. O. Box 306,,New Llano,LA,71461,337-239-3670,VERNON,"""Charlie"" Balthrop",104 Franklin St.,,New Llano,LA,71461,337-238-1216,W,M,D,310,06/30/2010,07/01/2006,Mr. Balthrop -Councilman ,Town of New Llano ,P. O. Box 306,,New Llano,LA,71461,337-239-3670,VERNON,Charlotte McHenry Cooper,414 Vernon St.,,New Llano,LA,71461,337-238-5347,B,F,D,310,06/30/2010,07/01/2006,Ms. Cooper -Councilman ,Town of New Llano ,P. O. Box 306,,New Llano,LA,71461,337-239-3670,VERNON,Terry Speicher,505 Magnolia St.,,New Llano,LA,71461,337-392-6334,W,M,R,310,06/30/2010,07/01/2006,Mr. Speicher -Councilman ,Town of New Llano ,P. O. Box 306,,New Llano,LA,71461,337-239-3670,VERNON,Carolyn H. Todd,129 Raymond Dr.,,New Llano,LA,71461,337-238-4477,B,F,D,310,06/30/2010,07/01/2006,Ms. Todd -Councilman ,Town of New Llano ,P. O. Box 306,,New Llano,LA,71461,337-239-3670,VERNON,Erwin Wilson,100 Bullock Dr.,,New Llano,LA,71461,337-238-4340,B,M,D,310,06/30/2010,07/01/2006,Mr. Wilson -DPEC Member ,at Large ,,,,LA,,,WASHINGTON,Dianne C. Applewhite,350 Mart Stewart Rd.,,Bogalusa,LA,70427,985-732-3750,W,F,D,054,02/20/2012,02/20/2008,Ms. Applewhite -DPEC Member ,at Large ,,,,LA,,,WASHINGTON,Stephen Genco,1336 Founders Dr.,,Bogalusa,LA,70427,985-735-8452,W,M,D,054,02/20/2012,02/20/2008,Mr. Genco -DPEC Member ,at Large ,,,,LA,,,WASHINGTON,Kelvin D. May,65321 Jones Creek Rd.,,Angie,LA,70426,985-732-2389,B,M,D,054,02/20/2012,02/20/2008,Mr. May -DPEC Member ,at Large ,,,,LA,,,WASHINGTON,"""Brad"" Orman",1049 Main St.,,Franklinton,LA,70438,985-839-2788,W,M,D,054,02/20/2012,02/20/2008,Mr. Orman -DPEC Member ,at Large ,,,,LA,,,WASHINGTON,Patsy Ritchie,25255 Hwy. 62,,Franklinton,LA,70438,985-848-5558,W,F,D,054,02/20/2012,02/20/2008,Ms. Ritchie -DPEC Member ,District 1 ,,,,LA,,,WASHINGTON,Melvin Keith,172 White Williams Rd.,,Bogalusa,LA,70427,985-735-8875,B,M,D,056,02/20/2012,02/20/2008,Mr. Keith -DPEC Member ,District 2 ,,,,LA,,,WASHINGTON,Charles E. Mizell,P.O. Box 433,,Bogalusa,LA,70429,985-735-7918,W,M,D,056,02/20/2012,02/20/2008,Mr. Mizell -DPEC Member ,District 3 ,,,,LA,,,WASHINGTON,Sally Rosenblum,1330 Charwood Dr.,,Bogalusa,LA,70427,985-732-2654,W,F,D,056,02/20/2012,02/20/2008,Ms. Rosenblum -DPEC Member ,District 4 ,,,,LA,,,WASHINGTON,Marilyn Bailey Crews,303 Carolina Ave.,,Bogalusa,LA,70427,985-732-2231,B,F,D,056,02/20/2012,02/20/2008,Ms. Crews -DPEC Member ,District 5 ,,,,LA,,,WASHINGTON,Maxie C. Gerald,28197 Ed Gerald Rd.,,Franklinton,LA,70438,985-848-5305,W,F,D,056,02/20/2012,02/20/2008,Ms. Gerald -DPEC Member ,District 6 ,,,,LA,,,WASHINGTON,Desmond Deshon Smith,47137 George Jenkins Rd.,,Franklinton,LA,70438,985-839-6977,B,M,D,056,02/20/2012,02/20/2008,Mr. Smith -DPEC Member ,District 7 ,,,,LA,,,WASHINGTON,"""Beryl"" Schilling",P.O. Box 3,,Mt. Hermon,LA,70450,985-877-5750,W,M,D,056,02/20/2012,02/20/2008,Mr. Schilling -RPEC Member ,at Large ,,,,LA,,,WASHINGTON,Georgine Holcombe,1130 Florida Ave.,,Bogalusa,LA,70427,985-732-9921,W,F,R,064,02/20/2012,02/20/2008,Ms. Holocombe -RPEC Member ,District 1 ,,,,LA,,,WASHINGTON,,,,,,,,,,,066 -RPEC Member ,District 2 ,,,,LA,,,WASHINGTON,,,,,,,,,,,066 -RPEC Member ,District 3 ,,,,LA,,,WASHINGTON,,,,,,,,,,,066 -RPEC Member ,District 4 ,,,,LA,,,WASHINGTON,,,,,,,,,,,066 -RPEC Member ,District 5 ,,,,LA,,,WASHINGTON,,,,,,,,,,,066 -RPEC Member ,District 6 ,,,,LA,,,WASHINGTON,,,,,,,,,,,066 -RPEC Member ,District 7 ,,,,LA,,,WASHINGTON,,,,,,,,,,,066 -Sheriff ,,P. O. Box 668,,Franklinton,LA,70438,985-839-4468,WASHINGTON,"Robert J. ""Bobby"" Crowe",P.O. Box 668,,Franklinton,LA,70438,985-735-0507,W,M,D,225,06/30/2012,07/01/2008,Sheriff Crowe -Clerk of Court ,,P. O. Box 607,,Franklinton,LA,70438,985-839-7821,WASHINGTON,Johnny D. Crain,P.O. Box 607,,Franklinton,LA,70438,985-732-7275,W,M,D,230,06/30/2012,07/01/2008,Mr. Crain -Assessor ,,908 Washington St.,,Franklin,LA,70438,985-839-7815,WASHINGTON,"""Randy Country"" Seal",25369 Military Rd.,,Varnado,LA,70426,985-735-6807,W,M,D,235,12/31/2012,01/01/2009,Mr. Seal -Coroner ,,P.O. Box 220,,Bogulusa,LA,70429,985-735-8382,WASHINGTON,"""Roger"" Casama",P.O. Box 220,,Bogaluza,LA,70429-0220 ,985-732-1564,O,M,D,240,03/25/2012,03/24/2008,Mr. Casama -Parish President ,,909 Pearl St.,,Franklinton,LA,70438,985-839-7825,WASHINGTON,Richard Ned Thomas,52061 John Forbes Rd.,,Franklinton,LA,70438,985-848-5918,W,M,D,243,01/09/2012,01/14/2008,Mr. Thomas -Council Member,District 1,909 Pearl St.,,Franklinton,LA,70438,985-839-7825,WASHINGTON,"""Ken"" Wheat",1602 Meadowlea St.,,Bogalusa,LA,70427,985-516-5076,W,M,D,245,01/09/2012,01/14/2008,Mr. Wheat -Council Member ,District 2 ,909 Pearl St.,,Franklinton,LA,70438,985-839-7825,WASHINGTON,"Michael ""Mike"" Fussell",16444 Hwy 16,,Franklinton,LA,70438,985-839-9669,W,M,D,245,01/09/2012,01/14/2008,Mr. Fussell -Council Member ,District 3 ,909 Pearl St.,,Franklinton,LA,70438,985-839-7825,WASHINGTON,"""Chuck"" Nassauer",1305 Founders Dr.,,Bogalusa,LA,70427,985-735-0620,W,M,D,245,01/09/2012,01/14/2008,Mr. Nassauer -Council Member ,District 4 ,909 Pearl St.,,Franklinton,LA,70438,985-839-7825,WASHINGTON,Andre Johnson,620 Greenburg St.,,Bogalusa,LA,70427,985-732-7242,B,M,D,245,01/09/2012,01/14/2008,Mr. Johnson -Council Member ,District 5 ,909 Pearl St.,,Franklinton,LA,70438,985-839-7825,WASHINGTON,"""Randy"" Thomas",28244 Luke Pace Rd.,,Angie,LA,70426,985-848-2911,W,M,R,245,01/09/2012,01/14/2008,Mr. Thomas -Council Member ,District 6 ,909 Pearl St.,,Franklinton,LA,70438,985-839-7825,WASHINGTON,"""Greg"" Route",1828 Desmare St.,,Franklinton,LA,70438,985-839-4754,B,M,D,245,01/09/2012,01/14/2008,Mr. Route -Council Member ,District 7 ,909 Pearl St.,,Franklinton,LA,70438,985-839-7825,WASHINGTON,Aubrey L. Posey,40643 Hwy. 1056,,Franklinton,LA,70438,985-839-4125,W,M,D,245,01/09/2012,01/14/2008,Mr. Posey -City Judge ,"City Court, City of Bogalusa ",P. O. Box 518,,Bogalusa,LA,70429-0518 ,985-732-6204,WASHINGTON,Robert J. Black,302 Louisiana Ave.,,Bogalusa,LA,70427,985-735-6800,W,M,R,250,12/31/2014,01/01/2009,Judge Black -City Marshal ,"City Court, City of Bogalusa ",P. O. Box 518,,Bogalusa,LA,70429-0518 ,985-732-6281,WASHINGTON,"""Wayne"" Adams",1633 Louis Ln.,,Bogalusa,LA,70427,985-735-8025,W,M,D,250,12/31/2014,01/01/2009,Marshal Adams -Member of School Board ,District 1 ,P. O. Box 587,,Franklinton,LA,70438,985-839-3436,WASHINGTON,"""Dan"" Slocum",P.O. Box 118,,Mt. Hermon,LA,70450,985-877-4291,W,M,D,255,12/31/2010,01/01/2007,Mr. Slocum -Member of School Board ,"District 1, City of Bogalusa ",P. O. Box 310,,Bogalusa,LA,70427,985-281-2100,WASHINGTON,Paul D. Kates,627 Montgomery St.,,Bogalusa,LA,70427,,B,M,D,255,12/31/2010,01/01/2007,Mr. Kates -Member of School Board ,District 2 ,P. O. Box 587,,Franklinton,LA,70438,985-839-3436,WASHINGTON,"Karl ""Buster"" Bickham, Jr.",19086 Hwy. 25,,Franklinton,LA,70438,985-839-2667,W,M,D,255,12/31/2010,01/01/2007,Mr. Bickham -Member of School Board ,"District 2, City of Bogalusa ",P. O. Box 310,,Bogalusa,LA,70427,985-281-2100,WASHINGTON,Eleanor Watson Duke,1318 Colorado St.,,Bogalusa,LA,70427,985-732-2366,W,F,R,255,12/31/2010,01/01/2007,Ms. Duke -Member of School Board ,District 3 ,P. O. Box 587,,Franklinton,LA,70438,985-839-3436,WASHINGTON,"Bruce L. Brown, Sr.",47270 Hwy. 438,,Franklinton,LA,70438,985-795-2766,B,M,D,255,12/31/2010,01/01/2007,Mr. Brown -Member of School Board ,"District 3, City of Bogalusa ",P. O. Box 310,,Bogalusa,LA,70427,985-281-2100,WASHINGTON,Raymond E. Mims,1714 St. Louis St.,,Bogalusa,LA,70427,985-735-5146,B,M,D,255,12/31/2010,01/01/2007,Mr. Mims -Member of School Board ,District 4 ,P. O. Box 587,,Franklinton,LA,70438,985-839-3436,WASHINGTON,John E. Breland,54188 Hwy. 62,,Franklinton,LA,70438,985-848-2211,W,M,D,255,12/31/2010,10/14/2008,Mr. Breland -Member of School Board ,"District 4, City of Bogalusa ",P. O. Box 310,,Bogalusa,LA,70427,985-281-2100,WASHINGTON,Adam Kemp,12683 Hwy 21 South,,Bogalusa,LA,70427,985-732-5707,W,M,R,255,12/31/2010,01/01/2007,Mr. Kemp -Member of School Board ,District 5 ,P. O. Box 587,,Franklinton,LA,70438,985-839-3436,WASHINGTON,Mary S. Adams,63064 Main Street,,Varnado,LA,70467,985-732-5404,W,F,O,255,12/31/2010,01/01/2007,Mr. Adams -Member of School Board ,"District 5, City of Bogalusa ",P. O. Box 310,,Bogalusa,LA,70427,985-281-2100,WASHINGTON,Robin Simmons,1100 West 14th Street,,Bogalusa,LA,70427,985-735-6300,W,F,R,255,12/31/2010,01/01/2007,Ms. Simmons -Member of School Board ,District 6 ,P. O. Box 587,,Franklinton,LA,70438,985-839-3436,WASHINGTON,Dewitt Perry,46202 B. R. Corkern Rd.,,Franklinton,LA,70438,985-839-9636,W,M,D,255,12/31/2010,01/01/2007,Mr. Perry -Member of School Board ,"District 6, City of Bogalusa ",P. O. Box 310,,Bogalusa,LA,70427,985-281-2100,WASHINGTON,Michael H. Applewhite,350 Mart Stewart Road,,Bogalusa,LA,70427,985-732-3750,W,M,O,255,12/31/2010,01/01/2007,Mr. Applewhite -Member of School Board ,District 7 ,P. O. Box 587,,Franklinton,LA,70438,985-839-3436,WASHINGTON,Lee Alan McCain,45505 Jenkins Rd. #2,,Franklinton,LA,70438,985-839-3019,W,M,D,255,12/31/2010,01/01/2007,Mr. McCain -Member of School Board ,"District 7, City of Bogalusa ",P.O. Box 310,,Bogalusa,LA,70427,985-281-2100,WASHINGTON,Brad Williams,59303 Hwy. 10,,Bogalusa,LA,70427,985-735-9818,W,M,,255,12/31/2010,01/01/2007,Mr. Williams -Member of School Board ,District 8 ,P.O. Box 587,,Franklinton,LA,70438,985-839-3436,WASHINGTON,Matthew Tate,P.O. Box 368,,Franklinton,LA,70438,985-839-2693,B,M,D,255,12/31/2010,01/01/2007,Mr. Tate -Member of School Board ,District 9 ,P.O. Box 587,,Franklinton,LA,70438,985-839-3436,WASHINGTON,Freddie H. Jefferson,P.O. Box,,Angie,LA,70426,985-986-2460,B,M,D,255,12/31/2010,01/01/2007,Mr. Jefferson -Justice of the Peace ,Justice of the Peace Ward 1 ,42535 Bethel Rd.,,Franklinton,LA,70438,985-839-2657,WASHINGTON,Darwin Sharp,17313 Kat Kaw Rd.,,Franklinton,LA,70438,985-839-4643,W,M,D,265,12/31/2014,01/01/2009,Mr. Sharp -Justice of the Peace ,Justice of the Peace Ward 2 ,29601 Holland Brock Rd.,,Mt.Hermon,LA,70450,985-877-5866,WASHINGTON,"""Larry"" Miller",29601 Holland Brock Rd.,,Mt. Hermon,LA,70450,985-877-5866,W,M,D,265,12/31/2014,01/01/2009,Mr. Miller -Justice of the Peace ,Justice of the Peace Ward 3 ,24512 Chinquapin Rd.,,Franklinton,LA,70438,985-839-6993,WASHINGTON,Billy W. Passman,24512 Chinquapin Rd.,,Franklinton,LA,70438,985-839-6993,W,M,D,265,12/31/2014,01/01/2009,Mr. Passman -Justice of the Peace ,Justice of the Peace Ward 5 ,23368 Old Columbia Rd.,,Angie,LA,70426,985-732-7004,WASHINGTON,"""Chris"" Lewis",23368 Old Columbia Rd.,,Angie,LA,70426,985-986-1000,W,M,R,265,12/31/2014,01/01/2009,Mr. Lewis -Justice of the Peace ,Justice of the Peace Ward 6 ,49798 Hwy 16.,,Franklinton,LA,70438,985-839-9728,WASHINGTON,Jackie Varnado,49798 Hwy. 16,,Franklinton,LA,70438,985-839-9728,W,M,D,265,12/31/2014,01/01/2009,Mr. Varnado -Justice of the Peace ,Justice of the Peace Ward 7 ,56137 Hwy 424.,,Franklinton,LA,70438,985-848-5575,WASHINGTON,"Bradford A. ""Brad"" Kemp, Sr.",56137 Hwy. 424,,Franklinton,LA,70438,985-848-5575,W,M,D,265,12/31/2014,01/01/2009,Mr. Kemp -Justice of the Peace ,Justice of the Peace Ward 8 ,28448 Hwy. 430,,Franklinton,LA,70438,985-839-5852,WASHINGTON,Jack Whaley,28448 Hwy. 430,,Franklinton,LA,70438,985-839-5852,W,M,D,265,12/31/2014,01/01/2009,Mr. Whaley -Justice of the Peace ,Justice of the Peace Ward 9 ,36279 Wilfred Bond Rd.,,Franklinton,LA,70438,985-839-2525,WASHINGTON,"""Rodney"" Bond",36279 Wilfred Bond Rd.,,Franklinton,LA,70438,985-839-2525,W,M,D,265,12/31/2014,01/01/2009,Mr. Bond -Constable ,Justice of the Peace Ward 1 ,16027 N. Yates Rd.,,Franklinton,LA,70438,985-839-5175,WASHINGTON,"""Terry"" Morgan",16027 N. Yates Rd.,,Franklinton,LA,70438,985-839-5175,W,M,D,267,12/31/2014,01/01/2009,Mr. Morgan -Constable ,Justice of the Peace Ward 2 ,32434 Jerry Fortenberry Rd.,,Mt. Hermon,LA,70450-5809,985-877-5809,WASHINGTON,"Colston Martin, Jr.",35235 Martin Rd.,,Mt. Hermon,LA,70450,985-877-9923,B,M,D,267,12/31/2014,01/01/2009,Mr. Martin -Constable ,Justice of the Peace Ward 3 ,1508 12th Ave.,,Franklinton,LA,70438,985-839-3094,WASHINGTON,Robert McDaniel,1508 12th Ave.,,Franklinton,LA,70438,985-839-3094,W,M,R,267,12/31/2014,01/01/2009,Mr. McDaniel -Constable ,Justice of the Peace Ward 5 ,62057 Hwy. 436,,Angie,LA,70426,985-735-9439,WASHINGTON,Lavon Seals,62057 Hwy. 436,,Angie,LA,70426,985-735-9439,W,M,D,267,12/31/2014,01/01/2009,Mr. Seals -Constable ,Justice of the Peace Ward 6 ,50445 Hwy. 1072,,Franklinton,LA,70438,985-839-2557,WASHINGTON,Donald Mizell,50445 Hwy. 1072,,Franklinton,LA,70438,985-839-2557,W,M,D,267,12/31/2014,01/01/2009,Mr. Mizell -Constable ,Justice of the Peace Ward 7 ,29438 Singley Rd.,,Angie,LA,70426,985-986-2837,WASHINGTON,David Scott,29438 Singley Rd.,,Angie,LA,70426,985-986-2837,W,M,D,267,12/31/2014,01/01/2009,Mr. Scott -Constable ,Justice of the Peace Ward 8 ,32188 Nielson Rd.,,Franklinton,LA,70438,985-848-5972,WASHINGTON,"""Ronnie"" Nielsen",30237 Hwy. 430,,Franklinton,LA,70438,985-839-3044,W,M,D,267,,04/14/2009,Mr. Nielsen -Constable ,Justice of the Peace Ward 9 ,39301 Hwy. 440,,Franklinton,LA,70438,985-839-2376,WASHINGTON,Robert Stafford,39301 Hwy. 440,,Franklinton,LA,70438,985-839-2376,W,M,D,267,12/31/2014,01/01/2009,Mr. Stafford -Mayor ,City of Bogalusa ,P. O. Drawer 1179,,Bogalusa,LA,,985-732-6200,WASHINGTON,"James ""Mack"" McGehee",P.O. Box 187,,Bogalusa,LA,70429,985-735-9603,W,M,D,300,12/05/2010,12/04/2006,Mayor McGehee -Mayor ,Town of Franklinton ,301 11th Avenue,,Franklinton,LA,,985-839-3560,WASHINGTON,M. Wayne Fleming,1507 12th Ave.,,Franklinton,LA,70438,985-839-6861,W,M,D,300,12/31/2012,01/01/2009,Mr. Fleming -Mayor ,Village of Angie ,P. O. Box 152,,Angie,LA,,985-986-2225,WASHINGTON,John Dawsey,30141 Bonnie St.,,Angie,LA,70426,985-986-2284,W,M,O,300,12/31/2012,01/01/2009,Mr. Dawsey -Mayor ,Village of Varnado ,P.O. Box 200,,Varnado,LA,,985-735-4217,WASHINGTON,Paris C. Sumrall,63318 Fornea Rd.,,Angie,LA,70426,985-732-4217,W,F,O,300,12/31/2012,01/01/2009,Ms. Sumrall -Chief of Police ,Village of Angie ,P. O. Box 152,,Angie,LA,70426,985-986-2444,WASHINGTON,"Gilbert Hartzog, Jr.",30208 Poplar St.,,Angie,LA,70426,985-986-3744,W,M,O,305,12/31/2012,01/01/2009,Chief Hartzog -Chief of Police ,Village of Varnado ,P.O. Box 200,,Varnado,LA,70467,985-735-4217,WASHINGTON,Louis Adams,63064 Main St.,,Varnado,LA,70426,985-732-5404,W,M,O,305,12/31/2012,01/01/2009,Chief Adams -City Prosecutor ,City of Bogalusa ,P. O. Drawer 1179,,Bogalusa,LA,70429-1179,985-732-6211,WASHINGTON,David Merlin Duke,314 Mississippi Ave.,,Bogalusa,LA,70427,985-735-8811,W,M,R,305,12/05/2010,04/14/2009,Mr. Duke -Councilman at Large ,City of Bogalusa ,P. O. Drawer 1179,,Bogalusa,LA,70429-1179,985-732-6211,WASHINGTON,Wendy O'Quin-Perrette,309 Bankston Drive,,Bogalusa,LA,70427,985-732-4005,W,F,D,308,12/05/2010,12/04/2006,Ms. O'Quin-Perrette -Councilman at Large ,City of Bogalusa ,P. O. Drawer 1179,,Bogalusa,LA,70429-1179,985-732-6211,WASHINGTON,"""Danny"" Stogner",1101 Madison St.,,Bogalusa,LA,70427,985-732-1948,W,M,D,308,12/05/2010,12/04/2006,Mr. Stogner -Alderman ,Town of Franklinton ,301 11th Avenue,,Franklinton,LA,70438,985-839-3560,WASHINGTON,"""T. J."" Butler, Jr.",727 18th Ave.,,Franklinton,LA,70438,985-839-3047,B,M,D,310,12/31/2012,01/01/2009,Mr. Butler -Alderman ,Town of Franklinton ,301 11th Avenue,,Franklinton,LA,70438,985-839-3560,WASHINGTON,John L. Daniel,309 10th Ave.,,Franklinton,LA,70438,985-839-2382,W,M,D,310,12/31/2012,01/01/2009,Mr. Daniel -Alderman ,Town of Franklinton ,301 11th Avenue,,Franklinton,LA,70438,985-839-3560,WASHINGTON,Richard Dillon,1102 Lynnwood Dr.,,Franklinton,LA,70438,985-839-3057,W,M,D,310,12/31/2012,01/01/2009,Mr. Dillon -Alderman ,Town of Franklinton ,301 11th Avenue,,Franklinton,LA,70438,985-839-3560,WASHINGTON,Florence Manning,P. O. Box 684,,Franklinton,LA,70438,985-839-4291,W,F,D,310,12/31/2012,01/01/2009,Ms. Manning -Alderman ,Town of Franklinton ,301 11th Avenue,,Franklinton,LA,70438,985-839-3560,WASHINGTON,"""Brad"" Orman",1049 Main St.,,Franklinton,LA,70438,985-839-2788,W,M,D,310,12/31/2012,01/01/2009,Mr. Orman -Alderman ,Village of Angie ,P. O. Box 152,,Angie,LA,70426,985-986-2444,WASHINGTON,Gilbert Ball,64442 Market St.,,Angie,LA,70426,985-986-2643,W,M,R,310,12/31/2012,01/01/2009,Mr. Ball -Alderman ,Village of Angie ,P. O. Box 152,,Angie,LA,70426,985-986-2444,WASHINGTON,"""Roxie"" Fornea",30082 E. St.,,Angie,LA,70426,985-986-2432,W,M,R,310,12/31/2012,01/01/2009,Mr. Fornea -Alderman ,Village of Angie ,P. O. Box 152,,Angie,LA,70426,985-986-2444,WASHINGTON,Bryan Stogner,64428 Cherry St.,,Angie,LA,70426,985-516-2370,W,M,D,310,12/31/2012,01/01/2009,Mr. Stogner -Alderman ,Village of Varnado ,P.O. Box 200,,Varnado,LA,70467,985-735-4217,WASHINGTON,"James L. ""Jimmy"" Ezell",63267 Fornea Rd.,,Varnado,LA,70426,985-732-7988,W,M,O,310,12/31/2012,01/01/2009,Mr. Ezell -Alderman ,Village of Varnado ,P.O. Box 200,,Varnado,LA,70467,985-735-4217,WASHINGTON,"Kimberly ""Suzi"" Kennedy",63345 Fornea Rd.,,Angie,LA,70426,985-516-3669,W,F,R,310,12/31/2012,01/01/2009,Ms. Kennedy -Alderman ,Village of Varnado ,P.O. Box 200,,Varnado,LA,70467,985-735-4217,WASHINGTON,Rhonda Smith,26213 Hwy. 21,,Angie,LA,70426,985-732-3108,W,F,O,310,12/31/2012,01/01/2009,Ms. Smith -Councilman ,"District A, City of Bogalusa ",P. O. Drawer 1179,,Bogalusa,LA,70429-1179,985-732-6211,WASHINGTON,Marilyn Bailey-Crews,303 Carolina Ave.,,Bogalusa,LA,70427,985-732-2231,B,F,D,310,12/05/2010,12/04/2006,Ms. Bailey-Crews -Councilman ,"District B, City of Bogalusa ",P. O. Drawer 1179,,Bogalusa,LA,70429-1179,985-732-6211,WASHINGTON,Michael O'Ree,612 Sullivan Dr.,,Bogalusa,LA,70427,985-735-9539,B,M,D,310,12/05/2010,12/04/2006,Mr. O'Ree -Councilman ,"District C, City of Bogalusa ",P. O. Drawer 1179,,Bogalusa,LA,70429-1179,985-732-6211,WASHINGTON,Paul Penton,1221 Lona Rester Place,,Bogalusa,LA,70427,985-735-8766,W,M,D,310,12/05/2010,12/04/2006,Mr. Penton -Councilman ,"District D, City of Bogalusa ",P. O. Drawer 1179,,Bogalusa,LA,70429-1179,985-732-6211,WASHINGTON,"Andrew ""Andy"" Deleon, Jr.",936 Avenue I,,Bogalusa,LA,70427,985-735-6631,W,M,D,310,12/05/2010,12/04/2006,Mr. Deleon -Councilman ,"District E, City of Bogalusa ",P. O. Drawer 1179,,Bogalusa,LA,70429-1179,985-732-6211,WASHINGTON,Randy Hodges,403 Derbigney St.,,Bogalusa,LA,70427,985-735-0549,W,M,D,310,12/05/2010,12/04/2006,Mr. Hodges -DPEC Member ,at Large ,,,,LA,,,WEBSTER,,,,,,,,,,,054 -DPEC Member ,District 1 ,,,,LA,,,WEBSTER,,,,,,,,,,,056 -DPEC Member ,District 2 ,,,,LA,,,WEBSTER,,,,,,,,,,,056 -DPEC Member ,District 3 ,,,,LA,,,WEBSTER,,,,,,,,,,,056 -DPEC Member ,District 4 ,,,,LA,,,WEBSTER,,,,,,,,,,,056 -DPEC Member ,District 5 ,,,,LA,,,WEBSTER,,,,,,,,,,,056 -DPEC Member ,District 6 ,,,,LA,,,WEBSTER,,,,,,,,,,,056 -DPEC Member ,District 7 ,,,,LA,,,WEBSTER,,,,,,,,,,,056 -DPEC Member ,District 8 ,,,,LA,,,WEBSTER,,,,,,,,,,,056 -DPEC Member ,District 9 ,,,,LA,,,WEBSTER,,,,,,,,,,,056 -DPEC Member ,District 10 ,,,,LA,,,WEBSTER,,,,,,,,,,,056 -DPEC Member ,District 11 ,,,,LA,,,WEBSTER,Cynthia Klimkiewicz,385 Martha Wood,,Heflin,LA,71039,318-377-0518,W,F,D,056,02/20/2012,02/20/2008,Ms. Klimkiewicz -DPEC Member ,District 12 ,,,,LA,,,WEBSTER,,,,,,,,,,,056 -RPEC Member ,at Large ,,,,LA,,,WEBSTER,Lee Estabrook,1604 Eames,,Minden,LA,71055,,,,,064,,05/22/2009 -RPEC Member ,at Large ,,,,LA,,,WEBSTER,Gerald Holland,510 Ninth St.,,Springhill,LA,71075,,,,,064,,05/22/2009 -RPEC Member ,at Large ,,,,LA,,,WEBSTER,Denise Moorhead,580 Boy Scout Rd.,,Minden,LA,71055,,,,,064,,05/22/2009 -RPEC Member ,District 1 ,,,,LA,,,WEBSTER,Charles Jacobs,102 Janice Dr.,,Springhill,LA,71075,,,,,066,,05/22/2009 -RPEC Member ,District 2 ,,,,LA,,,WEBSTER,,,,,,,,,,,066 -RPEC Member ,District 3 ,,,,LA,,,WEBSTER,Michael Corley,24624 Hwy. 371,,Sarepta,LA,,,,,,066,,05/22/2009 -RPEC Member ,District 4 ,,,,LA,,,WEBSTER,Carlos Martin,222 Weldon Johnson Rd.,,Minden,LA,71055,,,,,066,,05/22/2009 -RPEC Member ,District 5 ,,,,LA,,,WEBSTER,Jerry Hayes,717 Adkins Rd.,,Cotton Valley,LA,71018,,,,,066,,05/22/2009 -RPEC Member ,District 6 ,,,,LA,,,WEBSTER,Tommy Davis,225 Woodhaven Dr.,,Minden,LA,71055,,,,,066,,05/22/2009 -RPEC Member ,District 7 ,,,,LA,,,WEBSTER,Eric Johnson,1507 Holly,,Minden,LA,71055,,,,,066,,05/22/2009 -RPEC Member ,District 8 ,,,,LA,,,WEBSTER,Ronnie Broughton,110 Germantown Rd.,,Minden,LA,71055,,,,,066,,05/22/2009 -RPEC Member ,District 9 ,,,,LA,,,WEBSTER,Jennifer K. Smith,P.O. Box 149,,Minden,LA,71055,,,,,066,,05/22/2009 -RPEC Member ,District 10 ,,,,LA,,,WEBSTER,Martha Tucker,102 Tucker Ln.,,Minden,LA,71055,,,,,066,,05/22/2009 -RPEC Member ,District 11 ,,,,LA,,,WEBSTER,"""Pam"" Hillidge",P. O. Box 100,,Sibley,LA,71073,318-377-5207,W,F,R,066,02/20/2012,02/20/2008 -RPEC Member ,District 12 ,,,,LA,,,WEBSTER,Hunt Powell,862 Horseshoe Loop,,Doyline,LA,71023,,,,,066,,05/22/2009 -Sheriff ,,P. O. Box 877,,Minden,LA,71055,318-377-1515,WEBSTER,Gary S. Sexton,P.O. Box 877,,Minden,LA,71055,318-846-2810,W,M,D,225,06/30/2012,07/01/2008,Sheriff Sexton -Clerk of Court ,,P. O. Box 370,,Minden,LA,71058,318-371-0366,WEBSTER,Holli Vining,P.O. Box 370,,Minden,LA,71058,318-371-0366,W,F,D,230,06/30/2012,07/01/2008,Ms. Vining -Assessor ,,P.O. Box 734,,Minden,LA,71058-0734 ,318-377-9311,WEBSTER,Doris B. Cheatham,1508 King Orchard Rd.,,Sarepta,LA,71071,318-994-2084,W,F,D,235,12/31/2012,01/01/2009,Ms. Cheatham -Coroner ,,208 Morris Drive,,Minden,LA,71055,318-377-8311,WEBSTER,Carlos Irizarry,No. 2 Medical Plaza,,Minden,LA,71055,318-377-8400,O,M,O,240,03/25/2012,03/24/2008,Mr. Irizarry -Police Juror,District 1,P. O. Box 389,,Minden,LA,71058-0389,318-377-7564,WEBSTER,T. Bruce Blanton,P.O. Box 122,,Springhill,LA,71075,318-539-3141,W,M,D,245,01/08/2012,01/14/2008,Mr. Blanton -Police Juror ,District 2 ,P. O. Box 389,,Minden,LA,71055-0389 ,318-377-7564,WEBSTER,Jimmy D. Thomas,1116 Fifth St. SW,,Springhill,LA,71075,318-539-9292,B,M,D,245,01/08/2012,01/14/2008,Mr. Thomas -Police Juror ,District 3 ,P. O. Box 389,,Minden,LA,71055-0389 ,318-377-7564,WEBSTER,Daniel G. Thomas,242 Daniel Thomas Rd.,,Springhill,LA,71075,318-539-2902,W,M,D,245,01/08/2012,01/14/2008,Mr. Thomas -Police Juror ,District 4 ,P. O. Box 389,,Minden,LA,71055-0389 ,318-377-7564,WEBSTER,"""Steve"" Duggan",1267 Hilltop Rd.,,Shongaloo,LA,71072,318-539-4931,W,M,D,245,01/08/2012,01/14/2008,Mr. Duggan -Police Juror ,District 5 ,P. O. Box 389,,Minden,LA,71055-0389 ,318-377-7564,WEBSTER,"C. C. ""Cat"" Cox",P. O. Box 338,,Cotton Valley,LA,71018,318-832-4646,W,M,D,245,01/08/2012,01/14/2008,Mr. Cox -Police Juror ,District 6 ,P. O. Box 389,,Minden,LA,71055-0389 ,318-377-7564,WEBSTER,"""Jim"" Bonsall",1805 Old Arcadia Rd.,,Minden,LA,71055,318-371-0187,W,M,D,245,01/08/2012,01/14/2008,Mr. Bonsall -Police Juror ,District 7 ,P. O. Box 389,,Minden,LA,71055-0389 ,318-377-7564,WEBSTER,"""Steve"" Lemmons",271 Shadows Ln.,,Dubberly,LA,71024,318-377-3247,W,M,O,245,01/08/2012,01/14/2008,Mr. Lemmons -Police Juror ,District 8 ,P. O. Box 389,,Minden,LA,71055-0389 ,318-377-7564,WEBSTER,Charles D. Odom,1004 Elm St.,,Minden,LA,71055,318-377-6334,W,M,D,245,01/08/2012,01/14/2008,Mr. Odom -Police Juror ,District 9 ,P. O. Box 389,,Minden,LA,71055-0389 ,318-377-7564,WEBSTER,Jerri Musgrow Lee,607 Bayou Ave.,,Minden,LA,71055,318-377-8960,B,F,D,245,01/08/2012,01/14/2008,Ms. Musgrow -Police Juror ,District 10 ,P. O. Box 389,,Minden,LA,71055-0389 ,318-377-7564,WEBSTER,Vera Benton Davison,708 J.A. Phillips St.,,Minden,LA,71055,318-377-8606,B,F,D,245,01/08/2012,01/14/2008,Ms. Davison -Police Juror ,District 11 ,P. O. Box 389,,Minden,LA,71055-0389 ,318-377-7564,WEBSTER,"Steven G. ""Steve"" Ramsey",633 Aubrey Beatty Rd.,,Heflin,LA,71039,318-382-8060,W,M,D,245,01/08/2012,01/14/2008,Mr. Ramsey -Police Juror ,District 12 ,P. O. Box 389,,Minden,LA,71055-0389 ,318-377-7564,WEBSTER,Charles R. Walker,241 Palmyra Park Rd.,,Doyline,LA,71023,318-987-0032,W,M,D,245,01/08/2012,01/14/2008,Mr. Walker -City Judge ,"City Court, City of Minden ",P. O. Drawer 968,,Minden,LA,71058-0968 ,318-377-4308,WEBSTER,John C. Campbell,P.O. Box 834,,Minden,LA,71055,318-377-4974,W,M,D,250,12/31/2014,01/01/2009,Judge Campbell -City Judge ,"City Court, City of Springhill ",P. O. Box 86,,Springhill,LA,71075,318-539-4213,WEBSTER,"John B. SLATTERY, Jr.",1206 North Acres Circ.,,Springhill,LA,71075,318-539-3411,W,M,R,250,12/31/2014,01/01/2009,Judge Slattery -City Marshal ,"City Court, City of Minden ",P. O. Drawer 968,,Minden,LA,71058-0968 ,318-371-4210,WEBSTER,"Jack ""Randy"" Shelley",520 Broadway,,Minden,LA,71055,318-377-6294,W,M,D,250,12/31/2014,01/01/2009,Marshal Shelley -City Marshal ,"City Court, City of Springhill ",P. O. Box 86,,Springhill,LA,71075,318-539-4213,WEBSTER,Morris McClary,111 Angela Dr.,,Springhill,LA,71075,318-539-2361,W,M,D,250,12/31/2014,01/01/2009,Marshal McClary -Member of School Board ,District 1 ,P. O. Box 520,,Minden,LA,71058,318-377-7052,WEBSTER,Alan Stanford,900 Machen Dr.,,Springhill,LA,71075,318-539-9825,W,M,O,255,12/31/2010,01/01/2007,Mr. Stanford -Member of School Board ,District 2 ,P. O. Box 520,,Minden,LA,71058,318-377-7052,WEBSTER,Malachi Ridgel,1123 Third St. SW,,Springhill,LA,71075,318-539-5070,B,M,D,255,12/31/2010,01/01/2007,Mr. Ridgel -Member of School Board ,District 3 ,P. O. Box 520,,Minden,LA,71058,318-377-7052,WEBSTER,Charles Strong,171 Charles Strong Rd.,,Sarepta,LA,71071,318-994-2640,W,M,D,255,12/31/2010,01/01/2007,Mr. Strong -Member of School Board ,District 4 ,P. O. Box 520,,Minden,LA,71058,318-377-7052,WEBSTER,Bruce Williams,230 Johnny Mouser Rd.,,Shongaloo,LA,71072,318-846-2256,W,M,D,255,12/31/2010,01/01/2007,Mr. Williams -Member of School Board ,District 5 ,P. O. Box 520,,Minden,LA,71058,318-377-7052,WEBSTER,Ouida Garner,402 Walker Ln.,,Cotton Valley,LA,71018,318-832-4647,W,F,D,255,12/31/2010,01/01/2007,Ms. Garner -Member of School Board ,District 6 ,P. O. Box 520,,Minden,LA,71058,318-377-7052,WEBSTER,Harold Johnson,141 Braeburn Glen,,Minden,LA,71055,318-377-0963,W,M,D,255,12/31/2010,01/01/2007,Mr. Johnson -Member of School Board ,District 7 ,P. O. Box 520,,Minden,LA,71058,318-377-7052,WEBSTER,Linda Kinsey,121 Carver Dr.,,Minden,LA,71055,318-377-8036,B,F,D,255,12/31/2010,01/01/2007,Ms. Kinsey -Member of School Board ,District 8 ,P. O. Box 520,,Minden,LA,71058,318-377-7052,WEBSTER,Ronnie L. Broughton,110 Germantown Rd.,,Minden,LA,71055,318-377-4575,W,M,R,255,12/31/2010,01/01/2007,Mr. Broughton -Member of School Board ,District 9 ,P. O. Box 520,,Minden,LA,71058,318-377-7052,WEBSTER,Frankie L. Mitchell,601 Midland,,Minden,LA,71055,318-377-1323,B,F,D,255,12/31/2010,01/01/2007,Mr. Mitchell -Member of School Board ,District 10 ,P. O. Box 520,,Minden,LA,71058,318-377-7052,WEBSTER,Johnnye Kennon,914 Woods,,Minden,LA,71055,318-377-3935,B,F,D,255,12/31/2010,01/01/2007,Mr. Kennon -Member of School Board ,District 11 ,P. O. Box 520,,Minden,LA,71058,318-377-7052,WEBSTER,"""W. Greg"" Stinson",503 N. Main St.,,Sibley,LA,71073,318-371-9057,W,M,O,255,12/31/2010,01/01/2007,Mr. Stinson -Member of School Board ,District 12 ,P. O. Box 520,,Minden,LA,71058,318-377-7052,WEBSTER,Penny Estes Long,1331 Hwy. 163,,Doyline,LA,,318-745-6171,W,F,O,255,12/31/2010,01/01/2007 -Justice of the Peace ,Justice of the Peace District 1 ,1267 Hilltop Rd.,,Shongaloo,LA,71072,318-539-4931,WEBSTER,Lisa Duggan,P.O. Box 725,,Shongaloo,LA,71072,318-539-4931,W,F,R,265,12/31/2014,01/01/2009,MR. Duggan -Justice of the Peace ,Justice of the Peace District 1 ,1267 Hilltop Rd.,,Shongaloo,LA,71072,318-539-4931,WEBSTER,R. Glenn Johnston,216 Leton Cutoff Rd.,,Shongaloo,LA,71072,318-624-1879,W,M,D,265,12/31/2014,01/01/2009,Mr. Johnston -Justice of the Peace ,Justice of the Peace District 3 ,776 Elmo Burton Loop,,Minden,LA,71055,318-377-5263,WEBSTER,"Pierce Burton, Jr.",776 Elmo Burton Loop,,Minden,LA,71055,347-377-5263,W,M,D,265,12/31/2014,01/01/2009,Mr. Burton -Justice of the Peace ,Justice of the Peace District 5 ,1518 Diamond T. Rd.,,Heflin,LA,71039,318-377-2414,WEBSTER,Michelle Pittman,735 Airport Rd.,,Dubberly,LA,71024,318-377-4955,W,F,,265,12/31/2014,01/01/2009,Ms. Pittman -Justice of the Peace ,Justice of the Peace District 5 ,1518 Diamond T. Rd.,,Heflin,LA,71039,318-377-2414,WEBSTER,"Larry J. Toland, Sr.",1518 Diamond T,,Heflin,LA,71039,318-377-2414,W,M,R,265,12/31/2014,01/01/2009,Mr. Toland -Constable ,Justice of the Peace District 1 ,477 Bud Lee Rd.,,Shongaloo,LA,71072,318-846-2588,WEBSTER,George Hardaway,9124 Hwy. 2,,Shongaloo,LA,71072,318-846-2857,W,M,D,267,12/31/2014,01/01/2009,Mr. Hardaway -Constable ,Justice of the Peace District 1 ,477 Bud Lee Rd.,,Shongaloo,LA,71072,318-846-2588,WEBSTER,Tony Pipkin,12730 Hwy. 159,,Shongaloo,LA,71072,318-846-2820,W,M,,267,12/31/2014,01/01/2009,Mr. Pipkin -Constable ,Justice of the Peace District 3 ,685 Elmo Burton Loop,,Minden,LA,71055,318-371-2482,WEBSTER,"""Mike"" Burton",685 Elmo Burton Loop,,Minden,LA,71055,318-371-2482,W,M,R,267,12/31/2014,01/01/2009 -Constable ,Justice of the Peace District 5 ,3360 Hwy. 531,,Dubberly,LA,71024,318-377-2254,WEBSTER,Marsha Toland,1518 Diamond T Rd.,,Heflin,LA,71039,318-377-2414,W,F,R,267,12/31/2014,01/01/2009,Ms. Toland -Constable ,Justice of the Peace District 5 ,3360 Hwy. 531,,Dubberly,LA,71024,318-377-2254,WEBSTER,"Roy ""Milton"" Wells",575 Airport Rd.,,Dubberly,LA,71024,318-371-2607,W,M,R,267,12/31/2014,01/01/2009,Mr. Wells -Mayor ,City of Minden ,P. O. Box 580,,Minden,LA,,318-377-2144,WEBSTER,"""Bill"" Robertson",1312 Mark Dr.,,Minden,LA,71055,318-377-1467,W,M,D,300,12/31/2010,01/01/2007,Mayor Robertson -Mayor ,City of Springhill ,P. O. Box 398,,Springhill,LA,,318-539-5681,WEBSTER,Carroll Breaux,107 Ashley Cir.,,Springhill,LA,71075,318-539-2051,W,M,O,300,12/31/2010,01/01/2007,Mayor Breaux -Mayor ,Town of Cotton Valley ,P. O. Box 415,,Cotton Valley,LA,,318-832-4283,WEBSTER,Comerdis Phillips,108 Lewis Ave.,,Cotton Valley,LA,71018,318-832-5352,B,F,D,300,12/31/2012,01/01/2009,Mayor Phillips -Mayor ,Town of Cullen ,P. O. Box 679,,Cullen,LA,,318-994-2263,WEBSTER,Bobby Washington,P. O. Box 149,,Cullen,LA,71021,318-994-2731,B,M,D,300,12/31/2012,01/01/2009,Mayor Washington -Mayor ,Town of Sarepta ,P. O. Box 338,,Sarepta,LA,,318-847-4333,WEBSTER,E. L. Edwards,P. O. Box 102,,Sarepta,LA,71071,318-847-4598,W,M,D,300,12/31/2012,01/01/2009,Mayor Edwards -Mayor ,Town of Sibley ,P. O. Box 128,,Sibley,LA,,318-377-0345,WEBSTER,"""Jimmy"" Williams",166 Tacoma Trail,,Sibley,LA,71073,318-377-6096,W,M,D,300,12/31/2012,01/01/2009,Mr. Williams -Mayor ,Village of Dixie Inn ,60 Shell St.,,Dixie Inn,LA,,318-377-6855,WEBSTER,Ava N. McWhorter,1 Mason St.,,Minden,LA,71055,318-377-9341,W,F,D,300,12/31/2012,01/01/2009,Mayor McWhorter -Mayor ,Village of Doyline ,P. O. Box 626,,Doyline,LA,,318-745-2625,WEBSTER,Cleveland Bradfield,P.O. Box 235,,Doyline,LA,71023,318-745-3869,W,M,D,300,12/31/2010,01/01/2007,Mr. Bradfield -Mayor ,Village of Dubberly ,P. O. Box 69,,Dubberly,LA,,318-371-9528,WEBSTER,"W.C. ""Curtis"" Hirth",P.O. Box 115,,Dubberly,LA,71024,318-377-4705,W,M,,300,12/31/2012,01/01/2009,Mr. Hirth -Mayor ,Village of Heflin ,P. O. Box 98,,Heflin,LA,,318-377-9799,WEBSTER,Betty Blake,155 Smithfield Ln.,,Heflin,LA,71039,318-377-6724,W,F,R,300,12/31/2010,02/23/2009,Mayor Blake -Mayor ,Village of Shongaloo ,P. O. Box 74,,Shongaloo,LA,,318-846-2876,WEBSTER,Donnie Morgan,P.O. Box 28,,Shongaloo,LA,71072,318-846-2287,W,M,R,300,12/31/2012,01/01/2009,Mr. Morgan -Chief of Police ,City of Minden ,P. O. Box 580,,Minden,LA,71058-0580 ,318-377-2144,WEBSTER,"""T.C."" Bloxom, Jr.",P.O. Box 1081,,Minden,LA,71055,318-377-0411,W,M,D,305,12/31/2010,01/01/2007,Mr. Bloxom -Chief of Police ,City of Springhill ,P. O. Box 398,,Springhill,LA,71075,318-539-5681,WEBSTER,Ronnie Coleman,610 Park Loop,,Springhill,LA,71075,318-539-4750,B,M,D,305,12/31/2010,01/01/2007,Chief Coleman -Chief of Police ,Town of Cotton Valley ,P. O. Box 415,,Cotton Valley,LA,71018,318-832-4283,WEBSTER,Terry C. Brown,151 Duck Rd.,,Cotton Valley,LA,71018,318-832-4683,W,M,,305,12/31/2012,01/01/2009,Chief Brown -Chief of Police ,Town of Cullen ,P. O. Box 679,,Cullen,LA,71021,318-994-2263,WEBSTER,Mary Ann Hoof,P.O. Box 355,,Cullen,LA,71021,318-994-2975,B,F,D,305,12/31/2012,01/01/2009,Ms. Hoof -Chief of Police ,Town of Sarepta ,P. O. Box 338,,Sarepta,LA,71071,318-847-4333,WEBSTER,"""Bill"" Fields, Jr.",6152 Hwy. 2,,Sarepta,LA,71071,318-847-4726,W,M,D,305,12/31/2012,01/01/2009,Chief Fields -Chief of Police ,Town of Sibley ,P. O. Box 128,,Sibley,LA,71073,318-377-0345,WEBSTER,Jeremy Robinson,172 N.E. Natchitoches St.,,Sibley,LA,71073,318-268-0289,W,M,,305,12/31/2012,01/01/2009,Mr. Robinson -Chief of Police ,Village of Doyline ,P. O. Box 626,,Doyline,LA,71023,318-745-5344,WEBSTER,"""Robby"" Hayden, Jr.",P.O. Box 905,,Doyline,LA,71023,318-745-9944,W,M,,305,12/31/2010,01/01/2007,Mr. Hayden -Chief of Police ,Village of Dubberly ,P. O. Box 69,,Dubberly,LA,71024,318-371-9528,WEBSTER,Charles E. Mims,1748 Brushwood Dr.,,Dubberly,LA,71024,318-371-1020,B,M,D,305,12/31/2012,01/01/2009,Mr. Mims -Chief of Police ,Village of Heflin ,P. O. Box 98,,Heflin,LA,71039,318-377-2708,WEBSTER,Paul B. Migues,244 N. Main St.,,Heflin,LA,71039,318-377-0769,W,M,D,305,12/31/2010,01/01/2007,Mr. Migues -Alderman ,"District 1, City of Springhill ",P. O. Box 398,,Springhill,LA,71075,318-539-5681,WEBSTER,Edward Bankhead,539 Moore,,Springhill,LA,71075,318-539-4488,B,M,D,310,12/31/2010,01/01/2007,Mr. Bankhead -Alderman ,"District 2, City of Springhill ",P. O. Box 398,,Springhill,LA,71075,318-539-5681,WEBSTER,"""Johnny"" Craig, Jr.",207 N. Arkansas St.,,Springhill,LA,71075,318-539-5725,W,M,,310,12/31/2010,07/21/2008,Mr. Craig -Alderman ,"District 3, City of Springhill ",P. O. Box 398,,Springhill,LA,71075,318-539-5681,WEBSTER,Robert Hilburn,406 Eighth St. SE,,Springhill,LA,71075,318-539-4301,W,M,D,310,12/31/2010,01/01/2007,Mr. Hilburn -Alderman ,"District 4, City of Springhill ",P. O. Box 398,,Springhill,LA,71075,318-539-5681,WEBSTER,Gary Montgomery,505 Eighth St. N.E.,,Springhill,LA,71075,318-465-5226,W,M,D,310,12/31/2010,01/01/2007,Mr. Montgomery -Alderman ,"District 5, City of Springhill ",P. O. Box 398,,Springhill,LA,71075,318-539-5681,WEBSTER,Ray Huddleston,P.O. Box 85,,Springhill,LA,71075,318-539-5505,W,M,D,310,12/31/2010,01/01/2007,Mr. Huddleston -Alderman ,Town of Cotton Valley ,P. O. Box 415,,Cotton Valley,LA,71018,318-832-4283,WEBSTER,Adam Hurley,P.O. Box 353,,Cotton Valley,LA,71018,318-464-3843,W,M,R,310,12/31/2012,01/01/2009,Mr. Hurley -Alderman ,Town of Cotton Valley ,P. O. Box 415,,Cotton Valley,LA,71018,318-832-4283,WEBSTER,Charlene Lewis,P.O. Box 222,,Cotton Valley,LA,71018,318-832-4354,W,F,R,310,12/31/2012,01/01/2009,Ms. Lewis -Alderman ,Town of Cotton Valley ,P. O. Box 415,,Cotton Valley,LA,71018,318-832-4283,WEBSTER,Arnese A. Parish,P.O. Box 624,,Cotton Valley,LA,71018,318-578-2084,B,F,,310,12/31/2012,05/12/2009,Ms. Parish -Alderman ,Town of Cotton Valley ,P. O. Box 415,,Cotton Valley,LA,71018,318-832-4283,WEBSTER,Evelyn Parish,P.O. Box 600,,Cotton Valley,LA,71018,318-832-5377,B,F,D,310,12/31/2012,01/01/2009,Ms. Parish -Alderman ,Town of Cotton Valley ,P. O. Box 415,,Cotton Valley,LA,71018,318-832-4283,WEBSTER,"""Chris"" Williams",P. O. Box 620,,Cotton Valley,LA,71018,318-455-8966,W,M,,310,12/31/2012,01/01/2009,Mr. Williams -Alderman ,Town of Cullen ,P. O. Box 679,,Cullen,LA,71021,318-994-2263,WEBSTER,Barbara T. Green,P.O. Box 74,,Cullen,LA,71021,318-994-2811,B,F,D,310,12/31/2012,01/01/2009,Ms. Green -Alderman ,Town of Cullen ,P. O. Box 679,,Cullen,LA,71021,318-994-2263,WEBSTER,Tarcus Hawthorne,P.O. Box 131,,Cullen,LA,71021,318-205-2731,B,M,D,310,12/31/2012,01/01/2009,Mr. Hawthorne -Alderman ,Town of Cullen ,P. O. Box 679,,Cullen,LA,71021,318-994-2263,WEBSTER,"""Mr. Gary"" Sullivan",108 East Rd.,,Sarepta,LA,71071,318-994-2174,W,M,,310,12/31/2012,01/01/2009,Mr. Sullivan -Alderman ,Town of Cullen ,P. O. Box 679,,Cullen,LA,71021,318-994-2263,WEBSTER,Dexter Turner,P.O. Box 132,,Cullen,LA,71021,318-578-1805,B,M,D,310,12/31/2012,01/01/2009,Mr. Turner -Alderman ,Town of Cullen ,P. O. Box 679,,Cullen,LA,71021,318-994-2263,WEBSTER,Floydean White,P.O. Box 105,,Cullen,LA,71021,318-994-2032,B,F,D,310,12/31/2012,01/01/2009,Ms. White -Alderman ,Town of Sarepta ,P. O. Box 338,,Sarepta,LA,71071,318-847-4333,WEBSTER,Peggy Adkins,P.O. Box 283,,Sarepta,LA,71071,318-847-4032,W,F,R,310,12/31/2012,01/01/2009,Ms. Adkins -Alderman ,Town of Sarepta ,P. O. Box 338,,Sarepta,LA,71071,318-847-4333,WEBSTER,Michael A. Corley,P.O. Box 29,,Sarepta,LA,71071,318-847-4574,W,M,R,310,12/31/2012,01/01/2009,Mr. Corley -Alderman ,Town of Sarepta ,P. O. Box 338,,Sarepta,LA,71071,318-847-4333,WEBSTER,Jeff Franklin,P.O. Box 405,,Sarepta,LA,71071,318-847-4030,W,M,R,310,12/31/2012,01/01/2009,Mr. Franklin -Alderman ,Town of Sarepta ,P. O. Box 338,,Sarepta,LA,71071,318-847-4333,WEBSTER,Anthony L. Mullins,P.O. Box 301,,Sarepta,LA,71071,318-847-4832,W,M,,310,12/31/2012,01/01/2009,Mr. Williams -Alderman ,Town of Sarepta ,P. O. Box 338,,Sarepta,LA,71071,318-847-4333,WEBSTER,"""Jeff"" Slack",P.O. Box 741,,Sarepta,LA,71071,318-847-4761,W,M,,310,12/31/2012,01/01/2009,Mr. Slack -Alderman ,Town of Sibley ,P. O. Box 128,,Sibley,LA,71073,318-377-0345,WEBSTER,Wayne Bolton,574 S.E. 5th Ave.,,Sibley,LA,71073,318-377-8715,W,M,,310,12/31/2012,01/01/2009,Mr. Bolton -Alderman ,Town of Sibley ,P. O. Box 128,,Sibley,LA,71073,318-377-0345,WEBSTER,"""Doyle"" Chanler",536 South Main,,Sibley,LA,71073,318-377-3364,W,M,D,310,12/31/2012,01/01/2009,Mr. Chanler -Alderman ,Town of Sibley ,P. O. Box 128,,Sibley,LA,71073,318-377-0345,WEBSTER,"Richard W. Davis, Sr.",294 N.E. 4th Ave.,,Sibley,LA,71073,318-377-7767,W,M,,310,12/31/2012,01/01/2009,Mr. davis -Alderman ,Town of Sibley ,P. O. Box 128,,Sibley,LA,71073,318-377-0345,WEBSTER,John Langford,104 Doodle Trial,,Sibley,LA,71073,318-377-9473,W,M,,310,12/31/2012,01/01/2009,Mr. Langford -Alderman ,Town of Sibley ,P. O. Box 128,,Sibley,LA,71073,318-377-0345,WEBSTER,"Robert Smart, Jr.",140 Tacoma Trail,,Sibley,LA,71073,318-377-9406,W,M,D,310,12/31/2012,01/01/2009,Mr. Smart -Alderman ,Village of Dixie Inn ,60 Shell St.,,Dixie Inn,LA,71055,318-377-6855,WEBSTER,Pauline Fontenot,25 McArthur St.,,Dixie Inn,LA,71055,318-371-1421,W,F,D,310,12/31/2012,01/01/2009,Ms. Fontenot -Alderman ,Village of Dixie Inn ,60 Shell St.,,Dixie Inn,LA,71055,318-377-6855,WEBSTER,Verna Kay Stratton,12397 Hwy. 80,,Minden,LA,71055,,W,F,,310,12/31/2012,01/01/2009,Ms. Stratton -Alderman ,Village of Dixie Inn ,60 Shell St.,,Dixie Inn,LA,71055,318-377-6855,WEBSTER,Joseph Walden,54 McArthur St.,,Minden,LA,71055,318-377-1742,W,M,,310,12/31/2012,01/01/2009,Mr. Walden -Alderman ,Village of Doyline ,P. O. Box 626,,Doyline,LA,71023,318-745-2625,WEBSTER,Betty Ballard,505 Fuller St.,,Doyline,LA,71023,318-745-2402,W,F,R,310,12/31/2010,01/01/2007,Ms. Ballard -Alderman ,Village of Doyline ,P. O. Box 626,,Doyline,LA,71023,318-745-2625,WEBSTER,Billy M. Reeves,P.O. Box 595,,Doyline,LA,71023,318-745-2270,W,M,R,310,12/31/2010,01/01/2007,Mr. Reeves -Alderman ,Village of Doyline ,P. O. Box 626,,Doyline,LA,71023,318-745-2625,WEBSTER,Ronnie G. Watson,116 Agape Ln.,,Doyline,LA,71023,318-745-3002,W,M,,310,12/31/2010,01/01/2007,Mr. Watson -Alderman ,Village of Dubberly ,P. O. Box 69,,Dubberly,LA,71024,318-371-9528,WEBSTER,"""John"" Brown",317 Catalpa Lane,,Dubberly,LA,71024,318-371-9559,W,M,D,310,12/31/2012,01/01/2009,Mr. Brown -Alderman ,Village of Dubberly ,P. O. Box 69,,Dubberly,LA,71024,318-371-9528,WEBSTER,Douglas Culpepper,2020 Nursery Rd.,,Dubberly,LA,71024,318-371-1598,W,M,R,310,12/31/2012,01/01/2009,Mr. Culpepper -Alderman ,Village of Dubberly ,P. O. Box 69,,Dubberly,LA,71024,318-371-9528,WEBSTER,Lynn Pittman-Cooley,768 Airport Rd.,,Dubberly,LA,71024,318-377-4954,W,F,,310,12/31/2012,01/01/2009,Ms. Cooley -Alderman ,Village of Heflin ,P. O. Box 98,,Heflin,LA,71039,318-377-2708,WEBSTER,Todd Leake,P.O. Box 2,,Heflin,LA,71039,318-377-7325,W,M,D,310,12/31/2010,01/01/2007,Mr. Leake -Alderman ,Village of Heflin ,P. O. Box 98,,Heflin,LA,71039,318-377-2708,WEBSTER,"Catherine ""Cathy"" Lee",515 S. Main St.,,Heflin,LA,71039,318-377-7539,W,F,D,310,12/31/2010,01/01/2007,Ms.Lee -Alderman ,Village of Heflin ,P. O. Box 98,,Heflin,LA,71039,318-377-2708,WEBSTER,Robert Stachowicz,477 N. Main St.,,Heflin,LA,71039,318-371-1737,W,M,R,310,12/31/2010,01/01/2007,Mr. Stachowicz -Alderman ,Village of Shongaloo ,P. O. Box 74,,Shongaloo,LA,71072,318-846-2876,WEBSTER,Joe Morgan,P.O. Box 28,,Shongaloo,LA,71072,318-846-2287,W,M,R,310,12/31/2012,01/01/2009,Mr. Morgan -Alderman ,Village of Shongaloo ,P. O. Box 74,,Shongaloo,LA,71072,318-846-2876,WEBSTER,Kathy Pipkin,12730 Hwy. 159,,Shongaloo,LA,71072,318-846-2820,W,F,,310,12/31/2012,01/01/2009,Ms. Pipkin -Alderman ,Village of Shongaloo ,P. O. Box 74,,Shongaloo,LA,71072,318-846-2876,WEBSTER,Ann Sexton,268 Sexton Dr.,,Shongaloo,LA,71072,318-846-2810,W,F,R,310,12/31/2012,01/01/2009,Ms. Sexton -Councilman ,"District A, City of Minden ",P. O. Box 580,,Minden,LA,71058-0580 ,318-377-2144,WEBSTER,Rodney D. Seamster,617 Durwood Dr.,,Minden,LA,71055,318-377-0164,B,M,D,310,12/31/2010,01/01/2007,Mr. Seamster -Councilman ,"District B, City of Minden ",P. O. Box 580,,Minden,LA,71058-0580 ,318-377-2144,WEBSTER,Fayrine Kennon-Gilbert,P.O. Box 605,,Minden,LA,71055,318-377-0934,B,F,D,310,12/31/2010,01/01/2007,Ms. Gilbert -Councilman ,"District C, City of Minden ",P. O. Box 580,,Minden,LA,71058-0580 ,318-377-2144,WEBSTER,Magaline M. Quarles,1201 Bayou Ave.,,Minden,LA,71055,318-377-0239,B,F,D,310,12/31/2010,01/01/2007,Ms. Quarles -Councilman ,"District D, City of Minden ",P. O. Box 580,,Minden,LA,71058-0580 ,318-377-2144,WEBSTER,"""Tommy"" Davis",225 Woodhaven Dr.,,Minden,LA,71055,318-371-1844,W,M,R,310,12/31/2010,01/01/2007,Mr. Davis -Councilman ,"District E, City of Minden ",P. O. Box 580,,Minden,LA,71058-0580 ,318-377-2144,WEBSTER,Benny Gray,833 Country Club Cir.,,Minden,LA,71055,318-377-5945,W,M,D,310,12/31/2010,01/01/2007,Mr. Gray -DPEC Member ,at Large ,,,,LA,,,WEST BATON ROUGE,Michael B. Cazes,2047 Antonio Dr.,,Port Allen,LA,70767,225-749-3341,W,M,D,054,02/20/2012,02/20/2008,Mr. Cazes -DPEC Member ,at Large ,,,,LA,,,WEST BATON ROUGE,Jeffrey C. Kershaw,2041 Holly Wood Ct.,,Port Allen,LA,70767,225-749-9173,W,M,D,054,02/20/2012,02/20/2008,Mr. Kershaw -DPEC Member ,District 1 ,,,,LA,,,WEST BATON ROUGE,,,,,,,,,,,056 -DPEC Member ,District 2 ,,,,LA,,,WEST BATON ROUGE,"George ""Skipper"" Grady",1848 Allene St.,,Brusly,LA,70719,225-749-0081,W,M,D,056,02/20/2012,02/20/2008,Mr. Grady -DPEC Member ,District 3 ,,,,LA,,,WEST BATON ROUGE,"Rawlston D. Phillips, Jr.",P.O. Box 917,,Port Allen,LA,70767,225-749-3504,W,M,D,056,02/20/2012,02/20/2008,Mr. Phillips -DPEC Member ,District 4 ,,,,LA,,,WEST BATON ROUGE,Thomas J. Leblanc,675 Florida Ave.,,Port Allen,LA,70767,225-343-4134,W,M,D,056,02/20/2012,02/20/2008,Mr. Leblanc -DPEC Member ,District 5 ,,,,LA,,,WEST BATON ROUGE,,,,,,,,,,,056 -DPEC Member ,District 6 ,,,,LA,,,WEST BATON ROUGE,Huey P. Brown,3924 North River Rd.,,Port Allen,LA,70767,225-343-5900,W,M,D,056,02/20/2012,02/20/2008,Mr. Brown -DPEC Member ,District 7 ,,,,LA,,,WEST BATON ROUGE,,,,,,,,,,,056 -DPEC Member ,District 8 ,,,,LA,,,WEST BATON ROUGE,Anthony R. Ferdinand,5337 Flynn Rd.,,Port Allen,LA,70767,225-627-6880,B,M,D,056,02/20/2012,02/20/2008,Mr. Ferdinand -DPEC Member ,District 9 ,,,,LA,,,WEST BATON ROUGE,,,,,,,,,,,056 -RPEC Member ,at Large ,,,,LA,,,WEST BATON ROUGE,,,,,,,,,,,064 -RPEC Member ,District 1 ,,,,LA,,,WEST BATON ROUGE,,,,,,,,,,,066 -RPEC Member ,District 2 ,,,,LA,,,WEST BATON ROUGE,,,,,,,,,,,066 -RPEC Member ,District 3 ,,,,LA,,,WEST BATON ROUGE,,,,,,,,,,,066 -RPEC Member ,District 4 ,,,,LA,,,WEST BATON ROUGE,Joseph B. Hagmann,651 Georgia Ave.,,Port Allen,LA,70767,225-388-0990,W,M,R,066,02/20/2012,02/20/2008,Mr. Hagmann -RPEC Member ,District 5 ,,,,LA,,,WEST BATON ROUGE,,,,,,,,,,,066 -RPEC Member ,District 6 ,,,,LA,,,WEST BATON ROUGE,,,,,,,,,,,066 -RPEC Member ,District 7 ,,,,LA,,,WEST BATON ROUGE,,,,,,,,,,,066 -RPEC Member ,District 8 ,,,,LA,,,WEST BATON ROUGE,,,,,,,,,,,066 -RPEC Member ,District 9 ,,,,LA,,,WEST BATON ROUGE,,,,,,,,,,,066 -Sheriff ,,P. O. Box 129,,Port Allen,LA,70767,225-343-9234,WEST BATON ROUGE,"Michael ""Mike"" Cazes",P.O. Box 129,,Port Allen,LA,70767,225-749-3341,W,M,D,225,06/30/2012,07/01/2008,Sheriff Cazes -Clerk of Court ,,P. O. Box 107,,Port Allen,LA,70767,225-383-0378,WEST BATON ROUGE,Mark J. Graffeo,P.O. Box 107,,Port Allen,LA,70767,225-381-9721,W,M,D,230,06/30/2012,07/01/2008,Mr. Graffeo -Assessor ,,P.O. Box 76,,Port Allen,LA,70767,225-344-6777,WEST BATON ROUGE,"Barney ""Frog"" Altazan",603 Oaks Ave.,,Port Allen,LA,70767,225-343-4152,W,M,D,235,12/31/2012,01/01/2009,Mr. Altazan -Coroner ,,P.O. Box 951,,Port Allen,LA,70767,225-336-2429,WEST BATON ROUGE,"""Phil"" Padgett",635 Maryland Ave.,,Port Allen,LA,70767,225-343-2922,W,M,R,240,03/25/2012,03/24/2008,Mr. Padgett -Parish President ,,P.O. Box 757,,Port Allen,LA,70767-0757 ,225-383-4755,WEST BATON ROUGE,"Riley ""Pee Wee"" Berthelot",4185 Fitzgerald St.,,Addis,LA,70710,225-687-4767,W,M,D,243,01/09/2012,01/14/2008,Mr. Berthelot -Council Member,District 1,P. O. Box 757,,Port Allen,LA,70767,225-383-4755,WEST BATON ROUGE,Randal Mouch,8326 First St.,,Addis,LA,70710,225-687-3891,W,M,D,245,01/09/2012,01/14/2008,Mr. Mouch -Council Member ,District 2 ,P. O. Box 757,,Port Allen,LA,70767,225-383-4755,WEST BATON ROUGE,"Jeffrey ""Petit"" Kershaw",2041 Holly Wood Court,,Port Allen,LA,70767,225-749-9173,W,M,D,245,01/09/2012,01/14/2008,Mr. Kershaw -Council Member ,District 3 ,P. O. Box 757,,Port Allen,LA,70767,225-383-4755,WEST BATON ROUGE,"Keith K. ""Keedy"" Washington, Sr.",P.O. Box 360,,Brusly,LA,70719,225-749-7902,B,M,D,245,01/09/2012,01/14/2008,Mr. Washington -Council Member ,District 4 ,P. O. Box 757,,Port Allen,LA,70767,225-383-4755,WEST BATON ROUGE,Ricky Loupe,2439 Riverside Dr.,,Port Allen,LA,70767,225-749-9305,W,M,D,245,01/09/2012,01/14/2008,Mr. Loupe -Council Member ,District 5 ,P. O. Box 757,,Port Allen,LA,70767,225-383-4755,WEST BATON ROUGE,Charlene Gordon,P.O. Box 421,,Port Allen,LA,70767,225-336-4176,B,F,D,245,01/09/2012,01/14/2008,Ms. Gordon -Council Member ,District 6 ,P. O. Box 757,,Port Allen,LA,70767,225-383-4755,WEST BATON ROUGE,"""Phil"" Porto, Jr.",3226 Rosario St.,,Port Allen,LA,70767,225-383-9673,W,M,D,245,01/09/2012,01/14/2008,Mr. Porto -Council Member ,District 7 ,P. O. Box 757,,Port Allen,LA,70767,225-383-4755,WEST BATON ROUGE,"Gary ""Sprout"" Spillman",6949 Bueche Rd.,,Bueche,LA,70729,225-627-6438,W,M,D,245,01/09/2012,01/14/2008,Mr. Spillman -Council Member ,District 8 ,P. O. Box 757,,Port Allen,LA,70767,225-383-4755,WEST BATON ROUGE,"Alethea ""Lisa Green"" Johnson",4426 Rougon Rd.,,Port Allen,LA,70767,,B,F,D,245,01/09/2012,01/14/2008,Mr. Johnson -Council Member ,District 9 ,P. O. Box 757,,Port Allen,LA,70767,225-383-4755,WEST BATON ROUGE,"Edward G. ""Bob"" Robertson",P.O. Box 504,,Port Allen,LA,70767,225-344-5164,B,M,D,245,01/09/2012,01/14/2008,Mr. Robertson -City Judge ,"City Court, City of Port Allen ",P. O. Box 93,,Port Allen,LA,70767,225-346-4702,WEST BATON ROUGE,"William T. ""Will"" Kleinpeter",1848 Fairview Dr.,,Port Allen,LA,70767,225-749-9269,W,M,R,250,12/31/2014,01/01/2009,Mr. Kleinpeter -City Marshal ,"City Court, City of Port Allen ",P. O. Box 93,,Port Allen,LA,70767,225-346-4702,WEST BATON ROUGE,"Michael ""Mike"" Zito",917 Brantford Dr.,,Port Allen,LA,70767,225-383-2747,W,M,D,250,12/31/2014,01/01/2009,Marshal Zito -Member of School Board ,at Large ,3761 Rosedale Rd.,,Port Allen,LA,70767,225-343-6100,WEST BATON ROUGE,C.A. Altazan,824 Ave. E,,Port Allen,LA,70767,225-383-5445,W,M,D,255,12/31/2010,01/01/2007,Mr. Altazan -Member of School Board ,District I ,3761 Rosedale Rd.,,Port Allen,LA,70767,225-343-6100,WEST BATON ROUGE,Cynthia Mouch Crochet,7022 S. River Rd.,,Addis,LA,70710,225-749-2094,W,F,R,255,12/31/2010,01/01/2007,Mr. Crochet -Member of School Board ,District II ,3761 Rosedale Rd.,,Port Allen,LA,70767,225-343-6100,WEST BATON ROUGE,Cecile G. Gauthreaux,3760 Emily Dr.,,Port Allen,LA,70767,225-749-8458,W,F,D,255,12/31/2010,01/01/2007,Mr. Gauthreaux -Member of School Board ,District III ,3761 Rosedale Rd.,,Port Allen,LA,70767,225-343-6100,WEST BATON ROUGE,Atley D. Walker,3751 Lukeville Lane,,Brusly,LA,70719,225-749-3036,B,M,D,255,12/31/2010,01/01/2007,Mr. Walker -Member of School Board ,District IV ,3761 Rosedale Rd.,,Port Allen,LA,70767,225-343-6100,WEST BATON ROUGE,"Ronald ""Blue"" LeBlanc",740 Oaks Ave.,,Port Allen,LA,70767,225-346-8127,W,M,D,255,12/31/2010,01/01/2007,Mr. LeBlanc -Member of School Board ,District IX ,3761 Rosedale Rd.,,Port Allen,LA,70767,225-343-6100,WEST BATON ROUGE,"Michael ""Mike"" Maranto",18515 North River Rd.,,Bueche,LA,70729,225-627-5689,W,M,D,255,12/31/2010,01/01/2007,Mr. Maranto -Member of School Board ,District V ,3761 Rosedale Rd.,,Port Allen,LA,70767,225-343-6100,WEST BATON ROUGE,"Leon N. Goudeau, Sr.",515 Heliotrope St.,,Port Allen,LA,70767,225-383-6392,B,M,D,255,12/31/2010,05/12/2009,Mr. Goudeau -Member of School Board ,District VI ,3761 Rosedale Rd.,,Port Allen,LA,70767,225-343-6100,WEST BATON ROUGE,"Thelma L. Pattan, ",3761 Rosedale Rd,,Port Allen,LA,70767,,,,,255,,02/09/2010,Mrs. Pattan -Member of School Board ,District VII ,3761 Rosedale Rd.,,Port Allen,LA,70767,225-343-6100,WEST BATON ROUGE,"George Alden Chustz, Jr.",10941 L. J. Lane,,Port Allen,LA,70767,225-627-9389,W,M,D,255,12/31/2010,01/01/2007,Mr. Chutz -Member of School Board ,District VIII ,3761 Rosedale Rd.,,Port Allen,LA,70767,225-343-6100,WEST BATON ROUGE,Jason Manola,2644 Riverside Dr.,,Port Allen,LA,70767,225-749-3432,W,M,D,255,12/31/2010,01/01/2007,Mr. Manola -Justice of the Peace ,Justice of the Peace Ward 1 ,7656 S. River Rd.,,Addis,LA,70710,225-749-2035,WEST BATON ROUGE,Thomas Glenn Prejean,7656 South River Rd.,,Addis,LA,70710,225-749-2035,W,M,D,265,12/31/2014,01/01/2009,Mr. Prejean -Justice of the Peace ,Justice of the Peace Ward 2 ,210 Richard St.,,Brusly,LA,70719,225-749-2142,WEST BATON ROUGE,"H. ""Gil"" Banta",3130 Live Oak Dr.,,Brusly,LA,70719,225-749-8128,W,M,R,265,12/31/2014,01/01/2009,Mr. Banta -Justice of the Peace ,Justice of the Peace Ward 4 ,2141 Lafiton Ln.,,Port Allen,LA,70767,225-267-6719,WEST BATON ROUGE,"Michael ""Mike"" Ryan",2141 Lafiton Ln.,,Port Allen,LA,70767,225-267-6719,W,M,,265,12/31/2014,01/01/2009,Mr. Ryan -Justice of the Peace ,Justice of the Peace Ward 5 ,6111 David Rd.,,Port Allen,LA,70767,225-383-7909,WEST BATON ROUGE,Fern David,6111 Nolan David Rd.,,Port Allen,LA,70767,225-383-7909,W,F,D,265,12/31/2014,01/01/2009,Ms. David -Justice of the Peace ,Justice of the Peace Ward 6 ,6738 Bueche Rd.,,Bueche,LA,70720,225-627-6637,WEST BATON ROUGE,James Ducote,9243 Burnside Rd.,,Erwinville,LA,70729,225-627-3975,W,M,D,265,12/31/2014,01/01/2009,Mr. Ducote -Justice of the Peace ,Justice of the Peace Ward 7 ,P.O.Box 172,,Port Allen,LA,70767,225-627-5215,WEST BATON ROUGE,"James ""Jimmy"" Womack",P.O. Box 172,,Erwinville,LA,70729,225-627-5215,W,M,D,265,12/31/2014,01/01/2009,Mr. Womack -Constable ,Justice of the Peace Ward 1 ,4932 Myrle Dr.,,Addis,LA,70710,225-687-5352,WEST BATON ROUGE,Rhonda LeBlanc Kelley,4932 Myrle St.,,Addis,LA,70710,225-687-5352,W,F,D,267,12/31/2014,01/01/2009,Ms. Kelleu -Constable ,Justice of the Peace Ward 2 ,210 Richard St.,,Brusly,LA,70719,225-749-2142,WEST BATON ROUGE,Charles Zalfen,2228 Live Oak Dr.,,Brusly,LA,70719,225-749-3373,W,M,D,267,12/31/2014,01/01/2009,Mr. Zalfren -Constable ,Justice of the Peace Ward 4 ,3534 Kahns Rd.,,Port Allen,LA,70767,225-383-0027,WEST BATON ROUGE,"Jerome M. ""Jimmy"" Fontana",3534 Kahns Rd.,,Port Allen,LA,70767,225-383-0027,W,M,D,267,12/31/2014,01/01/2009,Mr. Fonatana -Constable ,Justice of the Peace Ward 5 ,P.O. Box 513,,Port Allen,LA,70767,225-343-0336,WEST BATON ROUGE,"Michael ""Mike"" David",P. O. Box 513,,Port Allen,LA,70767,225-343-0336,W,M,D,267,12/31/2014,01/01/2009 -Constable ,Justice of the Peace Ward 6 ,6358 Bueche Rd.,,Port Allen,LA,70767,225-627-5468,WEST BATON ROUGE,Vorise Miller,6358 Bueche Rd.,,Erwinville,LA,70729,225-627-5468,W,M,D,267,12/31/2014,01/01/2009,Mr. Miller -Constable ,Justice of the Peace Ward 7 ,3953 Poydras Bayou Dr.,,Port Allen,LA,70767,225-627-4017,WEST BATON ROUGE,"""Johnny"" Lurry",3623 Poydras Bayou,,Port Allen,LA,70767,225-627-4475,W,M,R,267,12/31/2014,01/01/2009,Mr. Lurry -Mayor ,City of Port Allen ,P. O. Box 468,,Port Allen,LA,,225-346-5670,WEST BATON ROUGE,Derek A. Lewis,P. O. Box 1093,,Port Allen,LA,70767,225-387-1540,B,M,D,300,12/31/2012,01/01/2009,Mayor Lewis -Mayor ,Town of Addis ,P. O. Box 237,,Addis,LA,,225-687-4844,WEST BATON ROUGE,Carroll P. Bourgeois,P. O. Box 293,,Addis,LA,70710,225-687-2932,W,M,D,300,12/31/2012,01/01/2009,Mayor Bourgeois -Mayor ,Town of Brusly ,P. O. Box 510,,Brusly,LA,,225-749-2909,WEST BATON ROUGE,"""Joey"" Normand",3419 Live Oak Dr.,,Brusly,LA,70719,225-749-3435,W,M,,300,12/31/2012,01/01/2009,Mayor -Chief of Police ,City of Port Allen ,P. O. Box 468,,Port Allen,LA,70767,225-346-5670,WEST BATON ROUGE,"""Fred"" Smith",980 Sixth St.,,Port Allen,LA,70767,225-387-0506,B,M,D,305,12/31/2012,01/01/2009,Chief Smith -Chief of Police ,Town of Addis ,P. O. Box 237,,Addis,LA,70710,225-687-4844,WEST BATON ROUGE,"Richard Alton ""Ricky"" Anderson",P. O. Box 716,,Addis,LA,70710,225-687-8881,W,M,D,305,12/31/2012,01/01/2009,Chief Anderson -Chief of Police ,Town of Brusly ,P. O. Box 510,,Brusly,LA,70719,225-749-2909,WEST BATON ROUGE,Jamie Whaley,2021 Allene St.,,Brusly,LA,70719,225-749-8104,W,M,D,305,12/31/2012,01/01/2009,Chief Whaley -Council Member at Large ,City of Port Allen ,,,,LA,,,WEST BATON ROUGE,R. J. Loupe,138 N. Jefferson Ave.,,Port Allen,LA,70767,225-344-7909,W,M,D,308,12/31/2012,01/01/2009,Mr. Loupe -Council Member ,"District I, City of Port Allen ",P. O. Box 468,,Port Allen,LA,70767,225-346-5670,WEST BATON ROUGE,Ray Helen Lawrence,1334 Oregon Ave.,,Port Allen,LA,70767,225-344-4830,B,F,D,310,12/31/2012,01/01/2009,Mr. Lawrence -Council Member ,"District II, City of Port Allen ",P. O. Box 468,,Port Allen,LA,70767,225-346-5670,WEST BATON ROUGE,"Hugh ""Hootie"" Riviere",456 Ave. D,,Port Allen,LA,70767,225-344-1279,W,M,,310,12/31/2012,01/01/2009,Mr. Riviere -Council Member ,"District III, City of Port Allen ",P. O. Box 468,,Port Allen,LA,70767,225-346-5670,WEST BATON ROUGE,Ralph Bergeron,244 Palm St.,,Port Allen,LA,70767,,W,M,D,310,12/31/2012,01/01/2009,Mr. Bergeron -Council Member ,"District IV, City of Port Allen ",P. O. Box 468,,Port Allen,LA,70767,225-346-5670,WEST BATON ROUGE,"Irvrie A. ""Ivory"" Johnson",1085 Georgia Ave.,,Port Allen,LA,70767,225-383-3428,B,M,D,310,12/31/2012,01/01/2009,Mr. Johnson -Council Member ,Town of Addis ,P. O. Box 237,,Addis,LA,70710,225-687-4844,WEST BATON ROUGE,"Wilson ""Hook"" Cazes",3777 Justice Ave.,,Addis,LA,70710,225-687-9737,W,M,D,310,12/31/2012,01/01/2009,Mr. Cazes -Council Member ,Town of Addis ,P. O. Box 237,,Addis,LA,70710,225-687-4844,WEST BATON ROUGE,"Lance ""Yogi"" Gauthreaux",8123 First St.,,Addis,LA,70710,225-687-4741,W,M,,310,12/31/2012,01/01/2009,Mr. Gauthreaux -Council Member ,Town of Addis ,P. O. Box 237,,Addis,LA,70710,225-687-4844,WEST BATON ROUGE,"Joseph ""Blackie"" Landry",P.O. Box 329,,Addis,LA,70710,225-687-2255,W,M,D,310,12/31/2012,01/01/2009,Mr. Landry -Council Member ,Town of Addis ,P. O. Box 237,,Addis,LA,70710,225-687-4844,WEST BATON ROUGE,"Russell ""Rusty"" Parrish",7723 First St.,,Addis,LA,70710,,W,M,D,310,12/31/2012,01/01/2009,Mr. Parrish -Council Member ,Town of Addis ,P. O. Box 237,,Addis,LA,70710,225-687-4844,WEST BATON ROUGE,David H. Toups,8246 First St.,,Addis,LA,70710,225-687-3776,W,M,D,310,12/31/2012,01/01/2009,Mr. Toups -Council Member ,Town of Brusly ,P. O. Box 510,,Brusly,LA,70719,225-749-2909,WEST BATON ROUGE,David Shane Andre',300 Gleason St.,,Brusly,LA,70719,225-749-6251,W,M,,310,12/31/2012,01/01/2009,Mr. Andre -Council Member ,Town of Brusly ,P. O. Box 510,,Brusly,LA,70719,225-749-2909,WEST BATON ROUGE,Joanne C. Bourgeois,P. O. Box 628,,Brusly,LA,70719,225-749-3270,W,F,,310,12/31/2012,01/01/2009,Mr. Bourgeois -Council Member ,Town of Brusly ,P. O. Box 510,,Brusly,LA,70719,225-749-2909,WEST BATON ROUGE,James Landess Hebert,P. O. Box 389,,Brusly,LA,70719,225-749-2200,W,M,R,310,12/31/2012,01/01/2009,Mr. Hebert -Council Member ,Town of Brusly ,P. O. Box 510,,Brusly,LA,70719,225-749-2909,WEST BATON ROUGE,"Chris ""Fish"" Kershaw",P. O. Box 1234,,,LA,70719,225-749-7798,W,M,D,310,12/31/2012,01/01/2009,Mr. Kershaw -Council Member ,Town of Brusly ,P. O. Box 510,,Brusly,LA,70719,225-749-2909,WEST BATON ROUGE,Thomas Olinde,240 Oakbend Dr.,,Brusly,LA,70719,225-772-1493,W,M,R,310,12/31/2012,01/01/2009,Mr. Olinde -DPEC Member ,at Large ,,,,LA,,,WEST CARROLL,,,,,,,,,,,054 -DPEC Member ,District A ,,,,LA,,,WEST CARROLL,,,,,,,,,,,056 -DPEC Member ,District B ,,,,LA,,,WEST CARROLL,,,,,,,,,,,056 -DPEC Member ,District C ,,,,LA,,,WEST CARROLL,,,,,,,,,,,056 -DPEC Member ,District D ,,,,LA,,,WEST CARROLL,,,,,,,,,,,056 -DPEC Member ,District E ,,,,LA,,,WEST CARROLL,,,,,,,,,,,056 -RPEC Member ,at Large ,,,,LA,,,WEST CARROLL,Lisa Cox Reardon,P.O. Box 761,,Oak Grove,LA,71263,318-428-2535,,,,064,,06/18/2008,Ms. Reardon -RPEC Member ,District A ,,,,LA,,,WEST CARROLL,,,,,,,,,,,066 -RPEC Member ,District B ,,,,LA,,,WEST CARROLL,,,,,,,,,,,066 -RPEC Member ,District C ,,,,LA,,,WEST CARROLL,,,,,,,,,,,066 -RPEC Member ,District D ,,,,LA,,,WEST CARROLL,,,,,,,,,,,066 -RPEC Member ,District E ,,,,LA,,,WEST CARROLL,,,,,,,,,,,066 -Sheriff ,,P. O. Box 744,,Oak Grove,LA,71263,318-428-2331,WEST CARROLL,Jerry Philley,P O. Box 744,,Oak Grove,LA,71263,318-428-4390,W,M,R,225,06/30/2012,07/01/2008,Sheriff -Clerk of Court ,,P. O. Box 1078,,Oak Grove,LA,71263,318-428-2369,WEST CARROLL,Kay S. Bolding,P.O. Box 1078,,Oak Grove,LA,71263,318-428-4689,W,F,D,230,06/30/2012,07/01/2008,Mr. Bolding -Assessor ,,P.O. Box 610,,Oak Grove,LA,71263,318-428-2371,WEST CARROLL,DeAnna Smith,9468 Hwy. 17,,Oak Grove,LA,71263,318-428-9545,W,F,O,235,12/31/2012,01/01/2009,Ms. Smith -Coroner ,,502 Ross Street,,Oak Grove,LA,71263,318-428-2358,WEST CARROLL,Noli C. Guinigundo,502 Ross St.,,Oak Grove,LA,71263,318-428-2358,W,M,R,240,03/25/2012,03/24/2008,Mr. Guinigundo -Police Juror,District A,P.O. Drawer 630,,Oak Grove,LA,71263,318-428-3390,WEST CARROLL,Johnny Lee Simms,P.O. Box 610,,Epps,LA,71237,318-926-8495,W,M,D,245,01/08/2012,01/14/2008,Mr. Simms. -Police Juror ,District B ,P.O. Drawer 1608,,Oak Grove,LA,71263,318-428-3390,WEST CARROLL,"""Bill"" Ellerbe",1405 Hwy. 878,,Oak Grove,LA,71263,318-428-8427,W,M,D,245,01/08/2012,01/14/2008,Mr. Ellerbe -Police Juror ,District C ,P.O. Drawer 1608,,Oak Grove,LA,71263,318-428-3390,WEST CARROLL,Jack L. Madden,326 Country Lane,,Oak Grove,LA,71263,318-428-3346,W,M,O,245,01/08/2012,01/14/2008,Mr. Madden -Police Juror ,District D ,P.O. Drawer 1608,,Oak Grove,LA,71263,318-428-3390,WEST CARROLL,"Eugene ""Pop"" Crosby",P.O. Box 89,,Oak Grove,LA,71263,318-428-4398,W,M,D,245,01/08/2012,01/14/2008,Mr. Crosby -Police Juror ,District E ,P.O. Drawer 1608,,Oak Grove,LA,71263,318-428-3390,WEST CARROLL,"""Eddie"" Russell",783 Newell Rd.,,Oak Grove,LA,71263,318-428-8970,W,M,D,245,01/08/2012,01/14/2008,Mr. Russell -Member of School Board ,District 1 ,314 E. Main St.,,Oak Grove,LA,71263,318-428-2378,WEST CARROLL,"C. T. ""Red"" Rawls",P.O. Box 93,,Epps,LA,71237,318-926-5473,W,M,O,255,12/31/2010,01/01/2007,Mr. Rawls -Member of School Board ,District 2 ,314 E. Main St.,,Oak Grove,LA,71263,318-428-2378,WEST CARROLL,Donald Ray Gwin,262 Gwin Rd.,,Epps,LA,71237,318-926-3908,W,M,D,255,12/31/2010,01/01/2007,Mr. Gwin -Member of School Board ,District 3 ,314 E. Main St.,,Oak Grove,LA,71263,318-428-2378,WEST CARROLL,"""Kathy"" McAllister",307 Hwy. 589,,Oak Grove,LA,71263,318-428-2091,W,F,O,255,12/31/2010,01/01/2007,Ms. McAllister -Member of School Board ,District 4 ,314 E. Main St.,,Oak Grove,LA,71263,318-428-2378,WEST CARROLL,J. Kelly Coleman,P. O. Box 241,,Oak Grove,LA,71263,318-428-0405,W,M,R,255,12/31/2010,01/01/2007,Mr. Coleman -Member of School Board ,District 5 ,314 E. Main St.,,Oak Grove,LA,71263,318-428-2378,WEST CARROLL,"""J. T."" Martin, Sr.",P.O. Box 469,,Oak Grove,LA,71263,318-428-8840,B,M,D,255,12/31/2010,01/01/2007,Mr. Martin -Member of School Board ,District 6 ,314 E. Main St.,,Oak Grove,LA,71263,318-428-2378,WEST CARROLL,Raymond Desselle,252 Thomas Loop,,Oak Grove,LA,71263,318-669-1293,W,M,,255,12/31/2010,02/23/2009,Mr. Desselle -Member of School Board ,District 7 ,314 E. Main St.,,Oak Grove,LA,71263,318-428-2378,WEST CARROLL,Jerry M. Gathings,15202 Hwy. 585,,Oak Grove,LA,71263,318-428-2639,W,M,,255,12/31/2010,01/01/2007,Mr. Gathings -Justice of the Peace ,Justice of the Peace District 1 ,579 Hurt Rd.,,Pioneer,LA,71266,318-926-3928,WEST CARROLL,Doris Varner,579 Hurt Rd.,,Pioneer,LA,71266,318-926-3928,W,F,O,265,12/31/2014,01/01/2009,Ms. Varner -Justice of the Peace ,Justice of the Peace District 2 ,1038 Turner Rd.,,Oak Grove,LA,71263,318-428-3405,WEST CARROLL,Bobby R. Lee,154 Robinson Rd.,,Oak Grove,LA,71263,318-428-8347,W,M,,265,12/31/2014,01/01/2009,Mr. Lee -Justice of the Peace ,Justice of the Peace District 3 ,4325 Hwy 582,,Oak Grove,LA,71263,318-428-2643,WEST CARROLL,Vendal W. Fairchild,4325 Hwy. 582,,Oak Grove,LA,71263,318-428-2643,W,M,R,265,12/31/2014,01/01/2009,Mr. Fairchild -Justice of the Peace ,Justice of the Peace District 4 ,P.O.Box 510,,Oak Grove,LA,71263,318-428-7137,WEST CARROLL,Cecil Wayne Jones,907 East Main St.,,Oak Grove,LA,71263,318-428-4701,W,M,,265,12/31/2014,08/24/2009,Mr. Jones -Justice of the Peace ,Justice of the Peace District 5 ,P.O. Box 205,,Kilbourne,LA,71253,318-428-4913,WEST CARROLL,Connie Green,P.O. Box 205,,Kilbourne,LA,71253,318-428-4913,W,F,,265,12/31/2014,01/01/2009,Ms. Green -Constable ,Justice of the Peace District 1 ,848 Loyd Rd.,,Epps,LA,71237,318-926-3309,WEST CARROLL,Annette Sullivan King,5952 Hwy. 577,,Pioneer,LA,71266,318-926-4887,W,F,,267,12/31/2014,01/01/2009,Ms. King -Constable ,Justice of the Peace District 2 ,P.O. Box 176,,Pioneer,LA,71266,318-428-2227,WEST CARROLL,Tammy Thompson Hartley,6723 Hwy. 588,,Pioneer,LA,71266,318-428-3140,W,F,,267,12/31/2014,01/01/2009,Ms. Hartley -Constable ,Justice of the Peace District 3 ,P.O. Box 367,,Oak Grove,LA,71263,318-428-4919,WEST CARROLL,Perry W. Brantley,P.O. Box272,,Forest,LA,71242,318-428-8143,W,M,R,267,12/31/2014,01/01/2009,Mr. Brantley -Constable ,Justice of the Peace District 4 ,6405 Hwy. 589,,Oak Grove,LA,71263,318-428-3895,WEST CARROLL,Nell Chambless,6405 Hwy. 589,,Oak Grove,LA,71263,318-428-0547,W,F,D,267,12/31/2014,01/01/2009,Ms. Chambless -Constable ,Justice of the Peace District 5 ,P.O. Box 236,,Kilbourne,LA,71253,,WEST CARROLL,John A. Tullos,P.O. Box,,Kilbourne,LA,71253,318-428-2848,W,M,,267,12/31/2014,01/01/2009,Mr. Tullos -Mayor ,Town of Oak Grove ,P. O. Drawer 1014,,Oak Grove,LA,,318-428-3275,WEST CARROLL,Lavelle Brown,P.O. Box 421,,Oak Grove,LA,71263,318-428-2509,W,M,D,300,06/30/2010,07/01/2006,Mayor Brown -Mayor ,Village of Epps ,P. O. Box 253,,Epps,LA,,318-926-5224,WEST CARROLL,"""Jeff"" Guice",P.O. Box 767,,Epps,LA,71237,318-926-5649,W,M,O,300,12/31/2010,01/01/2007,Mr. Guice -Mayor ,Village of Forest ,P. O. Box 338,,Forest,LA,,318-428-9058,WEST CARROLL,Michael Wayne Jones,P.O. Box 397,,Forest,LA,71242,318-428-4779,W,M,O,300,12/31/2012,08/24/2009,Mayor Jones -Mayor ,Village of Kilbourne ,P. O. Box 395,,Kilbourne,LA,,318-428-2774,WEST CARROLL,"""Jim"" Sowell",P.O. Box 318,,Kilbourne,LA,71253,318-428-2926,W,M,R,300,12/31/2010,01/01/2007,Mr. Sowell -Mayor ,Village of Pioneer ,P. O. Box 153,,Pioneer,LA,,318-428-8581,WEST CARROLL,Sonia Reiter,P.O. Box 143,,Pioneer,LA,71266,318-428-2151,W,F,,300,12/31/2010,01/01/2007,Ms. Reiter -Chief of Police ,Village of Epps ,P. O. Box 253,,Epps,LA,71237,318-926-5224,WEST CARROLL,Roosevelt Porter,P.O. Box 73,,Epps,LA,71237,318-926-4487,B,M,D,305,12/31/2010,02/20/2008,Chief Porter -Chief of Police ,Village of Forest ,P. O. Box 338,,Forest,LA,71242,318-428-9058,WEST CARROLL,"James R. ""Bob"" Smith",3585 Hwy. 582,,Oak Grove,LA,71263,318-428-2752,W,M,O,305,12/31/2012,01/01/2009,Mr. Smith -Chief of Police ,Village of Kilbourne ,P. O. Box 395,,Kilbourne,LA,71253,318-428-2774,WEST CARROLL,Howard Tullos,P.O. Box 234,,Kilbourne,LA,71253,318-428-8561,W,M,R,305,12/31/2010,01/01/2007,Mr. Tullos -Chief of Police ,Village of Pioneer ,P. O. Box 153,,Pioneer,LA,71266,318-428-8581,WEST CARROLL,Michael Henderson,P.O. Box 153,,Pioneer,LA,71266,318-428-8581,,,,305,,11/02/2009,Chief Henderson -Alderman ,Village of Epps ,P. O. Box 253,,Epps,LA,71237,318-926-5224,WEST CARROLL,Shirley Gibson,P.O. Box 66,,Epps,LA,71237,318-926-5210,W,F,O,310,12/31/2010,01/01/2007,Ms. Epps -Alderman ,Village of Epps ,P. O. Box 253,,Epps,LA,71237,318-926-5224,WEST CARROLL,Charlie M. Grimble,P.O. Box 641,,Epps,LA,71237,318-926-5330,B,M,D,310,12/31/2010,01/01/2007,Mr. Grimble -Alderman ,Village of Epps ,P. O. Box 253,,Epps,LA,71237,318-926-5224,WEST CARROLL,Roberta P. Simms,P.O. Box 179,,Epps,LA,71237,318-926-1126,W,F,O,310,12/31/2010,01/01/2007,Ms. Simms -Alderman ,Village of Forest ,P. O. Box 338,,Forest,LA,71242,318-428-9058,WEST CARROLL,Theresa G. Brantley,P.O. Box 272,,Forest,LA,71242,318-428-8143,W,F,R,310,12/31/2012,01/01/2009,Ms. Brantley -Alderman ,Village of Forest ,P. O. Box 338,,Forest,LA,71242,318-428-9058,WEST CARROLL,"Charles ""Buddy"" Dukes",P.O. Box 279,,Forest,LA,71242,318-428-9320,W,M,,310,12/31/2012,01/01/2009,Mr. Dukes -Alderman ,Village of Forest ,P. O. Box 338,,Forest,LA,71242,318-428-9058,WEST CARROLL,Edward McKaskle,P.O. Box 357,,Forest,LA,71242,318-235-2254,W,M,R,310,12/31/2012,08/24/2009,Mr. McKaskle -Alderman ,Village of Forest ,P. O. Box 338,,Forest,LA,71242,318-428-9058,WEST CARROLL,Bobbie J. Wise,P.O. Box 387,,Forest,LA,71242,318-428-8053,W,F,,310,12/31/2012,01/01/2009,Ms. Wise -Alderman ,Village of Kilbourne ,P. O. Box 395,,Kilbourne,LA,71253,318-428-2774,WEST CARROLL,Joe Lee Allen,P.O. Box 451,,Kilbourne,LA,71253,318-428-8455,W,M,,310,12/31/2010,02/19/2007,Mr. Allen -Alderman ,Village of Kilbourne ,P. O. Box 395,,Kilbourne,LA,71253,318-428-2774,WEST CARROLL,Billy M. Owens,P.O. Box 24,,Kilbourne,LA,71253,318-428-7019,W,M,O,310,12/31/2010,01/01/2007,Mr. Owens -Alderman ,Village of Kilbourne ,P. O. Box 395,,Kilbourne,LA,71253,318-428-2774,WEST CARROLL,Toni Prine Shumate,P.O. Box 172,,Kilbourne,LA,71253,318-428-8906,W,F,,310,12/31/2010,01/01/2007,Mr. Shumate -Alderman ,Village of Pioneer ,P. O. Box 153,,Pioneer,LA,71266,318-428-8581,WEST CARROLL,Tamra Deniece Gunter,5967 Broadway St.,,Pioneer,LA,71266,318-428-0707,W,F,O,310,12/31/2010,01/01/2007,Ms. Gunter -Alderman ,Village of Pioneer ,P. O. Box 153,,Pioneer,LA,71266,318-428-8581,WEST CARROLL,Clifton Ward,P.O. Box 21,,Pioneer,LA,71266,318-428-2273,B,M,,310,12/31/2010,01/01/2007,Mr. Ward -Alderman ,Village of Pioneer ,P. O. Box 153,,Pioneer,LA,71266,318-428-8581,WEST CARROLL,Timmy Whatley,P.O. Box 333,,Pioneer,LA,71266,318-428-8387,W,M,O,310,12/31/2010,01/01/2007,Mr. Whatley -Councilman ,Town of Oak Grove ,P. O. Drawer 1014,,Oak Grove,LA,71263,318-428-3275,WEST CARROLL,Kent Elkins,P.O. Box 806,,Oak Grove,LA,71263,318-428-4358,W,M,R,310,06/30/2010,07/01/2006,Mr. Elkins -Councilman ,Town of Oak Grove ,P. O. Drawer 1014,,Oak Grove,LA,71263,318-428-3275,WEST CARROLL,Noel Haynes,P.O. Drawer 1014,,Oak Grove,LA,,,,,,310,,02/01/2009,Ms. Haynes -Councilman ,Town of Oak Grove ,P. O. Drawer 1014,,Oak Grove,LA,71263,318-428-3275,WEST CARROLL,Jim Holland,500 Park Ave.,,Oak Grove,LA,71263,318-428-9280,W,M,D,310,06/30/2010,07/01/2006,Mr. Holland -Councilman ,Town of Oak Grove ,P. O. Drawer 1014,,Oak Grove,LA,71263,318-428-3275,WEST CARROLL,Robert McFarlin,P.O. Box 162,,Oak Grove,LA,71263,318-428-3235,W,M,,310,06/30/2010,07/01/2006,Mr. McFarlin -Councilman ,Town of Oak Grove ,P. O. Drawer 1014,,Oak Grove,LA,71263,318-428-3275,WEST CARROLL,"W. B. Russell, Jr.",P.O. Box 518,,Oak Grove,LA,71263,318-428-2589,W,M,O,310,06/30/2010,07/01/2006,Mr. Russell -DPEC Member ,at Large ,,,,LA,,,WEST FELICIANA,,,,,,,,,,,054 -DPEC Member ,District 1 ,,,,LA,,,WEST FELICIANA,,,,,,,,,,,056 -DPEC Member ,District 2 ,,,,LA,,,WEST FELICIANA,,,,,,,,,,,056 -DPEC Member ,District 3 ,,,,LA,,,WEST FELICIANA,,,,,,,,,,,056 -DPEC Member ,District 4 ,,,,LA,,,WEST FELICIANA,,,,,,,,,,,056 -DPEC Member ,District 5 ,,,,LA,,,WEST FELICIANA,,,,,,,,,,,056 -DPEC Member ,District 6 ,,,,LA,,,WEST FELICIANA,,,,,,,,,,,056 -DPEC Member ,District 7 ,,,,LA,,,WEST FELICIANA,,,,,,,,,,,056 -RPEC Member ,at Large ,,,,LA,,,WEST FELICIANA,Philip G. Accardo,13039 Hwy. 10,,St. Francisville,LA,70775,225-268-2201,W,M,R,064,02/20/2012,02/20/2008,Mr. Accardo -RPEC Member ,at Large ,,,,LA,,,WEST FELICIANA,"""Mike"" Smith",P.O. BOX 295,,St. Francisville,LA,70775,225-266-2793,W,M,R,064,02/20/2012,02/20/2008,Mr. Smith -RPEC Member ,District 1 ,,,,LA,,,WEST FELICIANA,,,,,,,,,,,066 -RPEC Member ,District 2 ,,,,LA,,,WEST FELICIANA,,,,,,,,,,,066 -RPEC Member ,District 3 ,,,,LA,,,WEST FELICIANA,,,,,,,,,,,066 -RPEC Member ,District 4 ,,,,LA,,,WEST FELICIANA,,,,,,,,,,,066 -RPEC Member ,District 5 ,,,,LA,,,WEST FELICIANA,,,,,,,,,,,066 -RPEC Member ,District 6 ,,,,LA,,,WEST FELICIANA,,,,,,,,,,,066 -RPEC Member ,District 7 ,,,,LA,,,WEST FELICIANA,,,,,,,,,,,066 -Sheriff ,,P.O. Box 1844,,St. Francisville,LA,70775,225-635-3241,WEST FELICIANA,Austin Daniel,P.O. Box 1844,,St. Francisville,LA,70775,225-635-3298,W,M,D,225,06/30/2012,07/01/2008,Sheriff Daniel -Clerk of Court ,,P. O. Box 1843,,St. Francisville,LA,70775,225-635-3794,WEST FELICIANA,Felicia Ann Daniel-Hendl,P.O. Box 1843,,St. Francisville,LA,70775,225-635-3723,W,F,D,230,06/30/2012,07/01/2008,Ms. Daniel-Hendl -Assessor ,,P.O. Box 279,,St. Francisville,LA,70775,225-635-3350,WEST FELICIANA,"""Randy"" Ritchie",8791 Tunica Trace,,St. Francisville,LA,70775,225-635-3093,W,M,D,235,12/31/2012,01/01/2009,Mr. Ritchie -Coroner ,,P.O. Box 1850,,St. Francisville,LA,70775,225-635-3256,WEST FELICIANA,Chaillie P. Daniel,5393 Audubon Lane,,St. Francisville,LA,70775,225-635-9724,W,M,O,240,03/25/2012,03/24/2008,Mr. Daniel -Police Juror ,District 1 ,P. O. Box 1921,,St. Francisville,LA,,225-635-3864,WEST FELICIANA,Lea Reid Williams,P.O. Box 516,,St. Francisville,LA,70775,225-635-6540,W,F,O,245,01/08/2012,01/14/2008,Ms. Williams -Police Juror ,District 2 ,P. O. Box 1921,,St. Francisville,LA,70775,225-635-3864,WEST FELICIANA,Randy Stevens,2978 Hwy. 966,,St. Francisville,LA,70775,225-635-6621,W,M,R,245,01/08/2012,01/14/2008,Mr. Stevens -Police Juror ,District 3 ,P. O. Box 1921,,St. Francisville,LA,70775,225-635-3864,WEST FELICIANA,John Cobb,10637 Tunica Trace,,St. Francisville,LA,70775,225-635-6177,B,M,D,245,01/08/2012,01/14/2008,Mr. Cobb -Police Juror ,District 4 ,P. O. Box 1921,,St. Francisville,LA,70775,225-635-3864,WEST FELICIANA,Billy D. Shoemake,P.O. Box 23,,Tunica,LA,70782,225-655-3294,W,M,D,245,01/08/2012,01/14/2008,Mr. Shoemake -Police Juror ,District 5 ,P. O. Box 1921,,St. Francisville,LA,70775,225-635-3864,WEST FELICIANA,John K. Roach,15456 Hwy. 421,,St. Francisville,LA,70775,225-635-4736,B,M,D,245,01/08/2012,01/14/2008,Mr. Roach -Police Juror ,District 6 ,P. O. Box 1921,,St. Francisville,LA,70775,225-635-3864,WEST FELICIANA,Kenneth R. Dawson,P.O. Box 32,,St. Francisville,LA,70775,225-635-4935,B,M,D,245,01/08/2012,01/14/2008,Mr. Dawson -Police Juror ,District 7 ,P. O. Box 1921,,St. Francisville,LA,70775,225-635-3864,WEST FELICIANA,Otis L. Wilson,P.O. Box 162,,St. Francisville,LA,70775,225-721-0881,B,M,D,245,01/08/2012,01/14/2008,Mr. Wilson -Member of School Board ,District 1 ,P. O. Box 1910,,St. Francisville,LA,70775,225-635-3891,WEST FELICIANA,Amanda Temple McKinney,P.O. Box 2431,,St. Francisville,LA,70775,225-635-9753,W,F,O,255,12/31/2010,01/01/2007,Ms McKinney -Member of School Board ,District 2 ,P. O. Box 1910,,St. Francisville,LA,70775,225-635-3891,WEST FELICIANA,Kevin Beauchamp,5916 Hwy. 966,,St. Francisville,LA,70775,225-635-6418,W,M,O,255,12/31/2010,01/01/2007,Mr. Beauchamp -Member of School Board ,District 3 ,P. O. Box 1910,,St. Francisville,LA,70775,225-635-3891,WEST FELICIANA,"James A. ""Jimmy"" White",8868 Heir Rd.,,Solitude,LA,70775,225-635-6835,B,M,D,255,12/31/2010,01/01/2007,Mr. White -Member of School Board ,District 4 ,P. O. Box 1910,,St. Francisville,LA,70775,225-635-3891,WEST FELICIANA,"David A. Cornette, Sr.",P.O. Box 1910,,St. Francisville,LA,70775,225-655-4866,W,M,D,255,12/31/2010,01/01/2007,Mr. Cornette -Member of School Board ,District 5 ,P. O. Box 1910,,St. Francisville,LA,70775,225-635-3891,WEST FELICIANA,Milton Coats,8245 Sage Hill Rd.,,St. Francisville,LA,70775,225-635-6007,B,M,D,255,12/31/2010,01/01/2007,Mr. Coats -Member of School Board ,District 6 ,P. O. Box 1910,,St. Francisville,LA,70775,225-635-3891,WEST FELICIANA,Kelly O'Brien,9093 Airport Rd.,,St. Francisville,LA,70775,225-635-9547,W,F,R,255,12/31/2010,04/14/2009,Ms. O'Brien -Member of School Board ,District 7 ,P. O. Box 1910,,St. Francisville,LA,70775,225-635-3891,WEST FELICIANA,Sara Wilson-Wright,P.O. Box 1543,,St. Francisville,LA,70775,225-635-3017,B,F,D,255,12/31/2010,01/01/2007,Ms. Wright -Justice of the Peace ,Parishwide Justice of the Peace District ,P.O.Box 1337,,St. Francisville,LA,70775,225-635-6073,WEST FELICIANA,"""Dusty"" Bickham",P.O. Box 2671,,St. Francisville,LA,70775,225-784-9733,W,M,R,265,12/31/2014,01/01/2009,Mr. Bickham -Constable ,Parishwide Justice of the Peace District ,P.O. Box 2093,,St. Francisville,LA,70775,225-635-5254,WEST FELICIANA,Dennis Neal,P.O. Box 452,,St. Francisville,LA,70775,225-635-3528,W,M,O,267,12/31/2014,01/01/2009,Mr. Neal -Mayor ,Town of St. Francisville ,P. O. Box 400,,St. Francisville,LA,,225-635-3688,WEST FELICIANA,"""Billy"" D'Aquilla",P.O. Box 905,,St. Francisville,LA,70775,225-635-6852,W,M,D,300,12/31/2012,01/01/2009,Mr. D'Aquilla -Alderman ,"Election Section 1, Town of St. Francisville ",P. O. Box 400,,St. Francisville,LA,70775,225-635-3688,WEST FELICIANA,"Oscar Robertson, Jr.",P.O. Box 265,,St. Francisville,LA,70775,225-635-0282,B,M,D,310,12/31/2012,01/01/2009,MR. Robertson -Alderman ,"Election Section 2, Town of St. Francisville ",P. O. Box 400,,St. Francisville,LA,70775,225-635-3688,WEST FELICIANA,"James C. ""Jim"" Davis",P.O. Box 542,,St. Francisville,LA,70775,225-635-3460,W,M,D,310,12/31/2012,01/01/2009,Mr. Davis -Alderman ,"Election Section 2, Town of St. Francisville ",P. O. Box 400,,St. Francisville,LA,70775,225-635-3688,WEST FELICIANA,"James Rucker Leake, Jr.",P.O. Box 458,,St. Francisville,LA,70775,225-635-6115,W,M,R,310,12/31/2012,01/01/2009,Mr. Leake -Alderman ,"Election Section 2, Town of St. Francisville ",P. O. Box 400,,St. Francisville,LA,70775,225-635-3688,WEST FELICIANA,"Robert P. Leake, Jr.",P.O. Box 1428,,St. Francisville,LA,70775,225-324-4052,W,M,O,310,12/31/2012,01/01/2009,Mr. Leake -Alderman ,"Election Section 2, Town of St. Francisville ",P. O. Box 400,,St. Francisville,LA,70775,225-635-3688,WEST FELICIANA,Abby Temple,P.O. Box 2884,,St. Francisville,LA,70775,225-721-3171,W,F,O,310,12/31/2012,01/01/2009,Ms. Temple -DPEC Member ,at Large ,,,,LA,,,WINN,Marvin R. Harrell,114 Dogwood Dr.,,Winnfield,LA,71483,318-628-4587,W,M,D,054,02/20/2012,02/20/2008,Mr. Harrell -DPEC Member ,at Large ,,,,LA,,,WINN,Wayne T. Moore,7451 Hwy. 167 South,,Winnfield,LA,71483,318-628-6124,W,M,D,054,02/20/2012,02/20/2008,Mr. Moore -DPEC Member ,at Large ,,,,LA,,,WINN,Deano Thornton,201 Cherokee Dr.,,Winnfield,LA,71483,318-628-3418,W,M,D,054,02/20/2012,02/20/2008,Mr. Thornton -DPEC Member ,at Large ,,,,LA,,,WINN,Michael L. Tinnerello,9374 Hwy. 84,,Winnfield,LA,71483,318-628-6010,W,M,D,054,02/20/2012,02/20/2008,Mr. Tinnerello -DPEC Member ,District 1 ,,,,LA,,,WINN,,,,,,,,,,,056 -DPEC Member ,District 2 ,,,,LA,,,WINN,Chester Derr,1503 Center St.,,Winnfield,LA,71483,318-628-4994,W,M,D,056,02/20/2012,02/20/2008,Mr. Derr -DPEC Member ,District 3 ,,,,LA,,,WINN,"""Gregg"" Davies",120 Ted Price Ln.,,Winnfield,LA,71483,318-628-4451,W,M,D,056,02/20/2012,02/20/2008,Mr. Davies -DPEC Member ,District 4 ,,,,LA,,,WINN,,,,,,,,,,,056 -DPEC Member ,District 5 ,,,,LA,,,WINN,Puckett Willis,P.O. Box 56,,Sikes,LA,71473,318-628-2431,W,M,D,056,02/20/2012,02/20/2008,Mr. Willis -DPEC Member ,District 6 ,,,,LA,,,WINN,Herman A. Castete,625 Old Union Church Rd.,,Winnfield,LA,71483,318-628-1911,W,M,D,056,02/20/2012,02/20/2008,Mr. Castete -DPEC Member ,District 7 ,,,,LA,,,WINN,,,,,,,,,,,056 -RPEC Member ,at Large ,,,,LA,,,WINN,,,,,,,,,,,064 -RPEC Member ,District 1 ,,,,LA,,,WINN,,,,,,,,,,,066 -RPEC Member ,District 2 ,,,,LA,,,WINN,,,,,,,,,,,066 -RPEC Member ,District 3 ,,,,LA,,,WINN,,,,,,,,,,,066 -RPEC Member ,District 4 ,,,,LA,,,WINN,,,,,,,,,,,066 -RPEC Member ,District 5 ,,,,LA,,,WINN,,,,,,,,,,,066 -RPEC Member ,District 6 ,,,,LA,,,WINN,,,,,,,,,,,066 -RPEC Member ,District 7 ,,,,LA,,,WINN,,,,,,,,,,,066 -Sheriff ,,P. O. Box 950,,Winnfield,LA,71483,318-628-4611,WINN,"A. D. ""Bodie"" Little",P.O. Box 950,,Winnfield,LA,71483,318-628-5603,W,M,D,225,06/30/2012,07/01/2008,Sheriff Little -Clerk of Court ,,"100 Main St., Rm. 103",,Winnfield,LA,71483,318-628-3515,WINN,"Donald E. ""Don"" Kelley","100 Main St., Rm. 103",,Winnfield,LA,71483,318-628-4712,W,M,D,230,06/30/2012,07/01/2008,Mr. Kelley -Assessor ,,Rm. 101 Courthouse,,Winnfield,LA,71483,318-628-3267,WINN,Lawrence Desadier,407 Bernstein St.,,Winnfield,LA,71483,318-628-6471,W,M,D,235,12/31/2012,01/01/2009,Mr. Desadier -Coroner ,,1405 A. Court St.,,Winnfield,LA,71483,318-628-2734,WINN,Randolph Williams,1401 Maple Street,,Winnfield,LA,71483,318-628-2734,W,M,D,240,03/25/2012,03/24/2008,Mr. Williams -Police Juror,District 1,P. O. Box 951,,Winnfield,LA,71483,318-628-5824,WINN,Phillip Evans,117 Eugene Evans Rd.,,St. Maurice,LA,71457,318-646-2045,B,M,D,245,01/08/2012,01/14/2008,Mr. Evans -Police Juror ,District 2 ,P. O. Box 951,,Winnfield,LA,71483-0951 ,318-628-5824,WINN,"Deionne ""Dee"" Carpenter",P.O. Box 1291,,Winnfield,LA,71483,318-628-2921,B,F,,245,01/08/2012,01/14/2008,Ms. Carpenter -Police Juror ,District 3 ,P. O. Box 951,,Winnfield,LA,71483-0951 ,318-628-5824,WINN,Doris Leeper,2960 Coldwater Road,,Winnfield,LA,71483,318-727-9470,W,F,D,245,01/08/2012,01/14/2008,Ms. Leeper -Police Juror ,District 4 ,P. O. Box 951,,Winnfield,LA,71483-0951 ,318-628-5824,WINN,Jack McFarland,150 Douglas Garrett Road,,Winnfield,LA,71483,318-727-4564,W,M,R,245,01/08/2012,01/14/2008,Mr. McFarland -Police Juror ,District 5 ,P. O. Box 951,,Winnfield,LA,71483-0951 ,318-628-5824,WINN,Kirk Miles,827 Aunt Maries Rd.,,Dodson,LA,71422,318-628-5408,W,M,D,245,01/08/2012,01/14/2008,Mr. Miles -Police Juror ,District 6 ,P. O. Box 951,,Winnfield,LA,71483-0951 ,318-628-5824,WINN,Dewayne Sanders,P.O. Box 199,,Joyce,LA,71440,318-628-3306,W,M,D,245,01/08/2012,01/14/2008,Mr. Sanders -Police Juror ,District 7 ,P. O. Box 951,,Winnfield,LA,71483-0951 ,318-628-5824,WINN,David Shelton,2909 Hwy. 1228,,Winnfield,LA,71483,318-628-6616,W,M,D,245,01/08/2012,01/14/2008,Mr. Shelton -City Judge ,"City Court, City of Winnfield ",P. O. Box 908,,Winnfield,LA,71483,318-628-4844,WINN,"Anastasia ""Staci"" Wiley",P. O. Box 132,,Winnfield,LA,71483,318-628-3825,W,F,D,250,12/31/2014,01/01/2009,Judge Wiley -City Marshal ,"City Court, City of Winnfield ",P. O. Box 908,,Winnfield,LA,71483,318-628-3900,WINN,Sidney Walton,1606 Maple St.,,Winnfield,LA,71483,318-628-2440,W,M,D,250,12/31/2014,01/01/2009,Marshal Walton -Member of School Board ,District 1 ,P. O. Drawer 430,,Winnfield,LA,71483,318-628-6936,WINN,David E. Procell,P.O. Box 226,,Joyce,LA,71440,318-628-6586,W,M,D,255,12/31/2010,01/01/2007,Mr. Procell -Member of School Board ,District 2 ,P. O. Drawer 430,,Winnfield,LA,71483,318-628-6936,WINN,Dianne Carpenter Peters,P.O. Box 121,,Winnfield,LA,71483,318-628-0528,B,F,,255,12/31/2010,01/01/2007,Mr. Peters -Member of School Board ,District 3 ,P. O. Drawer 430,,Winnfield,LA,71483,318-628-6936,WINN,Marsha Booker Goff,702 Hodges St.,,Winnfield,LA,71483,318-628-4002,B,F,D,255,12/31/2010,01/01/2007,Ms. Goff -Member of School Board ,District 4 ,P. O. Drawer 430,,Winnfield,LA,71483,318-628-6936,WINN,Rosa Williams,P.O. Box 47,,Winnfield,LA,71483,318-628-6394,B,F,D,255,12/31/2010,01/01/2007,Ms. Williams -Member of School Board ,District 5 ,P. O. Drawer 430,,Winnfield,LA,71483,318-628-6936,WINN,Christy Harrell,133 Dogwood Dr.,,Winnfield,LA,71483,318-628-1920,W,F,D,255,12/31/2010,01/01/2007,Ms. Harrell -Member of School Board ,District 6 ,P. O. Drawer 430,,Winnfield,LA,71483,318-628-6936,WINN,"""B.R."" Audirsch",904 Center St.,,Winnfield,LA,71483,318-628-3608,W,M,R,255,12/31/2010,01/01/2007,Mr. Audirsch -Member of School Board ,District 7 ,P. O. Drawer 430,,Winnfield,LA,71483,318-628-6936,WINN,Donald L. Richardson,849 E. Thomas Rd/,,Winnfield,LA,71483,318-727-8754,W,M,R,255,12/31/2010,01/01/2007,Mr. Richardson -Member of School Board ,District 8 ,P. O. Drawer 430,,Winnfield,LA,71483,318-628-6936,WINN,Rodger Smith,7057 Gum Springs Rd.,,Atlanta,LA,71404,318-648-0331,W,M,R,255,12/31/2010,01/01/2007,Mr. Smith -Member of School Board ,District 9 ,P. O. Drawer 430,,Winnfield,LA,71483,318-628-6936,WINN,Todd H. Martin,P.O. Box1392,,Winnfield,LA,71483,318-727-9291,W,M,D,255,12/31/2010,01/01/2007,Mr. Martin -Member of School Board ,District 10 ,P. O. Drawer 430,,Winnfield,LA,71483,318-628-6936,WINN,Joe Lynn Browning,231 Browning Rd.,,Dodson,LA,71422,318-628-5598,W,M,D,255,12/31/2010,01/01/2007,Mr. Browning -Member of School Board ,District 11 ,P. O. Drawer 430,,Winnfield,LA,71483,318-628-6936,WINN,"Gary Michael ""Mickey"" Parker, ",2285 Buckskin Rd.,,Sikes,LA,71473,318-628-5180,,,,255,,02/01/2010,Mr. Parker -Justice of the Peace ,Justice of the Peace Ward 6 ,163 Lynn McCoy Rd.,,Winnfield,LA,71483,318-628-5375,WINN,Ricky T. White,287 Manuel Long Rd.,,Winnfield,LA,71483,318-648-6970,W,M,,265,12/31/2014,01/01/2009,Mr. White -Justice of the Peace ,Justice of the Peace Ward 7 ,849 E. Thomas Rd.,,Winnfield,LA,71483,318-727-8754,WINN,Brenda Kae Richardson,849 E. Thomas Rd.,,Winnfield,LA,71483,318-727-8754,W,F,R,265,12/31/2014,01/01/2009,Ms. Richardson -Justice of the Peace ,Justice of the Peace Ward 8 ,148 School Rd.,,Atlanta,LA,71404,318-628-2619,WINN,Jenny Geisman,122 New Mars Hill Rd,,Atlanta,LA,71404,318-646-9415,W,F,R,265,12/31/2014,01/01/2009,Ms. Geisman -Justice of the Peace ,Justice of the Peace Ward 9 ,163 Hilltop Rd.,,Goldonna,LA,71031,318-727-9279,WINN,Tammy M. Griffin,163 Hilltop Rd.,,Goldonna,LA,71031,318-727-9279,W,F,R,265,12/31/2014,01/01/2009,Ms. Griffin -Justice of the Peace ,Justice of the Peace Ward 10 ,1992 Carter Crossing Rd.,,Dodson,LA,71422,318-628-5279,WINN,Shirley Tubbs,446 Durbin Rd.,,Dodson,LA,71422,318-628-2224,W,F,D,265,12/31/2014,01/01/2009,Ms. Tubbs -Justice of the Peace ,Justice of the Peace Ward 11 ,3231 Hwy. 34,,Dodson,LA,71422,318-628-7451,WINN,Nelda Murphy,3231 Hwy. 34,,Dodson,LA,71422,318-628-7451,W,F,D,265,12/31/2014,01/01/2009,Ms. Murphy -Justice of the Peace ,Justice of the Peace Ward 12 ,201 D. Prescott Rd.,,Winnfield,LA,71483,318-628-6555,WINN,"J. E. ""Roy"" Jones",201 D. Prescott Rd.,,Winnfield,LA,71483,318-628-6555,W,M,D,265,12/31/2014,01/01/2009,Mr. Jones -Constable ,Justice of the Peace Ward 6 ,146 Gene Keen Rd.,,Winnfield,LA,71483,318-628-6528,WINN,Mark C. Johns,653 Hwy. 472,,Winnfield,LA,71483,318-628-6582,W,M,D,267,12/31/2014,01/01/2009 -Constable ,Justice of the Peace Ward 7 ,1189 E. Thomas Rd.,,Winnfield,LA,71483,318-727-9608,WINN,"Chad Blundell, ",256 Blundell Rd.,,Winnfield,LA,71483-7628,318-727-8697,W,M,D,267,,02/15/2010 -Constable ,Justice of the Peace Ward 7 ,1189 E. Thomas Rd.,,Winnfield,LA,71483,318-727-9608,WINN,Kenneth Chad Blundell,P.O. Drawer 951,,Winnfield,LA,71483-0951 ,318-628-5824,,,,267,,09/01/2009,Mr. Blundell -Constable ,Justice of the Peace Ward 8 ,478 Hwy. 1229,,Atlanta,LA,71404,318-628-2344,WINN,John T. Williams,478 Hwy. 1229,,Atlanta,LA,71404,318-628-2344,W,M,D,267,12/31/2014,01/01/2009,Mr. Williams -Constable ,Justice of the Peace Ward 9 ,P.O. Box 60,,Calvin,LA,71410,318-727-9667,WINN,A. D. Abels,P.O. Box 60,,Calvin,LA,71410,318-727-9667,W,M,O,267,12/31/2014,01/01/2009,Mr. Abels -Constable ,Justice of the Peace Ward 10 ,1992 Carter Crossing Rd.,,Dodson,LA,71422,318-628-5279,WINN,Ernest Tubbs,446 Durbin Rd.,,Dodson,LA,71422,318-628-2224,W,M,D,267,12/31/2014,01/01/2009,Mr. Tubbs -Constable ,Justice of the Peace Ward 11 ,574 Shell Rd.,,Sikes,LA,71473,318-628-2857,WINN,Kaye Frances Willis,6460 Hwy. 499,,Sikes,LA,71473,318-628-5686,W,F,,267,12/31/2014,02/23/2009,Ms. Willis -Constable ,Justice of the Peace Ward 12 ,P.O. Drawer 951,,Winnfield,LA,71483-0951 ,318-628-6155,WINN,Kenneth Spangler,P.O. Box 252,,Joyce,LA,71440,318-628-5946,W,M,D,267,12/31/2014,01/01/2009,Mr. Spangler -Mayor ,City of Winnfield ,P. O. Box 509,,Winnfield,LA,,318-628-3939,WINN,Ronald Goff,P.O. Drawer 312,,Winnfield,LA,71483,318-628-4002,,,,300,,11/19/2009,Mayor Goff -Mayor ,Village of Atlanta ,P. O. Box 268,,Atlanta,LA,,318-628-3035,WINN,Horace Ray Teal,596 Hwy. 3136,,Atlanta,LA,71404,318-628-7284,W,M,O,300,12/31/2012,01/01/2009,Mayor Teal -Mayor ,Village of Calvin ,P. O. Box 180,,Calvin,LA,,318-727-9276,WINN,Bob Carpenter,P.O. Box 25,,Calvin,LA,71410,318-727-8772,W,M,D,300,12/31/2010,01/01/2007,Mr. Carpenter -Mayor ,Village of Dodson ,P. O. Box 86,,Dodson,LA,,318-628-3775,WINN,Loyd E. Vines,202 N. Third St.,,Dodson,LA,71422,318-628-5568,W,M,D,300,12/31/2010,01/01/2007,Mr. Loyd -Mayor ,Village of Sikes ,P. O. Box 116,,Sikes,LA,,318-628-7128,WINN,Kenneth Ray Womack,P.O. Box 73,,Sikes,LA,71473,318-628-7968,W,M,,300,12/31/2012,01/01/2009,Mr. Womack -Chief of Police ,City of Winnfield ,P. O. Box 509,,Winnfield,LA,71483,318-628-3939,WINN,Johnny Ray Carpenter,P.O. Box 694,,Winnfield,LA,71483,318-628-2921,B,M,,305,06/30/2010,07/01/2006,Chief Carpenter -Chief of Police ,Village of Atlanta ,P. O. Box 268,,Atlanta,LA,71404,318-628-3450,WINN,"Raymond V. Whittington, Sr.",3776 Packton-Alexandria Rd.,,Atlanta,LA,71404,318-628-3450,W,M,O,305,12/31/2012,01/01/2009,Mr. Whittington -Chief of Police ,Village of Calvin ,P. O. Box 180,,Calvin,LA,71410,318-727-9276,WINN,Ronald D. Canerday,P.O. Box 3,,Calvin,LA,71410,318-727-8729,W,M,D,305,12/31/2010,01/01/2007,Mr. Canerday -Chief of Police ,Village of Dodson ,P. O. Box 86,,Dodson,LA,71422,318-628-3775,WINN,"Vernon ""Pat"" Ashley",P.O. Box 21,,Dodson,LA,71422,318-628-9886,W,M,D,305,12/31/2010,01/01/2007,Mr. Ashley -Alderman ,Village of Atlanta ,P. O. Box 268,,Atlanta,LA,71404,318-628-3450,WINN,Angela G. Hanson,143 Hanson Loop,,Atlanta,LA,71404,318-628-5595,W,F,O,310,12/31/2012,01/01/2009,Ms. Hanson -Alderman ,Village of Atlanta ,P. O. Box 268,,Atlanta,LA,71404,318-628-3450,WINN,C.O. Spikes,184 Spikes Ln.,,Atlanta,LA,71404,318-628-6607,W,M,R,310,12/31/2012,01/01/2009,Mr. Spikes -Alderman ,Village of Atlanta ,P. O. Box 268,,Atlanta,LA,71404,318-628-3450,WINN,Deborah Whittington,3776 Packton-Alexandria Rd.,,Atlanta,LA,71404,318-628-3450,W,F,O,310,12/31/2012,01/01/2009,Ms. Whittington -Alderman ,Village of Calvin ,P. O. Box 180,,Calvin,LA,71410,318-727-9276,WINN,Bobby D. Canerday,P.O. Box 240,,Calvin,LA,71410,318-727-9233,W,M,D,310,12/31/2010,01/01/2007,Mr. Canerday -Alderman ,Village of Calvin ,P. O. Box 180,,Calvin,LA,71410,318-727-9276,WINN,"""Jeff"" Canerday",P.O. Box 121,,Calvin,LA,71410,318-727-8439,W,M,R,310,12/31/2010,01/01/2007,Mr. Canerday -Alderman ,Village of Calvin ,P. O. Box 180,,Calvin,LA,71410,318-727-9276,WINN,Mike Carpenter,P.O. Box 54,,Calvin,LA,71410,318-727-4767,W,M,D,310,12/31/2010,01/01/2007,Mr. Carpenter -Alderman ,Village of Dodson ,P. O. Box 86,,Dodson,LA,71422,318-628-3775,WINN,Verna Hollingsworth,P.O. Box 205,,Dodson,LA,71422,318-628-5162,B,F,D,310,12/31/2010,01/01/2007,Ms. Hollingsworth -Alderman ,Village of Dodson ,P. O. Box 86,,Dodson,LA,71422,318-628-3775,WINN,Karla Shively,P.O. Box 188,,Dodson,LA,71422,318-628-6018,W,F,D,310,12/31/2010,01/01/2007,Ms. Shively -Alderman ,Village of Dodson ,P. O. Box 86,,Dodson,LA,71422,318-628-3775,WINN,Deidre Knapp Stapleton,P.O. Box 251,,Dodson,LA,71422,318-628-5355,W,F,O,310,12/31/2010,01/01/2007,Ms. Stapleton -Alderman ,Village of Sikes ,P. O. Box 116,,Sikes,LA,71473,318-628-2634,WINN,Reba P. Berry,P.O. Box 75,,Sikes,LA,71473,318-648-6918,W,F,,310,12/31/2012,01/01/2009,Ms. Perry -Alderman ,Village of Sikes ,P. O. Box 116,,Sikes,LA,71473,318-628-2634,WINN,Michael Riffe,P.O. Box 111,,Sikes,LA,71473,318-628-2214,W,M,,310,12/31/2012,01/01/2009,Mr. Riffe -Alderman ,Village of Sikes ,P. O. Box 116,,Sikes,LA,71473,318-628-2634,WINN,Rita Wroten,P.o. Box 211,,Sikes,LA,71473,318-648-2764,W,F,,310,12/31/2012,01/01/2009,Ms. Wroten -Council Member ,"District 1, City of Winnfield ",P. O. Box 509,,Winnfield,LA,71483,318-628-3939,WINN,"Willie ""Sunset"" Holden",213 West Jones St.,,Winnfield,LA,71483,318-628-5987,B,M,D,310,06/30/2010,07/01/2006,Mr. Holden -Council Member ,"District 2, City of Winnfield ",P. O. Box 509,,Winnfield,LA,71483,318-628-3939,WINN,"Jeffery Hamilton, ",P.O. Box 509,,Winnfield,LA,71483,318-648-2941,,,,310,,12/08/2009,Mr. Hamilton -Council Member ,"District 3, City of Winnfield ",P. O. Box 509,,Winnfield,LA,71483,318-628-3939,WINN,"Sarah Junkin, ",300 Wren St.,,Winnfield,LA,71483-2662,318-648-6951,W,F,D,310 -Council Member ,"District 3, City of Winnfield ",P. O. Box 509,,Winnfield,LA,71483,318-628-3939,WINN,Sarah Russell Junkin,300 Wren St.,,Winnfield,LA,71483,318-648-6951,W,F,D,310,06/30/2010,07/01/2006,Ms. Junkin -Council Member ,"District 4, City of Winnfield ",P. O. Box 509,,Winnfield,LA,71483,318-628-3939,WINN,"""Matt"" Walton",1100 Maple St.,,Winnfield,LA,71483,318-628-6358,W,M,R,310,06/30/2010,07/01/2006,Mr. Walton -Council Member ,"District 5, City of Winnfield ",P. O. Box 509,,Winnfield,LA,71483,318-628-3939,WINN,"Kenneth ""Kenny"" Caldwell",203 East Boundary St.,,Winnfield,LA,71483,318-628-2350,W,M,D,310,06/30/2010,07/01/2006,Mr. Caldwell \ No newline at end of file +Office Title,Office Description,Office Address 1,Office Address 2,City,State,Zip Code,Office Phone,Parish,Candidate Name,Candidate Address 1,Candidate Address 2,City,State,Zip Code,,Phone,Ethnicity,Sex,Party Code,Office Level,Expiration Date,Commissioned Date,Salutation +DSCC Member ," 1st Representative District, Office ""A"" ",,,,LA,,,,Helen Godfrey-Smith,P.O. Box 3261,,Shreveport,LA,71133,5,,,,,52,,4/2/2009,Ms. Godfrey-Smith +DSCC Member ," 1st Representative District, Office ""B"" ",,,,LA,,,,Richard R. Anderson,7495 Colquitt Rd.,,Keithville,LA,71047-5575,10,972-398-6713,B,M,D,52,3/8/2012,3/8/2008, +DSCC Member ," 2nd Representative District, Office ""A"" ",,,,LA,,,,Lola B. May,P. O. Box 38093,,Shreveport,LA,71133-8093,10,318-222-6519,B,F,D,52,3/8/2012,3/8/2008, +DSCC Member ," 2nd Representative District, Office ""B"" ",,,,LA,,,,"""Rudy"" Morton",2602 Parham Dr.,,Shreveport,LA,71109-3016,10,318-635-4576,B,M,D,52,3/8/2012,3/8/2008, +DSCC Member ," 3rd Representative District, Office ""A"" ",,,,LA,,,,Barbara Norton,3821 Morrow St.,,Shreveport,LA,71109-7647,10,318-635-2923,B,F,D,52,3/8/2012,3/8/2008, +DSCC Member ," 3rd Representative District, Office ""B"" ",,,,LA,,,,Herschel C. Brown,249 W. 77th St.,,Shreveport,LA,71106-4221,10,318-687-7097,,,D,52,3/8/2012,3/8/2008, +DSCC Member ," 4th Representative District, Office ""A"" ",,,,LA,,,,June Phillips,3761 Bobbitt Pl.,,Shreveport,LA,71107-3801,10,318-221-5957,B,F,D,52,3/8/2012,3/8/2008, +DSCC Member ," 4th Representative District, Office ""B"" ",,,,LA,,,,Larry Ferdinand,3436 Galaxy Ln.,,Shreveport,LA,71119-5002,10,318-636-1555,,,D,52,3/8/2012,3/8/2008, +DSCC Member ," 5th Representative District, Office ""A"" ",,,,LA,,,,Patti Cox,"8501 Millicent Way, Apt. 2073",,Shreveport,LA,71115-2253,10,318-797-6950,W,F,D,52,3/8/2012,3/8/2008, +DSCC Member ," 5th Representative District, Office ""B"" ",,,,LA,,,,Steve G. Kirkikis,310 Orleans Dr.,,Shreveport,LA,71106-6224,10,318-861-1582,,,D,52,3/8/2012,3/8/2008,Mr. Kirkikis +DSCC Member ," 6th Representative District, Office ""A"" ",,,,LA,,,,Adrienne Critcher,817 Ontario St.,,Shreveport,LA,71106-1118,10,318-869-3930,W,F,D,52,3/8/2012,3/8/2008, +DSCC Member ," 6th Representative District, Office ""B"" ",,,,LA,,,,"""Greg"" P. Hebert",843 Gladstone Blvd.,,Shreveport,LA,71104,5,318-865-4007,W,M,D,52,3/8/2012,3/8/2008, +DSCC Member ," 7th Representative District, Office ""A"" ",,,,LA,,,,Candie Cox,300 High School St.,,Mansfield,LA,71052,5,318-872-5731,B,F,D,52,3/8/2012,3/8/2008, +DSCC Member ," 7th Representative District, Office ""B"" ",,,,LA,,,,"Robert ""Bob"" Brown",10127 Freedoms Way,,Keithville,LA,71047-8950,10,318-458-6566,W,M,D,52,3/8/2012,3/8/2008, +DSCC Member ," 8th Representative District, Office ""A"" ",,,,LA,,,,"Rosemarie ""Rosie"" Salinas",139 Lakewood Point Dr.,,Bossier City,LA,71111-2073,10,318-747-9744,W,F,D,52,3/8/2012,3/8/2008, +DSCC Member ," 8th Representative District, Office ""B"" ",,,,LA,,,,Nyle Politz,29 Wilshire Dr.,,Bossier City,LA,71111,5,,,,,52,,7/24/2008, +DSCC Member ," 9th Representative District, Office ""A"" ",,,,LA,,,,Nancy Cook,1321 Whitehall Dr.,,Bossier City,LA,71112-4549,10,318-742-8714,W,F,D,52,3/8/2012,3/8/2008, +DSCC Member ," 9th Representative District, Office ""B"" ",,,,LA,,,,Morgan Johnson,109 Boyce Circle,,Benton,LA,71006,5,318-965-2090,W,M,D,52,3/8/2012,3/8/2008, +DSCC Member ," 10th Representative District, Office ""A"" ",,,,LA,,,,Fayrine Kennon-Gilbert,P.O. Box 605,,Minden,LA,71058,5,318-377-2902,B,F,D,52,3/8/2012,3/8/2008, +DSCC Member ," 10th Representative District, Office ""B"" ",,,,LA,,,,Rodney D. Seamster,617 Durwood Dr.,,Minden,LA,71055,5,,,,,52,,7/24/2008,Mr. Seamster +DSCC Member ," 11th Representative District, Office ""A"" ",,,,LA,,,,,,,,,,0,,,,,52,,, +DSCC Member ," 11th Representative District, Office ""B"" ",,,,LA,,,,William R. Sumlin,P. O. Box 122,,Simsboro,LA,71275,5,318-263-2195,W,M,D,52,3/8/2012,3/8/2008, +DSCC Member ," 12th Representative District, Office ""A"" ",,,,LA,,,,Susan Singleton,2300 Royal Oaks Dr.,,Ruston,LA,71270,5,,,,,52,,7/24/2008, +DSCC Member ," 12th Representative District, Office ""B"" ",,,,LA,,,,Allen Herbert,104 Belle Haven Rd.,,Ruston,LA,71270,5,,,,,52,,7/24/2008, +DSCC Member ," 13th Representative District, Office ""A"" ",,,,LA,,,,Gay Maxwell,2427 Hwy. 505,,Jonesboro,LA,71251,5,318-259-6607,W,F,D,52,3/8/2012,3/8/2008, +DSCC Member ," 13th Representative District, Office ""B"" ",,,,LA,,,,Bobby L. Culpepper,4500 Walker Rd.,,Jonesboro,LA,71251,5,318-259-4184,W,M,D,52,3/8/2012,3/8/2008, +DSCC Member ," 14th Representative District, Office ""A"" ",,,,LA,,,,Barbara L. Mansfield,P.O.Box 72,,Bastrop,LA,71221,5,318-281-2356,B,F,D,52,3/8/2012,3/8/2008, +DSCC Member ," 14th Representative District, Office ""B"" ",,,,LA,,,,Travis Holley,P.O. Drawer 590,,Bastrop,LA,71221,5,,,,,52,,7/24/2008, +DSCC Member ," 15th Representative District, Office ""A"" ",,,,LA,,,,Billye Burns,219 Jackson St.,,West Monroe,LA,71291,5,318-323-5210,B,F,D,52,3/8/2012,3/8/2008, +DSCC Member ," 15th Representative District, Office ""B"" ",,,,LA,,,,Dalfred Burns,219 Jackson St.,,West Monroe,LA,71291,5,,,,,52,,7/24/2008, +DSCC Member ," 16th Representative District, Office ""A"" ",,,,LA,,,,Brenda Hensley Smith,2605 Crestmont St.,,Monroe,LA,71201,5,318-387-2346,W,F,D,52,3/8/2012,3/8/2008, +DSCC Member ," 16th Representative District, Office ""B"" ",,,,LA,,,,Fred Huenefeld,2100 Pargoud Blvd.,,Monroe,LA,71201,5,318-322-1035,W,M,D,52,3/8/2012,3/8/2008, +DSCC Member ," 17th Representative District, Office ""A"" ",,,,LA,,,,Millie Atkins,4312 Barlow St.,,Monroe,LA,71203,5,318-387-4546,B,F,D,52,3/8/2012,3/8/2008, +DSCC Member ," 17th Representative District, Office ""B"" ",,,,LA,,,,"Rodney McFarland, Sr.",1017 Ouachita Ave.,,Monroe,LA,71201,5,318-323-0163,B,M,D,52,3/8/2012,3/8/2008, +DSCC Member ," 18th Representative District, Office ""A"" ",,,,LA,,,,Linda D. Phillips,P.O. Box 917,,Port Allen,LA,70767,5,225-749-3504,W,F,D,52,3/8/2012,3/8/2008, +DSCC Member ," 18th Representative District, Office ""B"" ",,,,LA,,,,"Rawlston D. Phillips, Jr.",P. O. Box 917,,Port Allen,LA,70767,5,225-749-3504,W,M,D,52,3/8/2012,3/8/2008, +DSCC Member ," 19th Representative District, Office ""A"" ",,,,LA,,,,"""Sha"" Carter",511 LaSalle St.,,Tallulah,LA,71282,5,318-574-8393,W,F,D,52,3/8/2012,3/8/2008, +DSCC Member ," 19th Representative District, Office ""B"" ",,,,LA,,,,"George B. Tennant, Sr.",P.O. Box 959,,Rayville,LA,71269,5,318-728-5808,B,M,D,52,3/8/2012,3/8/2008, +DSCC Member ," 20th Representative District, Office ""A"" ",,,,LA,,,,Jane Roberts,P. O. Box 1265,,Columbia,LA,71418,5,318-649-2760,W,F,D,52,3/8/2012,3/8/2008, +DSCC Member ," 20th Representative District, Office ""B"" ",,,,LA,,,,"""Greg"" Richardson",P. O. Box 550,,Columbia,LA,71418,5,318-649-0105,W,M,D,52,3/8/2012,3/8/2008, +DSCC Member ," 21st Representative District, Office ""A"" ",,,,LA,,,,Anna B. Ferguson,1112 2nd St.,,Ferriday,LA,71334,5,318-757-1770,W,F,D,52,3/8/2012,3/8/2008, +DSCC Member ," 21st Representative District, Office ""B"" ",,,,LA,,,,C. Travis Johnson,211 1/2 Doty Garden,,Ferriday,LA,71334,5,,,,,52,,7/24/2008, +DSCC Member ," 22nd Representative District, Office ""A"" ",,,,LA,,,,,,,,,,0,,,,,52,,, +DSCC Member ," 22nd Representative District, Office ""B"" ",,,,LA,,,,Bobby W. Deen,P. O. Box 688,,Montgomery,LA,71454,5,318-646-3351,W,M,D,52,3/8/2012,3/8/2008, +DSCC Member ," 23rd Representative District, Office ""A"" ",,,,LA,,,,Mary Bonier,242 Carroll Camp Rd.,,Saline,LA,71070,5,318-875-2426,B,F,D,52,3/8/2012,3/8/2008, +DSCC Member ," 23rd Representative District, Office ""B"" ",,,,LA,,,,Edwin Dunahoe,120 Amulet St.,,Natchitoches,LA,71457,5,318-357-0543,W,M,D,52,3/8/2012,3/8/2008, +DSCC Member ," 24th Representative District, Office ""A"" ",,,,LA,,,,Gloria H. Ruffin,P. O. Box 534,,Many,LA,71449,5,318-256-3135,B,F,D,52,3/8/2012,3/8/2008, +DSCC Member ," 24th Representative District, Office ""B"" ",,,,LA,,,,"""Randy"" Sandel",1854 Ebenezer Rd.,,Florien,LA,71429,5,318-586-7563,W,M,D,52,3/8/2012,3/8/2008, +DSCC Member ," 25th Representative District, Office ""A"" ",,,,LA,,,,Leona Venson,P.O. Box 105,,Boyce,LA,71409,5,318-793-2845,B,F,D,52,3/8/2012,3/8/2008, +DSCC Member ," 25th Representative District, Office ""B"" ",,,,LA,,,,"Chris J. Roy, Jr.",504 Walden Dr.,,Alexandria,LA,71303,5,318-442-7365,W,M,D,52,3/8/2012,3/8/2008, +DSCC Member ," 26th Representative District, Office ""A"" ",,,,LA,,,,Mary L. Wardsworth,3223 Redwood Dr.,,Alexandria,LA,71301,5,318-448-4036,B,F,D,52,3/8/2012,3/8/2008, +DSCC Member ," 26th Representative District, Office ""B"" ",,,,LA,,,,Herbert B. Dixon,2701 Third St.,,Alexandria,LA,71302,5,318-443-8274,B,M,D,52,3/8/2012,3/8/2008, +DSCC Member ," 27th Representative District, Office ""A"" ",,,,LA,,,,Lauren Saucier Hill,5601 Pinekraft Dr.,,Pineville,LA,71360,5,318-561-2631,W,F,D,52,3/8/2012,3/8/2008, +DSCC Member ," 27th Representative District, Office ""B"" ",,,,LA,,,,Rick Farrar,1603 Melrose,,Pineville,LA,71360,5,,,,,52,,7/24/2008, +DSCC Member ," 28th Representative District, Office ""A"" ",,,,LA,,,,Joyce Laborde,7124 Hwy. 29,,Cotton Port,LA,71327,5,,,,,52,,7/24/2008, +DSCC Member ," 28th Representative District, Office ""B"" ",,,,LA,,,,Walter J. Laborde,7124 Hwy. 29,,Cottonport,LA,71327,5,318-876-2739,W,M,D,52,3/8/2012,3/8/2008, +DSCC Member ," 29th Representative District, Office ""A"" ",,,,LA,,,,Sharon Weston Broome,P. O. Box 52783,,Baton Rouge,LA,70892,5,225-275-7995,B,F,D,52,3/8/2012,3/8/2008, +DSCC Member ," 29th Representative District, Office ""B"" ",,,,LA,,,,Trey Ourso,1445 Lakeside,,Baton Rouge,LA,70802,5,,,,,52,,7/24/2008, +DSCC Member ," 30th Representative District, Office ""A"" ",,,,LA,,,,Laura Clark,1037 Hood Ln.,,Leesville,LA,71446,5,337-239-3533,B,F,D,52,3/8/2012,3/8/2008, +DSCC Member ," 30th Representative District, Office ""B"" ",,,,LA,,,,Alton Bailey,147 Powell Dr.,,Leesville,LA,71446,5,337-238-2936,B,M,D,52,3/8/2012,3/8/2008, +DSCC Member ," 31st Representative District, Office ""A"" ",,,,LA,,,,Gail Fazzio,207 Acomb Dr.,,Lafayette,LA,70509,5,,,,,52,,7/24/2008, +DSCC Member ," 31st Representative District, Office ""B"" ",,,,LA,,,,Stephen Handwerk,205 Pinto St.,,Lafayette,LA,70506,5,337-991-0294,W,M,D,52,3/8/2012,3/8/2008, +DSCC Member ," 32nd Representative District, Office ""A"" ",,,,LA,,,,"""Pat"" Jones",121 Thom St.,,Oakdale,LA,71463,5,318-335-1353,W,F,D,52,3/8/2012,3/8/2008, +DSCC Member ," 32nd Representative District, Office ""B"" ",,,,LA,,,,Craig Jones,714 Maple St.,,Oakdale,LA,71463,5,318-335-4140,W,M,D,52,3/8/2012,3/8/2008, +DSCC Member ," 33rd Representative District, Office ""A"" ",,,,LA,,,,Myra Wilburn Bennett,127 Roberta Dr.,,Sulphur,LA,70663,5,337-528-9452,W,F,D,52,3/8/2012,3/8/2008, +DSCC Member ," 33rd Representative District, Office ""B"" ",,,,LA,,,,Allen Joyner,524 Bowie St.,,Sulphur,LA,70663,5,337-764-3948,W,M,D,52,3/8/2012,3/8/2008, +DSCC Member ," 34th Representative District, Office ""A"" ",,,,LA,,,,Edwina Medearis-Harrison,P. O. Box 470,,Lake Charles,LA,70602,5,337-540-5403,B,F,D,52,3/8/2012,3/8/2008, +DSCC Member ," 34th Representative District, Office ""B"" ",,,,LA,,,,Michael McHale,1528 Kirkman,,Lake Charles,LA,70601,5,337-990-0093,W,M,D,52,3/8/2012,3/8/2008, +DSCC Member ," 35th Representative District, Office ""A"" ",,,,LA,,,,Marilyn Cox,583 Santa Anna Dr.,,Lake Charles,LA,70611,5,337-855-6766,W,F,D,52,3/8/2012,3/8/2008, +DSCC Member ," 35th Representative District, Office ""B"" ",,,,LA,,,,"""Terry"" Fowler",3731 Paul White Rd.,,Lake Charles,LA,70611,5,337-855-3360,W,M,D,52,3/8/2012,3/8/2008, +DSCC Member ," 36th Representative District, Office ""A"" ",,,,LA,,,,Mary Leach Werner,2420 Oak Alley Dr.,,Lake Charles,LA,70605,5,337-477-7320,W,F,D,52,3/8/2012,3/8/2008, +DSCC Member ," 36th Representative District, Office ""B"" ",,,,LA,,,,"""Mark"" Zimmerman",682 Lakewood Dr.,,Lake Charles,LA,70605,5,337-474-1644,W,M,D,52,3/8/2012,3/8/2008, +DSCC Member ," 37th Representative District, Office ""A"" ",,,,LA,,,,,,,,,,0,,,,,52,,, +DSCC Member ," 37th Representative District, Office ""B"" ",,,,LA,,,,Michael Cassidy,603 Lucy St.,,Jennings,LA,70546,5,,,,,52,,4/2/2009,Mr. Cassidy +DSCC Member ," 38th Representative District, Office ""A"" ",,,,LA,,,,Jennifer Vidrine,P. O. Box 795,,Ville Platte,LA,70586,5,337-831-0831,B,F,D,52,3/8/2012,3/8/2008, +DSCC Member ," 38th Representative District, Office ""B"" ",,,,LA,,,,Dirk Deville,P. O. Box 1058,,Ville Platte,LA,70586,5,337-363-0390,W,M,D,52,3/8/2012,3/8/2008, +DSCC Member ," 39th Representative District, Office ""A"" ",,,,LA,,,,Shellie Badon,P. O. Box 651,,Carencro,LA,70520,5,337-412-2733,W,F,D,52,3/8/2012,3/8/2008, +DSCC Member ," 39th Representative District, Office ""B"" ",,,,LA,,,,,,,,,,0,,,,,52,,, +DSCC Member ," 40th Representative District, Office ""A"" ",,,,LA,,,,Anita Gradnigo,174 Auzenne St.,,Opelousas,LA,70570,5,,,,,52,,7/24/2008, +DSCC Member ," 40th Representative District, Office ""B"" ",,,,LA,,,,Charles Renaud,126 Emile St.,,Opelousas,LA,70570,5,,,,,52,,4/2/2009, +DSCC Member ," 41st Representative District, Office ""A"" ",,,,LA,,,,,,,,,,0,,,,,52,,, +DSCC Member ," 41st Representative District, Office ""B"" ",,,,LA,,,,Jack Burson,1350 Duck St.,,Eunice,LA,70535,5,,,,,52,,7/24/2008, +DSCC Member ," 42nd Representative District, Office ""A"" ",,,,LA,,,,,,,,,,0,,,,,52,,, +DSCC Member ," 42nd Representative District, Office ""B"" ",,,,LA,,,,"James ""Rev."" Proctor",305 W. 9th St.,,Crowley,LA,70526,5,337-783-8094,B,M,D,52,3/8/2012,3/8/2008, +DSCC Member ," 43rd Representative District, Office ""A"" ",,,,LA,,,,"Alexia ""Lexi"" Thompson",4416 Johnston St. Ste 1-F,,Lafayette,LA,70503,5,337-988-4375,B,F,D,52,3/8/2012,3/8/2008, +DSCC Member ," 43rd Representative District, Office ""B"" ",,,,LA,,,,"Frank ""Art"" Flynn",103 River Oak Circle,,Lafayette,LA,70508,5,337-989-8141,W,M,D,52,3/8/2012,3/8/2008, +DSCC Member ," 44th Representative District, Office ""A"" ",,,,LA,,,,Beatrice Wilson,315 Aris Dr.,,Lafayette,LA,70501,5,,,,,52,,7/24/2008, +DSCC Member ," 44th Representative District, Office ""B"" ",,,,LA,,,,"Joseph B. ""JB"" Cormier",804 E Alexander St.,,Lafayette,LA,70501,5,,B,M,D,52,3/8/2012,3/8/2008, +DSCC Member ," 45th Representative District, Office ""A"" ",,,,LA,,,,Barbara J. Conner,P.O. Box 52216,,Lafayette,LA,70505-2216,10,337-344-4838,W,F,D,52,3/8/2012,3/8/2008, +DSCC Member ," 45th Representative District, Office ""B"" ",,,,LA,,,,John D. Bernhardt,P. O. Box 52309,,Lafayette,LA,70505,5,337-232-6510,W,M,D,52,3/8/2012,3/8/2008, +DSCC Member ," 46th Representative District, Office ""A"" ",,,,LA,,,,Espinola Alexander-Quinn,235 E. Hyacinth St.,,St. Martinville,LA,70582,5,337-394-1394,B,F,D,52,3/8/2012,3/8/2008, +DSCC Member ," 46th Representative District, Office ""B"" ",,,,LA,,,,Mardy J. Guidry,1021 Roma St.,,Breaux Bridge,LA,70517,5,337-212-4662,W,M,D,52,3/8/2012,3/8/2008, +DSCC Member ," 47th Representative District, Office ""A"" ",,,,LA,,,,Cynthia Sudduth Campisi,306 S. Hollingsworth Dr.,,Abbeville,LA,70510,5,337-893-0762,W,F,D,52,3/8/2012,3/8/2008, +DSCC Member ," 47th Representative District, Office ""B"" ",,,,LA,,,,Eugene Sellers,110 S. Hollingsworth Dr.,,Abbeville,LA,70510,5,337-893-5924,W,M,D,52,3/8/2012,3/8/2008, +DSCC Member ," 48th Representative District, Office ""A"" ",,,,LA,,,,,,,,,,0,,,,,52,,, +DSCC Member ," 48th Representative District, Office ""B"" ",,,,LA,,,,Shane Romero,438 E. Main St.,,New Iberia,LA,70560,5,,,,,52,,7/24/2008, +DSCC Member ," 49th Representative District, Office ""A"" ",,,,LA,,,,,,,,,,0,,,,,52,,, +DSCC Member ," 49th Representative District, Office ""B"" ",,,,LA,,,,,,,,,,0,,,,,52,,, +DSCC Member ," 50th Representative District, Office ""A"" ",,,,LA,,,,,,,,,,0,,,,,52,,, +DSCC Member ," 50th Representative District, Office ""B"" ",,,,LA,,,,Sam Jones,1501 Sterling Rd.,,Franklin,LA,70538,5,337-828-1530,W,M,D,52,3/8/2012,3/8/2008, +DSCC Member ," 51st Representative District, Office ""A"" ",,,,LA,,,,Anna B. Cunningham,3013 Helen Dr.,,Morgan City,LA,70380,5,985-384-1443,W,F,D,52,3/8/2012,3/8/2008, +DSCC Member ," 51st Representative District, Office ""B"" ",,,,LA,,,,Roger Dale DeHart,1353 Dr. Beatrous Rd.,,Theriot,LA,70397,5,985-879-1329,W,M,D,52,3/8/2012,3/8/2008, +DSCC Member ," 52nd Representative District, Office ""A"" ",,,,LA,,,,Arlanda J. Williams,343 Polk St.,,Houma,LA,70360-4147,10,985-853-2079,B,F,D,52,3/8/2012,3/8/2008, +DSCC Member ," 52nd Representative District, Office ""B"" ",,,,LA,,,,Patrick H. Yancey,204 Choctaw Dr.,,Houma,LA,70360-6056,10,985-853-0904,W,M,D,52,3/8/2012,3/8/2008, +DSCC Member ," 53rd Representative District, Office ""A"" ",,,,LA,,,,"Mary ""Audrey"" George",815 Funderburk Ave.,,Houma,LA,70364-1826,10,985-879-3285,W,F,D,52,3/8/2012,3/8/2008, +DSCC Member ," 53rd Representative District, Office ""B"" ",,,,LA,,,,"""S. P."" LaRussa",208 Glenhill Ln.,,Houma,LA,70363-3813,10,985-876-6161,W,M,D,52,3/8/2012,3/8/2008, +DSCC Member ," 54th Representative District, Office ""A"" ",,,,LA,,,,Carol LeBlanc,292 St. Peter St.,,Raceland,LA,70394,5,985-537-6818,W,F,D,52,3/8/2012,3/8/2008, +DSCC Member ," 54th Representative District, Office ""B"" ",,,,LA,,,,"""Jimmy"" Cantrelle",118 Cantrelle Dr.,,Raceland,LA,70394,5,985-532-6688,W,M,D,52,3/8/2012,3/8/2008, +DSCC Member ," 55th Representative District, Office ""A"" ",,,,LA,,,,Kimberly Theriot,2861 Hwy. 1,,Raceland,LA,70394,5,,,,,52,,7/24/2008, +DSCC Member ," 55th Representative District, Office ""B"" ",,,,LA,,,,Matthew Block,800 Edgewood Dr.,,Thibodaux,LA,70301,5,985-446-0418,W,M,D,52,3/8/2012,3/8/2008, +DSCC Member ," 56th Representative District, Office ""A"" ",,,,LA,,,,Judy B. Songy,8 Windsor St.,,LaPlace,LA,70068,5,985-652-9840,W,F,D,52,3/8/2012,3/8/2008, +DSCC Member ," 56th Representative District, Office ""B"" ",,,,LA,,,,"Henry A. Smith, Jr.",541 Payne St.,,Norco,LA,70079,5,504-737-1600,W,M,D,52,3/8/2012,3/8/2008, +DSCC Member ," 57th Representative District, Office ""A"" ",,,,LA,,,,"""Geri"" Broussard Baloney",P. O. Box 117,,Garyville,LA,70051,5,985-535-2889,,F,D,52,3/8/2012,3/8/2008, +DSCC Member ," 57th Representative District, Office ""B"" ",,,,LA,,,,Randal Gaines,7 Turnberry Dr.,,LaPlace,LA,70068,5,504-487-9904,B,M,D,52,3/8/2012,3/8/2008, +DSCC Member ," 58th Representative District, Office ""A"" ",,,,LA,,,,,,,,,,0,,,,,52,,, +DSCC Member ," 58th Representative District, Office ""B"" ",,,,LA,,,,Travis Turner,P.O. Box 446,,Geismar,LA,70734,5,,,,,52,,7/24/2008, +DSCC Member ," 59th Representative District, Office ""A"" ",,,,LA,,,,Rita G. Bourque,P. O. Box 71,,Gonzales,LA,70707,5,225-647-2618,W,F,D,52,3/8/2012,3/8/2008, +DSCC Member ," 59th Representative District, Office ""B"" ",,,,LA,,,,David N. Young,1433 E. Eva St.,,Gonzales,LA,70737,5,225-647-1353,W,M,D,52,3/8/2012,3/8/2008, +DSCC Member ," 60th Representative District, Office ""A"" ",,,,LA,,,,Karen St. Germain,3413 Hwy. 70,,Pierre Part,LA,70339,5,985-252-9017,W,F,D,52,3/8/2012,3/8/2008, +DSCC Member ," 60th Representative District, Office ""B"" ",,,,LA,,,,"""Tom"" Delahaye",58425 St.Clement Ave.,,Plaquemine,LA,70764,5,225-687-8924,W,M,D,52,3/8/2012,3/8/2008, +DSCC Member ," 61st Representative District, Office ""A"" ",,,,LA,,,,Aiesha Williams,1006 Waverly Dr.,,Baton Rouge,LA,70806,5,225-248-8255,B,F,D,52,3/8/2012,3/8/2008, +DSCC Member ," 61st Representative District, Office ""B"" ",,,,LA,,,,Alfred Williams,1006 Waverly Dr.,,Baton Rouge,LA,70806,5,225-346-0406,B,M,D,52,3/8/2012,3/8/2008, +DSCC Member ," 62nd Representative District, Office ""A"" ",,,,LA,,,,Cassandra Butler,P.O. Box 407,,Independence,LA,70443,5,985-878-4881,B,F,D,52,3/8/2012,3/8/2008, +DSCC Member ," 62nd Representative District, Office ""B"" ",,,,LA,,,,"Vernon ""Vern"" Blalock",2008 W. George St.,,Zachary,LA,70791,5,225-658-9138,W,M,D,52,3/8/2012,3/8/2008, +DSCC Member ," 63rd Representative District, Office ""A"" ",,,,LA,,,,Elaine G. Davis,4312 Azie Ave.,,Baker,LA,70714,5,225-774-1558,B,F,D,52,3/8/2012,3/8/2008, +DSCC Member ," 63rd Representative District, Office ""B"" ",,,,LA,,,,"Melvin ""Kip"" Holden",234 Rivercrest Ave.,,Baton Rouge,LA,70807,5,225-389-5102,B,M,D,52,3/8/2012,3/8/2008, +DSCC Member ," 64th Representative District, Office ""A"" ",,,,LA,,,,Audrey Nabors-Jackson,24004 Reames Rd.,,Zachary,LA,70791,5,225-654-5491,B,F,D,52,3/8/2012,3/8/2008, +DSCC Member ," 64th Representative District, Office ""B"" ",,,,LA,,,,"Robert ""Sonny"" Williams, Jr.",23431 Plank Rd.,,Zachary,LA,70791,5,225-907-4377,B,M,D,52,3/8/2012,3/8/2008, +DSCC Member ," 65th Representative District, Office ""A"" ",,,,LA,,,,Karen Miller,12042 Devall Rd.,,Baton Rouge,LA,70818,5,,,,,52,,7/24/2008, +DSCC Member ," 65th Representative District, Office ""B"" ",,,,LA,,,,Wade Byrd,16544 Quiet Oaks Ave.,,Greenwell Springs,LA,70739,5,225-261-0599,W,M,D,52,3/8/2012,3/8/2008, +DSCC Member ," 66th Representative District, Office ""A"" ",,,,LA,,,,Sharon Reine,11425 Glenhaven,,Baton Rouge,LA,70815,5,,,,,52,,7/24/2008, +DSCC Member ," 66th Representative District, Office ""B"" ",,,,LA,,,,Jesse H. Bankston,9526 Southmoor Dr.,,Baton Rouge,LA,70815,5,225-925-2543,W,M,D,52,3/8/2012,3/8/2008, +DSCC Member ," 67th Representative District, Office ""A"" ",,,,LA,,,,Avis Baker-White,800 South 16th St.,,Baton Rouge,LA,70802,5,225-334-9255,B,F,D,52,3/8/2012,3/8/2008, +DSCC Member ," 67th Representative District, Office ""B"" ",,,,LA,,,,Ben Jeffers,922 Mayflower St.,,Baton Rouge,LA,70802,5,225-346-5400,B,M,D,52,3/8/2012,3/8/2008, +DSCC Member ," 68th Representative District, Office ""A"" ",,,,LA,,,,Lynn N. Bankston,10916 N. Oakhills Pkwy.,,Baton Rouge,LA,70810,5,225-766-2505,W,F,D,52,3/8/2012,3/8/2008, +DSCC Member ," 68th Representative District, Office ""B"" ",,,,LA,,,,Brandon DeCuir,1165 Sharynwood Dr.,,Baton Rouge,LA,70808,5,225-223-6587,B,M,D,52,3/8/2012,3/8/2008, +DSCC Member ," 69th Representative District, Office ""A"" ",,,,LA,,,,"Elizabeth ""Betty"" Powers",2436 E. Contour Dr.,,Baton Rouge,LA,70809,5,225-928-9135,W,F,D,52,3/8/2012,3/8/2008, +DSCC Member ," 69th Representative District, Office ""B"" ",,,,LA,,,,John Ales,9035 Rue Felicity,,Baton Rouge,LA,70809,5,225-291-7677,W,M,D,52,3/8/2012,3/8/2008, +DSCC Member ," 70th Representative District, Office ""A"" ",,,,LA,,,,Charlotte C. McDaniel McGehee,305 Maxine Dr.,,Baton Rouge,LA,70808,5,225-769-2569,W,F,D,52,3/8/2012,3/8/2008, +DSCC Member ," 70th Representative District, Office ""B"" ",,,,LA,,,,James M. Bernhard,13706 Earls Ct.,,Baton Rouge,LA,70802,5,225-752-4360,W,M,D,52,3/8/2012,3/8/2008, +DSCC Member ," 71st Representative District, Office ""A"" ",,,,LA,,,,Shelia Cadby,20364 Hwy. 42,,Livingston,LA,70754,5,,,,,52,,7/24/2008, +DSCC Member ," 71st Representative District, Office ""B"" ",,,,LA,,,,Al Comeaux,725 Poplar St.,,Denham Springs,LA,70726,5,,,,,52,,7/24/2008, +DSCC Member ," 72nd Representative District, Office ""A"" ",,,,LA,,,,Linda Guy Phillips,192 Linda Carol Ln.,,Greensburg,LA,70441,5,985-517-6416,W,F,D,52,3/8/2012,3/8/2008, +DSCC Member ," 72nd Representative District, Office ""B"" ",,,,LA,,,,Michael R. Martin,15575 Hwy. 43,,Greensburg,LA,70441,5,225-222-4499,B,M,D,52,3/8/2012,3/8/2008, +DSCC Member ," 73rd Representative District, Office ""A"" ",,,,LA,,,,Carolyn Brown-Spiller,1319 Elm South,,Hammond,LA,70403,5,,,,,52,,7/24/2008, +DSCC Member ," 73rd Representative District, Office ""B"" ",,,,LA,,,,"Robert ""Tiger"" Hammond",15262 Maplewood Dr.,,Ponchatoula,LA,70454,5,,,,,52,,4/2/2009, +DSCC Member ," 74th Representative District, Office ""A"" ",,,,LA,,,,Donna L. Singletary,36144 Jessie Singletary Rd.,,Pearl River,LA,70452,5,985-863-5058,W,F,D,52,3/8/2012,3/8/2008, +DSCC Member ," 74th Representative District, Office ""B"" ",,,,LA,,,,Alan B. Tusa,P. O. Box 609,,Abita Springs,LA,70420,5,985-893-9980,W,M,D,52,3/8/2012,3/8/2008, +DSCC Member ," 75th Representative District, Office ""A"" ",,,,LA,,,,Dianne C. Applewhite,350 Mart Stewart Rd.,,Bogalusa,LA,70427,5,985-732-3750,W,F,D,52,3/8/2012,3/8/2008, +DSCC Member ," 75th Representative District, Office ""B"" ",,,,LA,,,,"""Brad"" Orman",1049 Main St.,,Franklinton,LA,70438,5,985-839-2788,W,M,D,52,3/8/2012,3/8/2008, +DSCC Member ," 76th Representative District, Office ""A"" ",,,,LA,,,,Elsie Palmer Burkhalter,P. O. Box 1108,,Slidell,LA,70459,5,985-643-9822,B,F,D,52,3/8/2012,3/8/2008, +DSCC Member ," 76th Representative District, Office ""B"" ",,,,LA,,,,"Kenneth ""Ken"" Burkhalter",P. O. Box 1489,,Slidell,LA,70459,5,985-649-6674,B,M,D,52,3/8/2012,3/8/2008, +DSCC Member ," 77th Representative District, Office ""A"" ",,,,LA,,,,Angelique LaCour,P. O. Box 1745,,Covington,LA,70434,5,985-635-9436,W,F,D,52,3/8/2012,3/8/2008, +DSCC Member ," 77th Representative District, Office ""B"" ",,,,LA,,,,Robert A. Bruno,329 DeZaire Dr.,,Madisonville,LA,70447,5,985-792-4530,W,M,D,52,3/8/2012,3/8/2008, +DSCC Member ," 78th Representative District, Office ""A"" ",,,,LA,,,,Gilda Reed,1108 N. Starrett Rd.,,Metairie,LA,70003,5,,,,,52,,4/2/2009, +DSCC Member ," 78th Representative District, Office ""B"" ",,,,LA,,,,David Quidd,6220 Riverside Dr. Unit 588,,Metairie,LA,70003,5,504-722-8537,W,M,D,52,3/8/2012,3/8/2008, +DSCC Member ," 79th Representative District, Office ""A"" ",,,,LA,,,,Arleeta O. Terrell,7801 Nevada St,,Metairie,LA,70003,5,504-467-2347,B,F,D,52,3/8/2012,3/8/2008, +DSCC Member ," 79th Representative District, Office ""B"" ",,,,LA,,,,"M. V. ""Vinny"" Mendoza",3510 Ole Miss Dr.,,Kenner,LA,70065,5,504-913-3971,O,M,D,52,3/8/2012,3/8/2008, +DSCC Member ," 80th Representative District, Office ""A"" ",,,,LA,,,,Jamie Beeson Balser,2109 Manson Ave. Unit 1,,Metairie,LA,70001,5,504-885-6529,W,F,D,52,3/8/2012,3/8/2008, +DSCC Member ," 80th Representative District, Office ""B"" ",,,,LA,,,,David Gereighty,2952 Ridgeway Dr.,,Metairie,LA,70002,5,504-831-9576,W,M,D,52,3/8/2012,3/8/2008, +DSCC Member ," 81st Representative District, Office ""A"" ",,,,LA,,,,Jenny Nee,1341 Wisteria Dr.,,Metairie,LA,70005,5,504-259-0031,W,F,D,52,3/8/2012,3/8/2008, +DSCC Member ," 81st Representative District, Office ""B"" ",,,,LA,,,,Michael M. Davis,P.O. Box 6764,,Metairie,LA,70009,5,504-835-2114,W,M,D,52,3/8/2012,3/8/2008, +DSCC Member ," 82nd Representative District, Office ""A"" ",,,,LA,,,,Meladie Munch,5029 Utica St.,,Metarie,LA,70006,5,,,,,52,,7/24/2008, +DSCC Member ," 82nd Representative District, Office ""B"" ",,,,LA,,,,Robert Reed,127 Highway Dr.,,Jefferson,LA,70121,5,504-232-5074,W,M,D,52,3/8/2012,3/8/2008, +DSCC Member ," 83rd Representative District, Office ""A"" ",,,,LA,,,,,,,,,,0,,,,,52,,, +DSCC Member ," 83rd Representative District, Office ""B"" ",,,,LA,,,,John W. Alario,1047 Cedre Dr.,,Westwego,LA,70094,5,504-340-6631,W,M,D,52,3/8/2012,3/8/2008, +DSCC Member ," 84th Representative District, Office ""A"" ",,,,LA,,,,,,,,,,0,,,,,52,,, +DSCC Member ," 84th Representative District, Office ""B"" ",,,,LA,,,,,,,,,,0,,,,,52,,, +DSCC Member ," 85th Representative District, Office ""A"" ",,,,LA,,,,Krystal Williams,1561 Hanging Moss Ln.,,Gretna,LA,70056,5,504-258-8023,B,F,D,52,3/8/2012,3/8/2008, +DSCC Member ," 85th Representative District, Office ""B"" ",,,,LA,,,,,,,,,,0,,,,,52,,, +DSCC Member ," 86th Representative District, Office ""A"" ",,,,LA,,,,Deborah Sulzer Primeaux,196 English Turn Dr.,,New Orleans,LA,70131,5,504-391-0928,W,F,D,52,3/8/2012,3/8/2008, +DSCC Member ," 86th Representative District, Office ""B"" ",,,,LA,,,,Joseph Broussard,209 Brunswick Crt.,,New Orleans,LA,70131,5,504-391-9641,B,M,D,52,3/8/2012,3/8/2008, +DSCC Member ," 87th Representative District, Office ""A"" ",,,,LA,,,,,,,,,,0,,,,,52,,, +DSCC Member ," 87th Representative District, Office ""B"" ",,,,LA,,,,"Girod Jackson, III","2439 Manhattan Blvd., Ste. 207",,Harvey,LA,70058,5,504-361-6972,B,M,D,52,3/8/2012,3/8/2008, +DSCC Member ," 88th Representative District, Office ""A"" ",,,,LA,,,,Melissa Pardue,P. O. Box 4,,Springfield,LA,70462,5,225-294-9074,W,F,D,52,3/8/2012,3/8/2008, +DSCC Member ," 88th Representative District, Office ""B"" ",,,,LA,,,,Kevin Hull,20469 LA Hwy. 16,,Denham Springs,LA,70726,5,225-405-1362,W,M,D,52,3/8/2012,3/8/2008, +DSCC Member ," 89th Representative District, Office ""A"" ",,,,LA,,,,"""Susie"" Deano",136 Lafayette St.,,Mandeville,LA,70448-5620,10,985-626-9442,W,F,D,52,3/8/2012,3/8/2008, +DSCC Member ," 89th Representative District, Office ""B"" ",,,,LA,,,,"Sorola ""Jody"" Palmer",P. O. Box 868,,Lacombe,LA,70445,5,985-882-3392,B,M,D,52,3/8/2012,3/8/2008, +DSCC Member ," 90th Representative District, Office ""A"" ",,,,LA,,,,d'Andrea McMooain-Chatman,38248 N. Fifth Ave.,,Slidell,LA,70460-4524,10,985-863-5089,B,F,D,52,3/8/2012,3/8/2008, +DSCC Member ," 90th Representative District, Office ""B"" ",,,,LA,,,,Shannon Davis,34399 Laurent Rd.,,Slidell,LA,70460-3555,10,985-641-6834,W,M,D,52,3/8/2012,3/8/2008, +DSCC Member ," 91st Representative District, Office ""A"" ",,,,LA,,,,Natacha Hutchinson,1918 Louisiana Ave.,,New Orleans,LA,70115,5,504-342-2686,B,F,D,52,3/8/2012,3/8/2008, +DSCC Member ," 91st Representative District, Office ""B"" ",,,,LA,,,,Maurice Ruffin,2412 General Taylor St.,,New Orleans,LA,70115,5,504-899-4394,B,M,D,52,3/8/2012,3/8/2008, +DSCC Member ," 92nd Representative District, Office ""A"" ",,,,LA,,,,Melinda Hills-Holmes,P.O. Box 640211,,Kenner,LA,70064-0211 ,11,504-343-1488,B,F,D,52,3/8/2012,3/8/2008, +DSCC Member ," 92nd Representative District, Office ""B"" ",,,,LA,,,,Keith M. Hutchinson,927 S. Starrett Rd.,,Metairie,LA,70003,5,504-712-1632,B,M,D,52,3/8/2012,3/8/2008, +DSCC Member ," 93rd Representative District, Office ""A"" ",,,,LA,,,,Karen Carter,"920 Poeyfarre St., Unit 316",,New Orleans,LA,70130,5,504-568-8346,B,F,D,52,3/8/2012,3/8/2008, +DSCC Member ," 93rd Representative District, Office ""B"" ",,,,LA,,,,Thomas A. Robichaux,1805 Esplande Ave.,,New Orleans,LA,70116,5,504-945-4003,W,M,D,52,3/8/2012,3/8/2008, +DSCC Member ," 94th Representative District, Office ""A"" ",,,,LA,,,,Deborah Langhoff,4234 Canal St.,,New Orleans,LA,70119,5,504-259-4525,W,F,D,52,3/8/2012,3/8/2008, +DSCC Member ," 94th Representative District, Office ""B"" ",,,,LA,,,,Philip Costa,818 City Park Ave.,,New Orleans,LA,70119,5,504-220-0593,W,M,D,52,3/8/2012,3/8/2008, +DSCC Member ," 95th Representative District, Office ""A"" ",,,,LA,,,,Irma Muse-Dixon,8210 Neron Place,,New Orleans,LA,70118,5,504-460-4720,B,F,D,52,3/8/2012,3/8/2008, +DSCC Member ," 95th Representative District, Office ""B"" ",,,,LA,,,,,,,,,,0,,,,,52,,, +DSCC Member ," 96th Representative District, Office ""A"" ",,,,LA,,,,Dale Atkins,"421 Loyola Ave., Rm. 402",,New Orleans,LA,70112,5,504-427-1421,B,F,D,52,3/8/2012,3/8/2008, +DSCC Member ," 96th Representative District, Office ""B"" ",,,,LA,,,,Juan Lafonta,306 Warrinton Dr.,,New Orleans,LA,70122,5,504-288-4911,B,M,D,52,3/8/2012,3/8/2008, +DSCC Member ," 97th Representative District, Office ""A"" ",,,,LA,,,,Cynthia Hedge-Morrell,4925 Moore Dr.,,New Orleans,LA,70122,5,504-261-0535,B,F,D,52,3/8/2012,3/8/2008, +DSCC Member ," 97th Representative District, Office ""B"" ",,,,LA,,,,Arthur A. Morrell,4925 Moore Dr.,,New Orleans,LA,70122,5,504-658-9000,B,M,D,52,3/8/2012,3/8/2008, +DSCC Member ," 98th Representative District, Office ""A"" ",,,,LA,,,,Cheryl A. Gray,4318 Jena St.,,New Orleans,LA,70125,5,504-628-4300,B,F,D,52,3/8/2012,3/8/2008, +DSCC Member ," 98th Representative District, Office ""B"" ",,,,LA,,,,Jay H. Banks,1746 Jackson Ave.,,New Orleans,LA,70113,5,504-522-8811,B,M,D,52,3/8/2012,3/8/2008, +DSCC Member ," 99th Representative District, Office ""A"" ",,,,LA,,,,Charmaine L. Marchand,1730 Andry St.,,New Orleans,LA,70117,5,504-945-8151,B,F,D,52,3/8/2012,3/8/2008, +DSCC Member ," 99th Representative District, Office ""B"" ",,,,LA,,,,Thomas Jasper,P.O. Box 771106,,New Orleans,LA,70177,5,504-228-8812,B,M,D,52,3/8/2012,3/8/2008, +DSCC Member ,"100th Representative District, Office ""A"" ",,,,LA,,,,Terrie Carrie-Guerin,101 Eastview Dr.,,New Orleans,LA,70128,5,504-909-1634,B,F,D,52,3/8/2012,3/8/2008, +DSCC Member ,"100th Representative District, Office ""B"" ",,,,LA,,,,Sean Michael Bruno,11269 Notaway Ln.,,New Orleans,LA,70128,5,504-905-3792,B,M,D,52,3/8/2012,3/8/2008, +DSCC Member ,"101st Representative District, Office ""A"" ",,,,LA,,,,Ermence DeBose-Parent,1956 Hope St.,,New Orleans,LA,70119,5,504-343-7421,B,F,D,52,3/8/2012,3/8/2008, +DSCC Member ,"101st Representative District, Office ""B"" ",,,,LA,,,,Wesley T. Bishop,7001 Cove Dr.,,New Orleans,LA,70126,5,504-220-3201,B,M,D,52,3/8/2012,3/8/2008, +DSCC Member ,"102nd Representative District, Office ""A"" ",,,,LA,,,,Pamela Netto-Stewart,418 Eliza St.,,New Orleans,LA,70114,5,504-301-1579,W,F,D,52,3/8/2012,3/8/2008, +DSCC Member ,"102nd Representative District, Office ""B"" ",,,,LA,,,,"Kenneth Paul Garrett, Sr.",2152 L.B. Landry Ave.,,New Orleans,LA,70114,5,43677101,B,M,D,52,3/8/2012,3/8/2008, +DSCC Member ,"103rd Representative District, Office ""A"" ",,,,LA,,,,Cheron Brylski,3418 Coliseum St.,,New Orleans,LA,70115,5,504-460-1468,W,F,D,52,3/8/2012,3/8/2008, +DSCC Member ,"103rd Representative District, Office ""B"" ",,,,LA,,,,Eric A. Bopp,70 Carolyn Ct.,,Arabi,LA,70032,5,504-388-6242,W,M,D,52,3/8/2012,3/8/2008, +DSCC Member ,"104th Representative District, Office ""A"" ",,,,LA,,,,"Newell ""Suzy"" Andry",210 Lorelei Cir.,,Slidell,LA,70458,5,504-231-2237,W,F,D,52,3/8/2012,3/8/2008, +DSCC Member ,"104th Representative District, Office ""B"" ",,,,LA,,,,John Seither Gutierrez,2137 Jackson Blvd.,,Chalmette,LA,70043,5,504-442-3684,W,M,D,52,3/8/2012,3/9/2008, +DSCC Member ,"105th Representative District, Office ""A"" ",,,,LA,,,,Laura Veazey,P.O. Box Box 261,,Belle Chasse,LA,70037,5,,,,,52,,7/24/2008, +DSCC Member ,"105th Representative District, Office ""B"" ",,,,LA,,,,Herman Gravolet,P.O. Box 261,,Belle Chasse,LA,70037,5,504-450-1651,W,M,D,52,3/8/2012,3/8/2008, +RSCC Member ," 1st Representative District, Subdistrict A ",,,,LA,,,,Marty Gant Woolridge,10724 Hwy 1,,Mooringsport,LA,71060,5,,,,,62,,3/16/2009, +RSCC Member ," 1st Representative District, Subdistrict B ",,,,LA,,,,Lucille Williams,6029 Cherry Hill Pl,,Shereveport,LA,71107,5,,,,,62,,6/7/2008,Ms. Williams +RSCC Member , 2nd Representative District ,,,,LA,,,,"""Jay"" Gallagher",1103 Boulevard St.,,Shrevport,LA,71104-2030,10,318-221-0456,W,,R,62,2/23/2012,2/23/2008, +RSCC Member , 3rd Representative District ,,,,LA,,,,Carrol Grace White,618 Kingridge Pl.,,Shreveport,LA,71108-6016,10,318-686-5466,W,F,R,62,2/23/2012,2/23/2008, +RSCC Member ," 4th Representative District, Subdistrict A ",,,,LA,,,,"""Don"" Hollis",4002 Curtis Ln.,,Shreveport,LA,71109-5016,10,318-773-4349,,,R,62,2/23/2012,2/23/2008, +RSCC Member ," 4th Representative District, Subdistrict B ",,,,LA,,,,"Sandra ""Sandy"" McDade",3112 Pines Rd.,,Shreveport,LA,71119-3504,10,318-631-4133,,,R,62,2/23/2012,2/23/2008, +RSCC Member ," 5th Representative District, Subdistrict A ",,,,LA,,,,Stephen Gibson,9402 Baird Cir,,Shreveport,LA,71118,5,318-688-0742,,,,62,,8/29/2009,Mr. Gibson +RSCC Member ," 5th Representative District, Subdistrict B ",,,,LA,,,,Wayne Waddell,3221 Green Terrace Rd.,,Shreveport,LA,71118,5,318-219-9000,W,,R,62,2/23/2012,2/23/2008, +RSCC Member ," 5th Representative District, Subdistrict C ",,,,LA,,,,Bryan Wooley,9114 Campfire Ln.,,Shreveport,LA,71115-3657,10,318-780-8838,W,M,R,62,2/23/2012,2/23/2008, +RSCC Member ," 5th Representative District, Subdistrict D ",,,,LA,,,,Alan Seabaugh,9727 Norris Ferry Rd.,,Shreveport,LA,71106,5,318-797-5889,W,,R,62,2/23/2012,2/23/2008, +RSCC Member ," 6th Representative District, Subdistrict A ",,,,LA,,,,Jimmy C. Allen,7333 Camelback Dr.,,Shreveport,LA,71105-5007,10,318-797-4761,W,,R,62,2/23/2012,2/23/2008, +RSCC Member ," 6th Representative District, Subdistrict B ",,,,LA,,,,Royal Alexander,P.O. Box 1837,,Shreveport,LA,71166,5,318-308-4082,W,,R,62,2/23/2012,2/23/2008,Mr. Alexander +RSCC Member ," 6th Representative District, Subdistrict C ",,,,LA,,,,Barrow Peacock,P.O. Box 46,,Shreveport,LA,71161,5,318-221-5276,W,,R,62,2/23/2012,2/23/2008,Mr. Peacock +RSCC Member ," 6th Representative District, Subdistrict D ",,,,LA,,,,Harold O. Coates,6117 Lovers Ln.,,Shreveport,LA,71105-4829,10,318-868-1212,W,M,R,62,2/23/2012,2/23/2008, +RSCC Member ," 7th Representative District, Subdistrict A ",,,,LA,,,,"""Ron"" Webb",2406 Helmsdale Ct.,,Shreveport,LA,71118-4546,10,318-688-6800,W,M,R,62,2/23/2012,2/23/2008, +RSCC Member ," 7th Representative District, Subdistrict B ",,,,LA,,,,"Bryan B. Norwood, Jr.",180 Norwood Rd.,,Mansfield,LA,71052,5,318-872-4707,W,M,R,62,2/23/2012,2/23/2008, +RSCC Member ," 8th Representative District, Subdistrict A ",,,,LA,,,,"""Greg"" Nichols",1906 Mars Dr.,,Bossier City,LA,71112,5,318-746-3849,W,M,R,62,2/23/2012,2/23/2008, +RSCC Member ," 8th Representative District, Subdistrict B ",,,,LA,,,,Anne Price,104 Cambridge Cir.,,Bossier City,LA,71111-2278,10,318-741-1572,W,F,R,62,2/23/2012,2/23/2008, +RSCC Member ," 8th Representative District, Subdistrict C ",,,,LA,,,,Martin Grau,2005 Pine Ridge Way,,Benton,LA,71006-3489,10,318-402-3525,W,M,R,62,2/23/2012,2/23/2008, +RSCC Member ," 9th Representative District, Subdistrict A ",,,,LA,,,,Janie M. Kelley,1613 Caplis Sligo Rd.,,Bossier City,LA,71112-9859,10,318-747-2073,W,F,R,62,2/23/2012,2/23/2008, +RSCC Member ," 9th Representative District, Subdistrict B ",,,,LA,,,,Henry Burns,134 Chimney Ln.,,Haughton,LA,71037,5,318-949-2463,,,,62,,1/13/2009,Mr. Burns +RSCC Member ," 9th Representative District, Subdistrict C ",,,,LA,,,,David W. Hall,482 Merritt Rd.,,Benton,LA,71006,5,318-965-4444,W,M,R,62,2/23/2012,2/23/2008, +RSCC Member ," 10th Representative District, Subdistrict A ",,,,LA,,,,Ronnie Broughton,110 Germantown Rd.,,Minden,LA,71055,5,318-377-4575,W,M,R,62,2/23/2012,2/23/2008, +RSCC Member ," 10th Representative District, Subdistrict B ",,,,LA,,,,"Eric ""Red"" Johnson",1507 Holley,,Minden,LA,71055,5,318-377-1555,W,M,R,62,2/23/2012,2/23/2008, +RSCC Member , 11th Representative District ,,,,LA,,,,Trent P. Newell,195 Tanglewood Rd.,,Homer,LA,71040,5,318-927-3664,W,M,R,62,2/23/2012,2/23/2008, +RSCC Member ," 12th Representative District, Subdistrict A ",,,,LA,,,,Jennifer Daulton Ham,812 Sandy Ln.,,Ruston,LA,71270,5,318-255-1259,W,F,R,62,2/23/2012,2/23/2008, +RSCC Member ," 12th Representative District, Subdistrict B ",,,,LA,,,,,,,,,,0,,,,,62,,, +RSCC Member ," 12th Representative District, Subdistrict C ",,,,LA,,,,Deryl Bryant,238 Bryant's Edge Rd.,,Downsville,LA,71234,5,,,,,62,,6/7/2008,Ms. Bryant +RSCC Member ," 13th Representative District, Subdistrict A ",,,,LA,,,,L. Todd Perry,702 Hodge Watson Rd.,,Calhoun,LA,71225,5,318-396-6699,W,M,R,62,2/23/2012,2/23/2008, +RSCC Member ," 13th Representative District, Subdistrict B ",,,,LA,,,,David Holton,123 Allen Ave.,,Jonesboro,LA,71251,5,318-680-9206,,M,R,62,2/23/2012,2/23/2008, +RSCC Member ," 14th Representative District, Subdistrict A ",,,,LA,,,,Sam Little,117 S. Franklin St.,,Bastrop,LA,71220,5,,,,,62,,6/7/2008, +RSCC Member ," 14th Representative District, Subdistrict B ",,,,LA,,,,Hannah Hammons,5073 Hwy. 139,,Collinston,LA,71229,5,318-345-4566,W,F,R,62,2/23/2012,2/23/2008, +RSCC Member ," 14th Representative District, Subdistrict C ",,,,LA,,,,"""Stan"" Neathery",5844 Huntington Dr.,,Bastrop,LA,71220,5,318-283-2677,W,M,R,62,2/23/2012,2/23/2008, +RSCC Member ," 15th Representative District, Subdistrict A ",,,,LA,,,,Deborah Wisdom McCulloch,1207 Tulane Ave.,,West Monroe,LA,71291,5,318-324-8328,W,F,R,62,2/23/2012,2/23/2008, +RSCC Member ," 15th Representative District, Subdistrict B ",,,,LA,,,,"M. Randall ""Randy"" Donald",614 Cheniere Drew Rd.,,West Monroe,LA,71291,5,318-322-8442,W,M,R,62,2/23/2012,2/23/2008, +RSCC Member ," 15th Representative District, Subdistrict C ",,,,LA,,,,Gordon Dasher,570 Mouth of Cypress Rd.,,West Monroe,LA,71292,5,318-398-0919,W,M,R,62,2/23/2012,2/23/2008, +RSCC Member ," 16th Representative District, Subdistrict A ",,,,LA,,,,Ruth Ulrich,406 Forsythe Ave.,,Monroe,LA,71201,5,318-330-9780,W,F,R,62,2/23/2012,2/23/2008, +RSCC Member ," 16th Representative District, Subdistrict B ",,,,LA,,,,Kay Kellogg Katz,2905 Lamy Cr.,,Monroe,LA,71201,5,318-387-7728,W,F,R,62,2/23/2012,2/23/2008, +RSCC Member ," 16th Representative District, Subdistrict C ",,,,LA,,,,Nancy Pate Wilkes,207 Pecan Bayou Dr.,,Monroe,LA,71203,5,318-343-5130,W,F,R,62,2/23/2012,2/23/2008, +RSCC Member ," 16th Representative District, Subdistrict D ",,,,LA,,,,,,,,,,0,,,,,62,,, +RSCC Member , 17th Representative District ,,,,LA,,,,Thomas E. Taylor,4205 Harrison St.,,Monroe,LA,71205,5,,,,,62,,1/13/2009,Mr. Taylor +RSCC Member , 18th Representative District ,,,,LA,,,,"William L. ""Bill"" Davis",13039 Patin Dyke Rd.,,Ventress,LA,70783,5,225-618-0670,W,M,R,62,2/23/2012,2/23/2008, +RSCC Member ," 19th Representative District, Subdistrict A ",,,,LA,,,,,,,,,,0,,,,,62,,, +RSCC Member ," 19th Representative District, Subdistrict B ",,,,LA,,,,Doyle E. Robinson,491 Hwy 622,,Mangham,LA,71259,5,318-248-2272,W,M,R,62,2/23/2012,2/23/2008, +RSCC Member ," 20th Representative District, Subdistrict A ",,,,LA,,,,"Billy C. Johnson, II",223 Johnson Rd.,,Columbia,LA,71418,5,318-649-8351,W,M,R,62,2/23/2012,2/23/2008, +RSCC Member ," 20th Representative District, Subdistrict B ",,,,LA,,,,"Henry G. Herford, Jr.",2604 Hwy. 17,,Delhi,LA,71232,5,,W,M,R,62,2/23/2012,2/23/2008, +RSCC Member ," 21st Representative District, Subdistrict A ",,,,LA,,,,Steve Fleming,100 Stewart Dr.,,Vidalia,LA,71373,5,318-336-9220,W,M,R,62,2/23/2012,2/23/2008, +RSCC Member ," 21st Representative District, Subdistrict B ",,,,LA,,,,Fred B. Wyly,210 Neely Plantation Road,,Tallulah,LA,71282,5,318574369,W,M,R,62,2/23/2012,2/23/2008, +RSCC Member ," 22nd Representative District, Subdistrict A ",,,,LA,,,,Charles Carpenter,152 Holt Rd.,,Pollock,LA,71467,5,,,,,62,,6/7/2008,Mr. Carpenter +RSCC Member ," 22nd Representative District, Subdistrict B ",,,,LA,,,,Billie Turnley,P.O. Box 1891,,Jena,LA,71342,5,318-992-2033,W,F,R,62,2/23/2012,2/23/2008, +RSCC Member ," 23rd Representative District, Subdistrict A ",,,,LA,,,,Paul Johnson,269 Chris St.,,Natchitoches,LA,71457,5,318-352-6938,W,M,R,62,2/23/2012,2/23/2008, +RSCC Member ," 23rd Representative District, Subdistrict B ",,,,LA,,,,Gary M. Lirette,1129 Hwy. 487,,Marthaville,LA,71450,5,318-796-2387,W,M,R,62,2/23/2012,2/23/2008, +RSCC Member ," 24th Representative District, Subdistrict A ",,,,LA,,,,Bobby E. Williams,277 Hwy. 118,,Florien,LA,71429,5,318-586-3516,W,M,R,62,2/23/2012,2/23/2008, +RSCC Member ," 24th Representative District, Subdistrict B ",,,,LA,,,,Valmore Byles,1751 Robby St.,,Many,LA,71449,5,318-256-5101,W,M,R,62,2/23/2012,2/23/2008, +RSCC Member ," 25th Representative District, Subdistrict A ",,,,LA,,,,"""Chuck"" Tosten",4202 Wellington Blvd.,,Alexandria,LA,71303-2828,10,318-442-1016,W,M,R,62,2/23/2012,2/23/2008, +RSCC Member ," 25th Representative District, Subdistrict B ",,,,LA,,,,Wayne Ryan,P.O. Box 12445,,Alexandria,LA,71315,5,318-613-2202,,,,62,,8/29/2009,Mr. Ryan +RSCC Member ," 25th Representative District, Subdistrict C ",,,,LA,,,,Gene Haymon,150 Mockingbird Ln.,,Leesville,LA,71446,5,337-238-3788,,,,62,,6/4/2009,Mr. Haymon +RSCC Member , 26th Representative District ,,,,LA,,,,Karen Kay Haymon,1809 Bush Ave.,,Alexandria,LA,71301,5,318-449-1108,W,F,R,62,2/23/2012,2/23/2008, +RSCC Member ," 27th Representative District, Subdistrict A ",,,,LA,,,,"Edward L. Tarpley, Jr.",519 Eagle Dr.,,Pineville,LA,71360,5,318-640-3337,W,M,R,62,2/23/2012,2/23/2008, +RSCC Member ," 27th Representative District, Subdistrict B ",,,,LA,,,,Edwin B. Jones,119 Rockpoint East,,Pineville,LA,71360,5,318-443-3823,W,M,R,62,2/23/2012,2/23/2008, +RSCC Member ," 27th Representative District, Subdistrict C ",,,,LA,,,,Clyde C. Holloway,P.O. Box 340,,Forest Hill,LA,71430,5,318-748-6832,,,R,62,2/23/2012,2/23/2008, +RSCC Member , 28th Representative District ,,,,LA,,,,"Kirby Roy, III",581 Little Corner Rd.,,Hessmer,LA,71341,5,318-563-1076,W,M,R,62,2/23/2012,2/23/2008, +RSCC Member , 29th Representative District ,,,,LA,,,,Harold Williams,P.O. Box 80727,,Baton Rouge,LA,70898,5,225-806-6923,B,M,R,62,2/23/2012,2/23/2008, +RSCC Member ," 30th Representative District, Subdistrict A ",,,,LA,,,,Steve Iles,1416 Camellia Dr.,,DeRidder,LA,70634,5,,,,,62,,6/7/2008, +RSCC Member ," 30th Representative District, Subdistrict B ",,,,LA,,,,Jack Causey,247 Alexandria Hwy.,,Leesville,LA,71446,5,337-239-5952,W,M,R,62,2/23/2012,2/23/2008, +RSCC Member ," 31st Representative District, Subdistrict A ",,,,LA,,,,"Ross Little, Jr.",100 Harwell,,Lafayette,LA,70503,5,337-981-1749,W,M,R,62,2/23/2012,2/23/2008, +RSCC Member ," 31st Representative District, Subdistrict B ",,,,LA,,,,"William P. Mills, III",2250 Robley,,Lafayette,LA,70505,5,337-232-1438,W,M,R,62,2/23/2012,2/23/2008, +RSCC Member ," 31st Representative District, Subdistrict C ",,,,LA,,,,"""Charlie"" Buckels",202 Sommerset,,Lafayette,LA,70506,5,337-981-3000,W,M,R,62,2/23/2012,2/23/2008, +RSCC Member ," 32nd Representative District, Subdistrict A ",,,,LA,,,,James David Cain,P. O. Box 640,,Dry Creek,LA,70637,5,337-328-7266,W,M,R,62,2/23/2012,2/23/2008, +RSCC Member ," 32nd Representative District, Subdistrict B ",,,,LA,,,,"William E. ""Bill"" Murry",P. O. Box 543,,Oakdale,LA,71463,5,318-335-3121,W,M,R,62,2/23/2012,2/23/2008, +RSCC Member ," 33rd Representative District, Subdistrict A ",,,,LA,,,,Lillie Brady,4700 Maplewood Dr.,,Sulphur,LA,70663,5,337-625-7567,W,F,R,62,2/23/2012,2/23/2008, +RSCC Member ," 33rd Representative District, Subdistrict B ",,,,LA,,,,Terry Backhaus,800 Ryan St. Ste. B,,Lake Charles,LA,70601,5,337-437-9950,W,M,R,62,2/23/2012,2/23/2008, +RSCC Member , 34th Representative District ,,,,LA,,,,Nathan Curtis,2899 Sugarloaf Dr. #124,,Lake Charles,LA,70607-7544,10,337-263-0860,W,M,R,62,2/23/2012,2/23/2008, +RSCC Member ," 35th Representative District, Subdistrict A ",,,,LA,,,,Tore Carlberg,1500 Watkins St.,,Lake Charles,LA,70601,5,337-721-0440,W,M,R,62,2/23/2012,2/23/2008, +RSCC Member ," 35th Representative District, Subdistrict B ",,,,LA,,,,"""Larry"" Agee",3900 Paul White Rd.,,Lake Charles,LA,70611,5,337-855-3124,W,M,R,62,2/23/2012,2/23/2008, +RSCC Member ," 36th Representative District, Subdistrict A ",,,,LA,,,,Keith DeSonier,917 Contraband Ln.,,Lake Charles,LA,70605,5,337-474-4976,W,M,R,62,2/23/2012,2/23/2008, +RSCC Member ," 36th Representative District, Subdistrict B ",,,,LA,,,,Marcia Farber,210 Lee St.,,Lake Charles,LA,70605,5,337-499-3357,W,F,R,62,2/23/2012,2/23/2008, +RSCC Member ," 36th Representative District, Subdistrict C ",,,,LA,,,,Shaina Farque,7285 Choupique Rd.,,Sulphur,LA,70665,5,337-583-4530,W,F,R,62,2/23/2012,2/23/2008, +RSCC Member ," 37th Representative District, Subdistrict A ",,,,LA,,,,Heather Johnson,19485 Freeland Rd.,,Welsh,LA,70591,5,337-515-6621,,,,62,,11/12/2009, +RSCC Member ," 37th Representative District, Subdistrict B ",,,,LA,,,,"Paul Delacroix, Jr.",422 E. Nezpique St.,,Jennings,LA,70546,5,337-824-3719,W,M,R,62,2/23/2012,2/23/2008, +RSCC Member ," 38th Representative District, Subdistrict A ",,,,LA,,,,Dennis Thompson,1038 W. Main St.,,Ville Platte,LA,70586,5,337-363-2620,W,M,R,62,2/23/2012,2/23/2008, +RSCC Member ," 38th Representative District, Subdistrict B ",,,,LA,,,,"""Jimmy"" LaFleur",682 Shuff Rd.,,Ville Platte,LA,70586,5,337-363-5317,W,M,R,62,2/23/2012,2/23/2008, +RSCC Member ," 39th Representative District, Subdistrict A ",,,,LA,,,,Dale Bourgeois,1110 N Wilderness Trail,,Carencro,LA,70520,5,337-896-4784,W,M,R,62,2/23/2012,2/23/2008, +RSCC Member ," 39th Representative District, Subdistrict B ",,,,LA,,,,Mike Hebert,109 Broadway Dr.,,Scott,LA,70583,5,,,,,62,,3/16/2009,Mr. Hebert +RSCC Member , 40th Representative District ,,,,LA,,,,Alyshia B. Boagni,410 S. Court St.,,Opelousas,LA,70570,5,337-948-9242,W,F,R,62,2/23/2012,2/23/2008, +RSCC Member ," 41st Representative District, Subdistrict A ",,,,LA,,,,Keith Lamm,7250 Robert Cove Rd.,,Rayne,LA,70578,5,337-277-6232,W,M,R,62,2/23/2012,2/23/2008, +RSCC Member ," 41st Representative District, Subdistrict B ",,,,LA,,,,Russell P. Pavich,330 South 9th St.,,Eunice,LA,70535,5,337-546-0494,W,M,R,62,2/23/2012,2/23/2008, +RSCC Member ," 42nd Representative District, Subdistrict A ",,,,LA,,,,Anthony Emmons,503 East Jefferson Davis,,Rayne,LA,70578,5,337-334-5701,W,M,R,62,2/23/2012,2/23/2008, +RSCC Member ," 42nd Representative District, Subdistrict B ",,,,LA,,,,Allison Clarke,715 E.7th St.,,,LA,70526,5,337-785-0168,W,F,R,62,2/23/2012,2/23/2008, +RSCC Member ," 43rd Representative District, Subdistrict A ",,,,LA,,,,Gary Reynolds,98 John Adams,,Youngsville,LA,70592,5,,,,,62,,6/30/2008,Mr. Reynolds +RSCC Member ," 43rd Representative District, Subdistrict B ",,,,LA,,,,Nicole Cockerham,13 Courtyard Circle,,Lafayette,LA,70508,5,337-234-3545,W,F,R,62,2/23/2012,2/23/2008, +RSCC Member ," 43rd Representative District, Subdistrict C ",,,,LA,,,,Tracy Richardson,303 Billy Lou Dr.,,Lafayette,LA,70508,5,337-993-7442,W,M,R,62,2/23/2012,2/23/2008, +RSCC Member ," 43rd Representative District, Subdistrict D ",,,,LA,,,,"""Sandy"" Gresham Hindelang",210 Lakeside Dr.,,Lafayette,LA,70508,5,337-984-6171,W,F,R,62,2/23/2012,2/23/2008, +RSCC Member , 44th Representative District ,,,,LA,,,,Normand Miller,311 N. Sterling,,Lafayette,LA,70501,5,337-234-6817,W,M,R,62,2/23/2012,2/23/2008, +RSCC Member ," 45th Representative District, Subdistrict A ",,,,LA,,,,"W. Thomas ""Tom"" Angers",116 Teche Dr.,,Lafayette,LA,70503,5,337-233-3268,W,M,R,62,2/23/2012,2/23/2008, +RSCC Member ," 45th Representative District, Subdistrict B ",,,,LA,,,,DeAnne Henke,107 Pericles,,Lafayette,LA,70506,5,337-504-3834,W,F,R,62,2/23/2012,2/23/2008, +RSCC Member ," 45th Representative District, Subdistrict C ",,,,LA,,,,"""Max"" Jordan",1915 W Saint Mary Blvd.,,Lafayette,LA,70506,5,337-232-6197,W,M,R,62,2/23/2012,2/23/2008, +RSCC Member ," 46th Representative District, Subdistrict A ",,,,LA,,,,Richard Delahoussaye,422 N. Pinaud St.,,St. Martinville,LA,70582,5,337-394-7281,W,M,R,62,2/23/2012,2/23/2008, +RSCC Member ," 46th Representative District, Subdistrict B ",,,,LA,,,,"Joseph ""Rick"" Pearson",525 Clause Dr.,,Breaux Bridge,LA,70517,5,337-442-6650,W,M,R,62,2/23/2012,2/23/2008, +RSCC Member ," 47th Representative District, Subdistrict A ",,,,LA,,,,Jonathan Perry,312 Abshire Drive,,Kaplan,LA,70548-2230,10,337-643-2057,W,M,R,62,2/23/2012,2/23/2008, +RSCC Member ," 47th Representative District, Subdistrict B ",,,,LA,,,,Dexter James Duhon,9016 Rachelle Drive,,Abbeville,LA,70510-2119,10,337-893-2702,W,M,R,62,2/23/2012,2/23/2008, +RSCC Member ," 48th Representative District, Subdistrict A ",,,,LA,,,,Anne B. Caffery,1001 Loreauville Rd.,,New Iberia,LA,70563,5,337-365-3617,W,F,R,62,2/23/2012,2/23/2008, +RSCC Member ," 48th Representative District, Subdistrict B ",,,,LA,,,,,,,,,,0,,,,,62,,, +RSCC Member ," 49th Representative District, Subdistrict A ",,,,LA,,,,Rebecca M. Allain,P.O. Box 467,,Jeanerette,LA,70544,5,337-276-6423,W,F,R,62,2/23/2012,2/23/2008, +RSCC Member ," 49th Representative District, Subdistrict B ",,,,LA,,,,Dick Lane Menard,1218 Victor Rd.,,Abbeville,LA,70510,5,337-937-6358,W,M,R,62,2/23/2012,2/23/2008, +RSCC Member ," 50th Representative District, Subdistrict A ",,,,LA,,,,Christian Gil,P. O. Box 157,,Patterson,LA,70392,5,985-399-4412,W,M,R,62,2/23/2012,2/23/2008, +RSCC Member ," 50th Representative District, Subdistrict B ",,,,LA,,,,Jessie Morton,108 Eastwood Dr.,,Franklin,LA,70538,5,337-828-0557,W,F,R,62,2/23/2012,2/23/2008, +RSCC Member ," 51st Representative District, Subdistrict A ",,,,LA,,,,Leilani N. Hardee,913 Hickory St.,,Morgan City,LA,70380,5,985-519-6110,W,F,R,62,2/23/2012,2/23/2008, +RSCC Member ," 51st Representative District, Subdistrict B ",,,,LA,,,,"""Joe"" Harrison, Jr.",3239 Hwy. 308,,Napoleonville,LA,70390,5,985-526-8434,W,M,R,62,2/23/2012,2/23/2008, +RSCC Member ," 52nd Representative District, Subdistrict A ",,,,LA,,,,"Kirby B. Fabre, Jr.",335 Sugar Plum St.,,Houma,LA,70364-4470,10,985-868-3879,W,M,R,62,2/23/2012,2/23/2008, +RSCC Member ," 52nd Representative District, Subdistrict B ",,,,LA,,,,"""Fred"" Fondren",30 Amarillo Dr.,,Houma,LA,70360,5,985-876-1151,W,M,R,62,2/23/2012,2/23/2008, +RSCC Member ," 53rd Representative District, Subdistrict A ",,,,LA,,,,"Wallace Ellender, III",239 Hwy. 55,,Bourg,LA,70343,5,985-594-7806,W,M,R,62,2/23/2012,2/23/2008, +RSCC Member ," 53rd Representative District, Subdistrict B ",,,,LA,,,,Lenar Whitney,300 Wilson Ave.,,Houma,LA,70364-3142,10,985-851-0132,W,F,R,62,2/23/2012,2/23/2008, +RSCC Member , 54th Representative District ,,,,LA,,,,"""Irv"" Magri",P. O. Box 5,,Grand Isle,LA,70358,5,985-787-2477,W,M,R,62,2/23/2012,2/23/2008, +RSCC Member ," 55th Representative District, Subdistrict A ",,,,LA,,,,Frank Nezzio,320 Brandywine Blvd.,,Thibodaux,LA,70301,5,985-448-3069,W,M,R,62,2/23/2012,2/23/2008, +RSCC Member ," 55th Representative District, Subdistrict B ",,,,LA,,,,David Gauthe,1922 Bayou Rd.,,Thibodaux,LA,70301,5,985-446-5364,W,M,R,62,2/23/2012,2/23/2008, +RSCC Member ," 56th Representative District, Subdistrict A ",,,,LA,,,,Wendy Benedetto,13 Ashland Dr.,,Destrehan,LA,70047,5,985-764-8439,W,F,R,62,2/23/2012,2/23/2008, +RSCC Member ," 56th Representative District, Subdistrict B ",,,,LA,,,,"Clayton ""Snookie"" Faucheux",140 N. Oak Ct.,,Luling,LA,70070,5,985-785-6588,W,M,R,62,2/23/2012,2/23/2008, +RSCC Member ," 57th Representative District, Subdistrict A ",,,,LA,,,,David W. Millet,136 West 9th St.,,Reserve,LA,70084,5,985-652-6261,W,M,R,62,2/23/2012,2/23/2008, +RSCC Member ," 57th Representative District, Subdistrict B ",,,,LA,,,,Emory B. Putman,1015 Madewood Rd.,,LaPlace,LA,70068,5,985-653-0924,W,M,R,62,2/23/2012,2/23/2008, +RSCC Member , 58th Representative District ,,,,LA,,,,Charles Carpenter,815 River Rd.,,Sunshine,LA,70780,5,225-642-3344,W,M,R,62,2/23/2012,2/23/2008, +RSCC Member ," 59th Representative District, Subdistrict A ",,,,LA,,,,Paul Goppelt,42291 Clouatre Rd.,,Gonzales,LA,70737,5,225-675-8002,W,M,R,62,2/23/2012,2/23/2008, +RSCC Member ," 59th Representative District, Subdistrict B ",,,,LA,,,,Tonya Veazey,40097 Ronda Ave.,,Prairieville,LA,70769,5,225-955-3085,W,F,R,62,2/23/2012,2/23/2008, +RSCC Member ," 59th Representative District, Subdistrict C ",,,,LA,,,,George Valentine,13323 Hwy. 73,,Geismar,LA,70734,5,225-673-6973,W,M,R,62,2/23/2012,2/23/2008, +RSCC Member , 60th Representative District ,,,,LA,,,,Garry McClure,"25125 Gasper Street, Lot #42",,Plaquemine,LA,70764,5,225-687-7636,W,M,R,62,2/23/2012,2/23/2008, +RSCC Member , 61st Representative District ,,,,LA,,,,Dan Richey,725 Parlange Dr.,,Baton Rouge,LA,70806,5,225-252-9076,W,M,R,62,2/23/2012,2/23/2008, +RSCC Member ," 62nd Representative District, Subdistrict A ",,,,LA,,,,Rick Guillory,P. O. Box 434,,Slaughter,LA,70777,5,225-658-2987,W,M,R,62,2/23/2012,2/23/2008, +RSCC Member ," 62nd Representative District, Subdistrict B ",,,,LA,,,,"James ""Jimmy"" Kaiser",5923 Afton Villa Way,,St. Francisville,LA,70775,5,225-634-1440,W,M,R,62,2/23/2012,2/23/2008, +RSCC Member , 63rd Representative District ,,,,LA,,,,Barbara Thomas,7081 Modesto Ave.,,Baton Rouge,LA,70811,5,225-885-8856,,,,62,,11/12/2009,Ms. Thomas +RSCC Member ," 64th Representative District, Subdistrict A ",,,,LA,,,,Gordon Atwell,35635 Woodland Ridge Dr.,,Denham Springs,LA,70706,5,225-664-5066,W,M,R,62,2/23/2012,2/23/2008, +RSCC Member ," 64th Representative District, Subdistrict B ",,,,LA,,,,Valarie Hodges,33885 Cypress Bluff,,Denham Springs,LA,70706,5,225-667-0101,W,F,R,62,2/23/2012,2/23/2008, +RSCC Member ," 64th Representative District, Subdistrict C ",,,,LA,,,,Daniel Edwards,11971 Cline Dr.,,Baker,LA,70714,5,225-276-9106,W,M,R,62,2/23/2012,2/23/2008, +RSCC Member ," 65th Representative District, Subdistrict A ",,,,LA,,,,Scott Wilfong,2122 Palmwood Dr.,,Baton Rouge,LA,70816,5,225-272-2525,W,M,R,62,2/23/2012,2/23/2008, +RSCC Member ," 65th Representative District, Subdistrict B ",,,,LA,,,,"""Ron"" Erickson, Sr.",6633 Audusson Dr.,,Greenwell Springs,LA,70739,5,225-262-1605,W,M,R,62,2/23/2012,2/23/2008, +RSCC Member ," 65th Representative District, Subdistrict C ",,,,LA,,,,Gerald Phares,22101 Greenwell Springs Rd.,,Greenwell Springs,LA,70739,5,225-261-3123,W,M,R,62,2/23/2012,2/23/2008, +RSCC Member ," 66th Representative District, Subdistrict A ",,,,LA,,,,Gene Guffey,4420 Lake Limestone,,Baton Rouge,LA,70816,5,225-292-5943,W,M,R,62,2/23/2012,2/23/2008, +RSCC Member ," 66th Representative District, Subdistrict B ",,,,LA,,,,Malcolm Richard,1632 Tudor Dr.,,Baton Rouge,LA,70815,5,225-924-4098,W,M,R,62,2/23/2012,2/23/2008, +RSCC Member ," 66th Representative District, Subdistrict C ",,,,LA,,,,Ray Williams,9575 Goodwood Blvd.,,Baton Rouge,LA,70815,5,225-505-9699,W,M,R,62,2/23/2012,2/23/2008, +RSCC Member , 67th Representative District ,,,,LA,,,,Gail Dignam,150 3rd St. #404,,Baton Rouge,LA,70801,5,225-248-8555,W,F,R,62,2/23/2012,2/23/2008, +RSCC Member ," 68th Representative District, Subdistrict A ",,,,LA,,,,Michael Chittom,4734 Hundred Oaks Ave.,,Baton Rouge,LA,70808,5,225-926-0667,W,M,R,62,2/23/2012,2/23/2008, +RSCC Member ," 68th Representative District, Subdistrict B ",,,,LA,,,,"""Ted"" Baldwin",3030 Congress Blvd. Apt. 55,,Baton Rouge,LA,70808,5,225-924-5107,W,M,R,62,2/23/2012,2/23/2008, +RSCC Member ," 68th Representative District, Subdistrict C ",,,,LA,,,,John J. Price,17512 Five Oaks Dr.,,Baton Rouge,LA,70810,5,225-753-5338,W,M,R,62,2/23/2012,2/23/2008, +RSCC Member ," 69th Representative District, Subdistrict A ",,,,LA,,,,Erich Ponti,1445 Thibodeaux Ave.,,Baton Rouge,LA,70806,5,225-925-9069,W,M,R,62,2/23/2012,2/23/2008, +RSCC Member ," 69th Representative District, Subdistrict B ",,,,LA,,,,"""Tommy"" French",5015 Parkhollow Dr.,,Baton Rouge,LA,70816,5,225-293-0650,W,M,R,62,2/23/2012,2/23/2008, +RSCC Member ," 69th Representative District, Subdistrict C ",,,,LA,,,,David Fakouri,P.O. Box 86255,,Baton Rouge,LA,70879,5,225-921-9735,W,M,R,62,2/23/2012,2/23/2008, +RSCC Member ," 69th Representative District, Subdistrict D ",,,,LA,,,,Ryan Booth,6417 Snowden Dr.,,Baton Rouge,LA,70817,5,225-803-2062,W,M,R,62,2/23/2012,2/23/2008, +RSCC Member ," 70th Representative District, Subdistrict A ",,,,LA,,,,Ellen Wray-Davis,10426 Springpark Ave.,,Baton Rouge,LA,70810,5,225-328-4983,W,F,R,62,2/23/2012,2/23/2008, +RSCC Member ," 70th Representative District, Subdistrict B ",,,,LA,,,,"""Al"" Krotoski",11620 Rue de Tonti,,Baton Rouge,LA,70810,5,225-769-7496,W,M,R,62,2/23/2012,2/23/2008, +RSCC Member ," 70th Representative District, Subdistrict C ",,,,LA,,,,Dan Kyle,818 Woodleigh Dr.,,Baton Rouge,LA,70810,5,225-978-1455,W,M,R,62,2/23/2012,2/23/2008, +RSCC Member ," 70th Representative District, Subdistrict D ",,,,LA,,,,Craig Lindsay,9832 Ginger Place Dr.,,Baton Rouge,LA,70817,5,225-756-0685,W,M,R,62,2/23/2012,2/23/2008, +RSCC Member ," 71st Representative District, Subdistrict A ",,,,LA,,,,"Robert W. ""Bob"" Morgan",232 Third St.,,Denham Springs,LA,70726,5,225-223-2144,W,M,R,62,2/23/2012,2/23/2008, +RSCC Member ," 71st Representative District, Subdistrict B ",,,,LA,,,,James Tullier,27300 Tullier Ln.,,Denham Springs,LA,70726,5,225-664-7063,W,M,R,62,2/23/2012,2/23/2008, +RSCC Member ," 71st Representative District, Subdistrict C ",,,,LA,,,,Gerald L. Burns,28630 Juban Road,,Denham Springs,LA,70726,5,225-664-3463,W,M,R,62,2/23/2012,2/23/2008, +RSCC Member ," 72nd Representative District, Subdistrict A ",,,,LA,,,,,,,,,,0,,,,,62,,, +RSCC Member ," 72nd Representative District, Subdistrict B ",,,,LA,,,,Adonica Duggan,13881 Morning Glory,,Norwood,LA,70761,5,,,,,62,,6/7/2008,Ms. Duggan +RSCC Member ," 73rd Representative District, Subdistrict A ",,,,LA,,,,"""Mike"" Whitlow",P. O. Box 636,,Ponchatoula,LA,70454,5,985-386-3873,W,M,R,62,2/23/2012,2/23/2008, +RSCC Member ," 73rd Representative District, Subdistrict B ",,,,LA,,,,George R. Holton,44260 Easy St.,,Hammond,LA,70403,5,985-345-6085,,,R,62,2/23/2012,2/23/2008, +RSCC Member ," 73rd Representative District, Subdistrict C ",,,,LA,,,,Frank Schneider,41317 Rue Chene,,Ponchatoula,LA,70454,5,225-414-0069,W,M,R,62,2/23/2012,2/23/2008, +RSCC Member ," 74th Representative District, Subdistrict A ",,,,LA,,,,Scott Simon,P. O. Box 38,,Abita Springs,LA,70420,5,985-630-4834,,,R,62,2/23/2012,2/23/2008,Mr. Simon +RSCC Member ," 74th Representative District, Subdistrict B ",,,,LA,,,,Christopher David Trahan,18621 Hosmer Mill Rd.,,Covington,LA,70435-7625,10,985-264-7573,W,M,R,62,2/23/2012,2/23/2008, +RSCC Member ," 74th Representative District, Subdistrict C ",,,,LA,,,,,,,,,,0,,,,,62,,, +RSCC Member ," 75th Representative District, Subdistrict A ",,,,LA,,,,,,,,,,0,,,,,62,,, +RSCC Member ," 75th Representative District, Subdistrict B ",,,,LA,,,,"Conrad ""Chip"" McVea",1022 Needle Rd.,,Franklinton,LA,70438,5,985-839-5500,W,M,R,62,2/23/2012,2/23/2008, +RSCC Member ," 76th Representative District, Subdistrict A ",,,,LA,,,,"""Ray"" Canada",P. O. Box 264,,Slidell,LA,70459-0264 ,11,985-640-0266,W,M,R,62,2/23/2012,2/23/2008, +RSCC Member ," 76th Representative District, Subdistrict B ",,,,LA,,,,Lee Balinas,2049 Old River Rd.,,Slidell,LA,70461,5,985-445-8037,W,M,R,62,2/23/2012,2/23/2008, +RSCC Member ," 76th Representative District, Subdistrict C ",,,,LA,,,,Renee McWaters,300 Military Rd. Apt 29,,Slidell,LA,70431,5,985-640-8152,,,,62,,8/29/2009,Ms. McWaters +RSCC Member ," 76th Representative District, Subdistrict D ",,,,LA,,,,"""A. G."" Crowe",201 Crowe Landing Rd.,,Pearl River,LA,70452,5,985-788-9772,W,M,R,62,2/23/2012,2/23/2008, +RSCC Member ," 77th Representative District, Subdistrict A ",,,,LA,,,,"Matthew ""Matt"" Faust",602 Phyllis Dr.,,Covington,LA,70433,5,985-893-3740,W,M,R,62,2/23/2012,2/23/2008, +RSCC Member ," 77th Representative District, Subdistrict B ",,,,LA,,,,Lester P. Dore,70280 First St.,,Covington,LA,70433,5,504-905-5365,W,M,R,62,2/23/2012,2/23/2008, +RSCC Member ," 77th Representative District, Subdistrict C ",,,,LA,,,,Sandra Bailey-Simmons,49366 Ravenwood Dr.,,Loranger,LA,70446,5,985-345-4562,W,F,R,62,2/23/2012,2/23/2008, +RSCC Member ," 77th Representative District, Subdistrict D ",,,,LA,,,,Suzanne Crow,135 Tchefuncta South Dr.,,Covington,LA,70433-7809,10,985-792-1362,,,R,62,2/23/2012,2/23/2008, +RSCC Member ," 78th Representative District, Subdistrict A ",,,,LA,,,,Paul D. Johnston,1408 N Cumberland St.,,Metairie,LA,70003,5,504-305-5311,W,M,R,62,2/23/2012,2/23/2008, +RSCC Member ," 78th Representative District, Subdistrict B ",,,,LA,,,,"John ""Big John"" Illg",1308 Trudeau Dr.,,Metairie,LA,70003,5,504-469-6884,W,M,R,62,2/23/2012,2/23/2008, +RSCC Member ," 78th Representative District, Subdistrict C ",,,,LA,,,,Stewart Lagarde,331 Midway Dr.,,River Ridge,LA,70123,5,504-737-7405,W,M,R,62,2/23/2012,2/23/2008, +RSCC Member ," 78th Representative District, Subdistrict D ",,,,LA,,,,Paul D. Johnston,525 Kenmore Dr.,,Harahan,LA,70123,5,504-737-4345,W,M,R,62,2/23/2012,2/23/2008, +RSCC Member ," 79th Representative District, Subdistrict A ",,,,LA,,,,"Edmond J. ""Ed"" Muniz",P. O. Box 641275,,Kenner,LA,70065,5,504-466-5958,W,M,R,62,2/23/2012,2/23/2008, +RSCC Member ," 79th Representative District, Subdistrict B ",,,,LA,,,,Betty Bonura,1009 Chateau Lafitte Dr.,,Kenner,LA,70065,5,504-467-7402,W,F,R,62,2/23/2012,2/23/2008, +RSCC Member ," 79th Representative District, Subdistrict C ",,,,LA,,,,"""Debbie"" Settoon",5321 Toby Lane,,Kenner,LA,70065,5,,W,F,R,62,2/23/2012,2/23/2008, +RSCC Member ," 79th Representative District, Subdistrict D ",,,,LA,,,,Archie Corder,5501 W. Esplanade Ave.,,Metairie,LA,70003,5,504-455-9864,W,M,R,62,2/23/2012,2/23/2008, +RSCC Member ," 80th Representative District, Subdistrict A ",,,,LA,,,,"Vinson J. ""Vince"" Serio",4416 West Esplanade Ave.,,Metairie,LA,70006,5,504-885-6382,W,M,R,62,2/23/2012,2/23/2008, +RSCC Member ," 80th Representative District, Subdistrict B ",,,,LA,,,,Lynn E. Skidmore,3207 Belmont Pl. Apt. 210,,Metairie,LA,70002,5,504-780-1788,W,F,R,62,2/23/2012,2/23/2008, +RSCC Member ," 80th Representative District, Subdistrict C ",,,,LA,,,,"Joseph P. Lopinto, Jr.",1608 Green Ave.,,Metairie,LA,70001,5,504-454-6178,W,M,R,62,2/23/2012,2/23/2008, +RSCC Member ," 81st Representative District, Subdistrict A ",,,,LA,,,,Charlotte P. Ruiz,4612 Richland Ave.,,Metairie,LA,70002,5,504-887-8992,W,F,R,62,2/23/2012,2/23/2008, +RSCC Member ," 81st Representative District, Subdistrict B ",,,,LA,,,,"Roger F. Villere, Jr.",838 Aurora Ave.,,Metairie,LA,70005,5,504-830-4505,W,M,R,62,2/23/2012,2/23/2008, +RSCC Member ," 81st Representative District, Subdistrict C ",,,,LA,,,,John S. Treen,112 Charleston Park,,Metairie,LA,70005,5,504-835-6936,W,M,R,62,2/23/2012,2/23/2008, +RSCC Member ," 81st Representative District, Subdistrict D ",,,,LA,,,,Monica L. Monica,411 Betz Pl.,,Metairie,LA,70005,5,504-832-0608,W,F,R,62,2/23/2012,2/23/2008, +RSCC Member ," 82nd Representative District, Subdistrict A ",,,,LA,,,,Keith Rush,1004 Green Acres Rd.,,Metairie,LA,70003,5,504-888-7718,W,M,R,62,2/23/2012,2/23/2008, +RSCC Member ," 82nd Representative District, Subdistrict B ",,,,LA,,,,Daniel Shanks,7 Pats Pl.,,Metairie,LA,70001,5,504-975-4601,W,M,R,62,2/23/2012,2/23/2008, +RSCC Member ," 82nd Representative District, Subdistrict C ",,,,LA,,,,Bruce P. Donnelly,3922 Audubon Trace,,Jefferson,LA,70121,5,504-453-1598,W,M,R,62,2/23/2012,2/23/2008, +RSCC Member ," 83rd Representative District, Subdistrict A ",,,,LA,,,,George A. Peterson,233 Modern Farms Rd.,,Waggaman,LA,70094,5,504-431-0144,W,M,R,62,2/23/2012,2/23/2008, +RSCC Member ," 83rd Representative District, Subdistrict B ",,,,LA,,,,Danyelle Taylor,617 Vic St.,,Westwego,LA,70094,5,504-347-3840,W,F,R,62,2/23/2012,2/23/2008, +RSCC Member ," 84th Representative District, Subdistrict A ",,,,LA,,,,Rickey J. Ullo,1705 Winchester Pl.,,Harvey,LA,70058,5,504-348-9787,W,M,R,62,2/23/2012,2/23/2008, +RSCC Member ," 84th Representative District, Subdistrict B ",,,,LA,,,,"Constance ""Connie"" Forstater",2628 Oak Forest Blvd.,,Marrero,LA,70072,5,,W,F,R,62,2/23/2012,2/23/2008, +RSCC Member ," 85th Representative District, Subdistrict A ",,,,LA,,,,Keith B. Hall,8 Willow Dr.,,Gretna,LA,70053,5,504-366-2632,W,M,R,62,2/23/2012,2/23/2008, +RSCC Member ," 85th Representative District, Subdistrict B ",,,,LA,,,,"""Billy"" Arnold",2283 S. Von Braun Ct.,,Harvey,LA,70058,5,504-368-4292,W,M,R,62,2/23/2012,2/23/2008, +RSCC Member ," 86th Representative District, Subdistrict A ",,,,LA,,,,"Wallace Lucas, Sr.",2505 Park Pl.,,Terrytown,LA,70056,5,504-251-9888,B,M,R,62,2/23/2012,2/23/2008, +RSCC Member ," 86th Representative District, Subdistrict B ",,,,LA,,,,Paul Richard,10 Annandale Ct.,,New Orleans,LA,70131,5,504-394-5056,W,M,R,62,2/23/2012,2/23/2008, +RSCC Member , 87th Representative District ,,,,LA,,,,"Robert ""Bob"" Muniz",3720 Burntwood Dr.,,Harvey,LA,70058,5,504-347-2516,W,M,R,62,2/23/2012,2/23/2008, +RSCC Member ," 88th Representative District, Subdistrict A ",,,,LA,,,,"""Chip"" McCorkle",16254 Ole Homestead Ln.,,,LA,70769,5,225-622-1687,W,M,R,62,2/23/2012,2/23/2008, +RSCC Member ," 88th Representative District, Subdistrict B ",,,,LA,,,,Floyd Gonzalez,14112 Forest Glen Ln.,,Walker,LA,70785,5,225-664-4169,W,M,R,62,2/23/2012,2/23/2008, +RSCC Member ," 88th Representative District, Subdistrict C ",,,,LA,,,,,,,,,,0,,,,,62,,, +RSCC Member ," 88th Representative District, Subdistrict D ",,,,LA,,,,,,,,,,0,,,,,62,,, +RSCC Member ," 89th Representative District, Subdistrict A ",,,,LA,,,,Jan McAllister,224 Queen Anne Dr.,,Slidell,LA,70460,5,,,,,62,,6/7/2008, +RSCC Member ," 89th Representative District, Subdistrict B ",,,,LA,,,,"""Betty"" Viener",204 Evangeline Dr.,,Mandeville,LA,70471,5,985-845-2500,,F,R,62,2/23/2012,2/23/2008, +RSCC Member ," 89th Representative District, Subdistrict C ",,,,LA,,,,Lorraine Peterson,245 Lake Vista Dr.,,Mandeville,LA,70471-8207,10,985-626-5588,W,F,R,62,2/23/2012,2/23/2008, +RSCC Member ," 89th Representative District, Subdistrict D ",,,,LA,,,,Jonathon James,65570 Mulberry St.,,Mandeville,LA,70448,5,,,,,62,,6/7/2008, +RSCC Member ," 89th Representative District, Subdistrict E ",,,,LA,,,,Malcolm B. Sonnier,1625 Penrose St.,,Mandeville,LA,70448,5,985-626-9721,W,M,R,62,2/23/2012,2/23/2008, +RSCC Member ," 90th Representative District, Subdistrict A ",,,,LA,,,,"Thomas ""Rocky"" Thompson",217 Windward Passage St.,,Slidell,LA,70458-9132,10,985-285-1767,W,M,R,62,2/23/2012,2/23/2008, +RSCC Member ," 90th Representative District, Subdistrict B ",,,,LA,,,,,,,,,,0,,,,,62,,, +RSCC Member ," 90th Representative District, Subdistrict C ",,,,LA,,,,Randy Lawshe,38204 Joan Dr.,,Pearl River,LA,70452-3504,10,985-778-5582,W,F,R,62,2/23/2012,2/23/2008, +RSCC Member ," 90th Representative District, Subdistrict D ",,,,LA,,,,John O'Neil,134 Kingston Dr.,,Slidell,LA,70458,5,985-646-2054,W,M,R,62,2/23/2012,2/23/2008, +RSCC Member , 91st Representative District ,,,,LA,,,,"John Musser, V",1218 Napoleon Ave.,,New Orleans,LA,70115,5,504-899-4411,W,M,R,62,2/23/2012,2/23/2008, +RSCC Member ," 92nd Representative District, Subdistrict A ",,,,LA,,,,Michael J. McMyne,3229 Roosevelt,,Kenner,LA,70065,5,504-352-1700,W,M,R,62,2/23/2012,2/23/2008, +RSCC Member ," 92nd Representative District, Subdistrict B ",,,,LA,,,,"Arthur ""Art"" Tudela",1609 Hudson St.,,Kenner,LA,70062,5,504-466-2159,W,M,R,62,2/23/2012,2/23/2008, +RSCC Member , 93rd Representative District ,,,,LA,,,,"Joseph ""Joe"" Lavigne","700 S. Peters St, #202",,New Orleans,LA,70130,5,504-524-1880,W,M,R,62,2/23/2012,2/23/2008, +RSCC Member ," 94th Representative District, Subdistrict A ",,,,LA,,,,"John ""Jay"" Batt, Jr.",230 Carondelet St.,,New Orleans,LA,70130,5,504-528-1073,W,M,R,62,2/23/2012,2/23/2008, +RSCC Member ," 94th Representative District, Subdistrict B ",,,,LA,,,,Sal Palmisano,3135 De Saix Blvd.,,New Orleans,LA,70119,5,504-858-3137,W,M,R,62,2/23/2012,2/23/2008, +RSCC Member ," 94th Representative District, Subdistrict C ",,,,LA,,,,"Emile ""Peppi"" Bruneau",6979 Argonne Blvd.,,New Orleans,LA,70124,5,504-288-1200,W,M,R,62,2/23/2012,2/23/2008, +RSCC Member , 95th Representative District ,,,,LA,,,,David Toso,15 Audubon Blvd.,,New Orleans,LA,70118,5,504-621-3283,W,M,R,62,2/23/2012,2/23/2008, +RSCC Member , 96th Representative District ,,,,LA,,,,Stephen M. Swain,1129 Bourbon St.,,New Orleans,LA,70116,5,504-523-7047,,M,R,62,2/23/2012,2/23/2008, +RSCC Member , 97th Representative District ,,,,LA,,,,Lloyd A. Harsch,4337 Seminary Pl.,,New Orleans,LA,70126,5,817-733-0260,W,M,R,62,2/23/2012,2/23/2008, +RSCC Member ," 98th Representative District, Subdistrict A ",,,,LA,,,,"John ""Fenn"" French",230 Carondelet St.,,New Orleans,LA,70130,5,504-593-9953,W,M,R,62,2/23/2012,2/23/2008, +RSCC Member ," 98th Representative District, Subdistrict B ",,,,LA,,,,David Kepper,2715 Calhoun St.,,New Orleans,LA,70118,5,504-582-4632,W,M,R,62,2/23/2012,2/23/2008, +RSCC Member , 99th Representative District ,,,,LA,,,,,,,,,,0,,,,,62,,, +RSCC Member ,100th Representative District ,,,,LA,,,,Lynn D. Cawthorne,1511 Oakdale St.,,Shreveport,LA,71108,5,,,,,62,,3/16/2009, +RSCC Member ,101st Representative District ,,,,LA,,,,Meryl B. Duroncelet,7220 Lake Willow Dr.,,New Orleans,LA,70126,5,504-439-2812,,F,R,62,2/23/2012,2/23/2008, +RSCC Member ,102nd Representative District ,,,,LA,,,,Irene Burrus,2820 Bristol Pl.,,New Orleans,LA,70131,5,504-392-1449,W,F,R,62,2/23/2012,2/23/2008, +RSCC Member ,"103rd Representative District, Subdistrict A ",,,,LA,,,,"Anh ""Joseph"" Cao",4371 Murano Rd.,,New Orleans,LA,70129,5,504-368-0491,O,M,R,62,2/23/2012,2/23/2008, +RSCC Member ,"103rd Representative District, Subdistrict B ",,,,LA,,,,Michael Bayham,212 W. St. Jean Baptist St.,,Chalmette,LA,70044,5,504-258-4467,W,M,R,62,2/23/2012,2/23/2008, +RSCC Member ,"104th Representative District, Subdistrict A ",,,,LA,,,,Therese Melerine Benit,2129 Valmar Dr.,,Meraux,LA,70075,5,504-271-2844,W,F,R,62,2/23/2012,2/23/2008, +RSCC Member ,"104th Representative District, Subdistrict B ",,,,LA,,,,David Peralta,4408 Newport Dr.,,Meraux,LA,70075,5,504-220-7334,W,M,R,62,2/23/2012,2/23/2008, +RSCC Member ,"105th Representative District, Subdistrict A ",,,,LA,,,,"""Jeff"" DiMarco",232 Bergeron Dr.,,Belle Chasse,LA,70037,5,504-812-4009,W,M,R,62,2/23/2012,2/23/2008, +RSCC Member ,"105th Representative District, Subdistrict B ",,,,LA,,,,Louise Broach Fischer,106 Beaupre Dr.,,Luling,LA,70070,5,985-785-2819,W,F,R,62,2/23/2012,2/23/2008, +Governor ,,P.O. Box 94004,,Baton Rouge,LA,70804-9004,504-342-7015,,Bobby Jindal,P.O. Box 94004,,Baton Rouge,LA,70804,5,225-756-7969,O,M,R,100,1/9/2012,1/14/2008,Governor Jindal +Lieutenant Governor ,,P.O. Box 44243,,Baton Rouge,LA,70804-4243,504-342-7009,,Mitch Landrieu,P.O. Box 44243,,Baton Rouge,LA,70804-4243,10,504-837-0770,W,M,D,105,1/9/2012,1/14/2008,Mr. Landrieu +Secretary of State ,,P.O. Box 94125,,Baton Rouge,LA,70804-9125,225-342-4479,,Jay Dardenne,P.O. Box 94125,,Baton Rouge,LA,70804-9125,10,225-926-7555,W,M,R,110,1/9/2012,1/14/2008,Mr. Dardenne +Attorney General ,,P. O. Box 94005,,Baton Rouge,LA,70804-9005,225-326-6000,,"James D. ""Buddy"" Caldwell",P. O. Box 94005,,Baton Rouge,LA,70804-9005,10,318-574-1706,W,M,D,115,1/9/2012,1/14/2008,Mr. Caldwell +State Treasurer ,,P.O. Box 44154,,Baton Rouge,LA,70804-0154 ,504-342-0010,,John Neely Kennedy,P.O. Box 44154,,Baton Rouge,LA,70804-0154 ,11,985-845-0056,W,M,R,120,1/9/2012,1/14/2008,Mr. Kennedy +Commissioner ,Department of Agriculture and Forestry ,P.O. Box 631,,Baton Rouge,LA,70821-0631 ,225-922-1234,,Mike Strain,P.O. Box 631,,Baton Rouge,LA,70821-0631 ,11,985-893-1935,W,M,R,125,1/9/2012,1/14/2008,Mr. Strain +Commissioner ,Department of Insurance ,P.O. Box 94214,,Baton Rouge,LA,70804-9214,225-342-5900,,James J. Donelon,P.O. Box 94214,,Baton Rouge,LA,70804-9214,10,504-455-6503,W,M,R,130,1/9/2012,1/14/2008,Mr. Donelon +U. S. Senator ,,"2800 Veterans Blvd, Ste. 201, Metairie, LA 70002-Vitter",,500 Poydras St.,LA,,,,Mary Landrieu,"500 Poydras St., Rm. 105",,New Orleans,LA,70130,5,504-589-2427,W,F,D,140,1/3/2015,1/3/2009,Senator Landrieu +U. S. Senator ,,"2800 Veterans Blvd, Ste. 201, Metairie, LA 70002-Vitter",,500 Poydras St.,LA,,,,David Vitter,"2800 Veterans Blvd., Ste. 201",,Metairie,LA,70002,5,504-589-2753,,,R,140,1/3/2011,1/3/2005,Senator Vitter +U. S. Representative ,1st Congressional District ,"3525 North Causeway Blvd., Ste. 1020",,Metairie,LA,70002,504-837-1259,,"""Steve"" Scalise","3525 North Causeway Blvd., Ste. 1020",,Metairie,LA,70002,5,504-831-3105,W,M,R,145,1/3/2011,1/3/2009,Congressman Scalise +U. S. Representative ,2nd Congressional District ,"501 Magazine St., Ste. 1012",,New Orleans,LA,70130,504-589-2274,,"Anh ""Joseph"" Cao",4640 South Carrollton Ave. Ste. 120,,New Orleans,LA,70119,5,504-483-2325,O,M,R,145,1/3/2011,1/3/2009,Congressman Cao +U. S. Representative ,3rd Congressional District ,"828 S. Irma Blvd., Ste. 107",,Gonzales,LA,70737,225-621-8490,,"""Charlie"" Melancon",P. O. Box 549,,Napoleonville,LA,70390,5,985-369-7785,W,M,D,145,1/3/2011,1/3/2009,Congressman Melancon +U. S. Representative ,4th Congressional District ,"6425 Youree Dr., Ste. 350",,Shreveport,LA,71105,318-798-2254,,John Fleming,"6425 Youree Dr., Ste. 350",,Shreveport,LA,71105,5,318-377-7464,W,M,R,145,1/3/2011,1/3/2009,Congressman Fleming +U. S. Representative ,5th Congressional District ,"1900 Stubbs Ave., Ste. B",,Monroe,LA,71201,318-322-3500,,Rodney Alexander,"1900 Stubbs Ave., Ste. B",,Monroe,LA,71201,5,318-259-4587,W,M,R,145,1/3/2011,1/3/2009,Congressman Alexander +U. S. Representative ,6th Congressional District ,"5555 Hilton Ave., Ste. 100",,Baton Rouge,LA,70808,225-929-7711,,"William ""Bill"" Cassidy","5555 Hilton Ave., Ste. 100",,Baton Rouge,LA,70808,5,225-387-2455,W,M,R,145,1/3/2011,1/3/2009,Congressman Cassidy +U. S. Representative ,7th Congressional District ,"800 Lafayette St., Ste. 1400",,Lafayette,LA,70501,337-235-6322,,"Charles W. Boustany, Jr.","800 Lafayette St., Ste. 1400",,Lafayette,LA,70501,5,337-993-3829,W,M,R,145,1/3/2011,1/3/2009,Congressman Boustany +Associate Justice ,1st Supreme Court District of Louisiana ,"400 Royal St., Ste. 4200",,New Orleans,LA,70130,504-310-2300,,Greg Guidry,300 Normandy Dr.,,Nine Mile Point,LA,70094,5,504-436-3711,W,M,R,150,12/31/2018,1/1/2009,Justice Guidry +Associate Justice ,2nd Supreme Court District of Louisiana ,"400 Royal St., Ste. 4200",,New Orleans,LA,70130,504-310-2300,,Jeffrey P. Victory,244 Wedgewood Dr.,,Shreveport,LA,71105,5,318-227-3710,W,M,R,150,12/31/2014,1/1/2005,Judge Victory +Associate Justice ,3rd Supreme Court District of Louisiana ,"400 Royal St., Ste. 4200",,New Orleans,LA,70130,504-310-2300,,Jeannette Theriot Knoll,148 Tarleton St.,,Marksville,LA,71351,5,318-253-9735,W,F,D,150,12/31/2016,1/1/2007,Judge Knoll +Associate Justice ,4th Supreme Court District of Louisiana ,"400 Royal St., Ste. 4200",,New Orleans,LA,70130,504-310-2300,,Marcus R. Clark,360 Harrell Rd.,,West Monroe,LA,71291,5,318-361-2296,W,M,R,150,12/31/2016,10/27/2009,Justice Clark +Associate Justice ,5th Supreme Court District of Louisiana ,"400 Royal St., Ste. 4200",,New Orleans,LA,70130,504-310-2300,,"Catherine D. ""Kitty"" Kimball",7836 Bennett Dr.,,Ventress,LA,70783,5,225-638-7405,W,F,D,150,12/31/2018,1/1/2009,Justice Kimball +Associate Justice ,6th Supreme Court District of Louisiana ,"400 Royal St., Ste. 4200",,New Orleans,LA,70130,504-310-2300,,John L. Weimer,H762 Hwy. 308,,Thibodaux,LA,70301,5,985-447-9066,W,M,D,150,12/31/2012,1/1/2003,Justice Weimer +Associate Justice ,7th Supreme Court District of Louisiana ,"400 Royal St., Ste. 4200",,New Orleans,LA,70130,504-310-2300,,Bernette Joshua Johnson,#6 Park Timbers Dr.,,New Orleans,LA,70131,5,504-393-0902,B,F,D,150,12/31/2010,1/1/2001,Justice Johnson +"Judge, Court of Appeal ","1st Cir., 2nd Dist., Subdist. 1, Div. A ",1600 N. Third St.,,Baton Rouge,LA,70802,225-382-3000,,"""Bob"" Downing",2933 Twelve Oaks Ave.,,Baton Rouge,LA,70820,5,225-389-4706,,,D,155,12/31/2010,1/1/2001,Judge Downing +"Judge, Court of Appeal ","1st Cir., 2nd Dist., Subdist. 1, Div. B ",1600 N. Third St.,,Baton Rouge,LA,70802,225-382-3000,,"""Mike"" McDonald",8742 Trinity Ave.,,Baton Rouge,LA,70806,5,225-389-4722,W,M,R,155,12/31/2012,1/1/2003,Judge McDonald +"Judge, Court of Appeal ","1st Cir., 2nd Dist., Subdist. 1, Div. C ",1600 N. Third St.,,Baton Rouge,LA,70802,225-382-3000,,"Jewel E. ""Duke"" Welch",412 Rue Douceur,,Baker,LA,70714,5,225-774-1649,W,M,R,155,12/31/2014,1/1/2005,Judge Welch +"Judge, Court of Appeal ","1st Cir., 2nd Dist., Subdist. 2, Div. D ",1600 N. Third St.,,Baton Rouge,LA,70802,225-382-3000,,John Michael Guidry,5722 Congress Blvd.,,Baton Rouge,LA,70808,5,225-927-6275,B,M,D,155,12/31/2010,1/1/2002,Judge Guidry +"Judge, Court of Appeal ","1st Circuit, 1st District, Division A ",1600 N. Third St.,,Baton Rouge,LA,70802,225-382-3000,,John T. Pettigrew,115 McAllen Dr.,,Houma,LA,70360,5,985-972-3522,W,M,D,155,12/31/2018,1/1/2009,Judge Pettigrew +"Judge, Court of Appeal ","1st Circuit, 1st District, Division B ",1600 N. Third St.,,Baton Rouge,LA,70802,225-382-3000,,"Edward J. ""Jimmy"" Gaidry",P. O. Box 1916,,Houma,LA,70364,5,985-876-0559,W,M,D,155,12/31/2012,1/1/2003,Mr. Gaidry +"Judge, Court of Appeal ","1st Circuit, 1st District, Division C ",1600 N. Third St.,,Baton Rouge,LA,70802,225-382-3000,,"Randolph ""Randy"" Parro",P.O. Box 5177,,Thibodaux,LA,70302,5,985-447-2185,W,M,D,155,12/31/2014,1/1/2005,Judge Parro +"Judge, Court of Appeal ","1st Circuit, 1st District, Division D ",1600 N. Third St.,,Baton Rouge,LA,70802,225-382-3000,,Vanessa Guidry-Whipple,P. O. Drawer 2667,,Houma,LA,70361,5,985-876-4034,W,F,D,155,12/31/2012,1/1/2003,Judge Guidry-Whipple +"Judge, Court of Appeal ","1st Circuit, 3rd District, Division A ",1600 N. Third St.,,Baton Rouge,LA,70802,225-382-3000,,"James E. ""Jimmy"" Kuhn",253 West Oak St.,,Ponchatoula,LA,70454,5,985-386-6082,W,M,R,155,12/31/2014,1/1/2005,Judge Kuhn +"Judge, Court of Appeal ","1st Circuit, 3rd District, Division B ",1600 N. Third St.,,Baton Rouge,LA,70802,225-382-3000,,Page McClendon,807 Tops'l Dr.,,Mandeville,LA,70448,5,985-674-7717,W,F,R,155,12/31/2012,1/1/2003,Judge McClendon +"Judge, Court of Appeal ","1st Circuit, 3rd District, Division C ",1600 N. Third St.,,Baton Rouge,LA,70802,225-382-3000,,Jefferson Davis Hughes,P.O. Box 453,,Walker,LA,70785,5,225-665-7238,W,M,R,155,12/31/2014,1/1/2005,Judge Hughes +"Judge, Court of Appeal ","1st Circuit, 3rd District, Division D ",1600 N. Third St.,,Baton Rouge,LA,70802,225-382-3000,,Burrell J. Carter,P. O. Box 309,,Greensburg,LA,70441,5,225-342-7251,W,M,D,155,12/31/2012,1/1/2003,Judge Carter +"Judge, Court of Appeal ","2nd Circuit, 1st Dist., Elec. Sect. 1C ",430 Fannin St.,,Shreveport,LA,71101,318-227-3700,,Felicia Toney Williams,P. O. Box 111,,Tallulah,LA,71284-0111 ,11,318-574-3994,B,F,D,155,12/31/2012,1/1/2003,Judge Williams +"Judge, Court of Appeal ","2nd Circuit, 1st Dist., Elec. Sect. 2A ",430 Fannin St.,,Shreveport,LA,71101,318-227-3700,,John Larry Lolley,2409 Pargoud Blvd.,,Monroe,LA,71201-2326,10,318-325-0291,W,M,D,155,12/31/2018,1/1/2009,Judge Lolley +"Judge, Court of Appeal ","2nd Circuit, 1st Dist., Elec. Sect. 2B ",430 Fannin St.,,Shreveport,LA,71101,318-227-3700,,Milton Moore,1404 Fairview Ave.,,Monroe,LA,71201,5,318-322-2147,W,M,D,155,12/31/2012,1/1/2003,Judge Moore +"Judge, Court of Appeal ","2nd Circuit, 2nd Dist, At-Large ",430 Fannin St.,,Shreveport,LA,71101,318-227-3700,,James Jay Caraway,121 Dover Ct.,,Bossier City,LA,71111,5,318-746-6649,W,M,D,155,12/31/2016,1/1/2007,Judge Caraway +"Judge, Court of Appeal ","2nd Circuit, 2nd Dist., Elec. Sec. 1 ",430 Fannin St.,,Shreveport,LA,71101,318-227-3700,,"R. Harmon Drew, Jr.",1002 Broadway St.,,Minden,LA,71055-3313,10,318-377-6289,W,M,D,155,12/31/2018,1/1/2009,Judge Drew +"Judge, Court of Appeal ","2nd Circuit, 2nd Dist., Elec. Sec. 2 ",430 Fannin St.,,Shreveport,LA,71101,318-227-3700,,"Henry N. Brown, Jr.",2606 Village Ln.,,Bossier City,LA,71112,5,318-746-6382,W,M,D,155,12/31/2010,1/1/2001,Judge Brown +"Judge, Court of Appeal ","2nd Circuit, 3rd Dist., Elec. Sect. 1A ",430 Fannin St.,,Shreveport,LA,71101,318-227-3700,,"James E. Stewart, Sr.",430 Fannin St.,,Shreveport,LA,71101,5,318-227-3740,B,M,D,155,12/31/2014,1/1/2005,Judge Stewart +"Judge, Court of Appeal ","2nd Circuit, 3rd Dist., Elec. Sect. 2B ",430 Fannin St.,,Shreveport,LA,71101,318-227-3700,,Charles B. Peatross,P. O. Box 1528,,Shreveport,LA,71165,5,318-227-3750,W,M,D,155,12/31/2012,1/1/2003,Judge Peatross +"Judge, Court of Appeal ","2nd Circuit, 3rd Dist., Elec. Sect. 2C ",430 Fannin St.,,Shreveport,LA,71101,318-227-3700,,Gay Gaskins,P.O. Box 1528,,Shreveport,LA,71165,5,318-227-3770,W,F,R,155,12/31/2010,1/1/2001,Judge Gaskins +"Judge, Court of Appeal ","3rd Circuit, 1st District, Division A ",1000 Main St.,,Lake Charles,LA,70601,318-433-9403,,Elizabeth A. Pickett,P. O. Box 70,,Many,LA,71449,5,318-256-4180,W,F,D,155,12/31/2012,1/1/2003,Judge Pickett +"Judge, Court of Appeal ","3rd Circuit, 1st District, Division B ",1000 Main St.,,Lake Charles,LA,70601,318-433-9403,,Jimmie C. Peters,P.O. Box 1380,,Jena,LA,71342,5,318-992-2663,W,M,D,155,12/31/2016,1/1/2007,Judge Peters +"Judge, Court of Appeal ","3rd Circuit, 1st District, Division C ",1000 Main St.,,Lake Charles,LA,70601,318-433-9403,,Shannon James Gremillion,4721 Collinsburg Dr.,,Alexandria,LA,71303,5,318-487-8672,W,M,D,155,12/31/2016,11/14/2008,Mr. Gremillion +"Judge, Court of Appeal ","3rd Circuit, 2nd Dist., Elec. Sect. 1C ",1000 Main St.,,Lake Charles,LA,70601,318-433-9403,,Ulysses Gene Thibodeaux,3910 Marie Ct.,,Lake Charles,LA,70607,5,337-474-5123,B,M,D,155,12/31/2010,1/1/2001,Judge Thibodeaux +"Judge, Court of Appeal ","3rd Circuit, 2nd Dist., Elec. Sect. 2A ",1000 Main St.,,Lake Charles,LA,70601,318-433-9403,,Joseph David Painter,1001 9th St.,,Lake Charles,LA,70601,5,337-433-8861,W,M,D,155,12/31/2014,1/1/2005,Judge Painter +"Judge, Court of Appeal ","3rd Circuit, 2nd Dist., Elec. Sect. 2B ",1000 Main St.,,Lake Charles,LA,70601,318-433-9403,,Billy H. Ezell,P. O. Box 16577,,Lake Charles,LA,70766,5,337-433-8833,W,M,R,155,12/31/2012,1/1/2003,Justice Ezell +"Judge, Court of Appeal ","3rd Circuit, 3rd Dist., Elec. Sect. 1C ",1000 Main St.,,Lake Charles,LA,70601,318-433-9403,,John Saunders,P. O. Box 566,,Ville Platte,LA,70586,5,337-363-5620,W,M,D,155,12/31/2012,1/1/2003,Judge Saunders +"Judge, Court of Appeal ","3rd Circuit, 3rd Dist., Elec. Sect. 2D ",1000 Main St.,,Lake Charles,LA,70601,318-433-9403,,Sylvia R. Cooks,P. O. Box 3841,,Lafayette,LA,70502,5,337-235-2196,B,F,D,155,12/31/2012,1/1/2003,Judge Cooks +"Judge, Court of Appeal ","3rd Circuit, 3rd Dist., Elec. Sect. 3E ",1000 Main St.,,Lake Charles,LA,70601,318-433-9403,,Oswald Decuir,702 Pintail Ln.,,New Iberia,LA,70560,5,337-369-3540,W,M,D,155,12/31/2012,1/1/2003,Judge Decuir +"Judge, Court of Appeal ","3rd Circuit, 3rd Dist., Elec. Sect. 4F ",1000 Main St.,,Lake Charles,LA,70601,318-433-9403,,Marc Amy,1007 W. St. Mary St.,,Abbeville,LA,70510,5,337-893-0270,,,D,155,12/31/2018,1/1/2009,Judge Amy +"Judge, Court of Appeal ","3rd Circuit, 3rd Dist., Elec. Sect. 5A ",1000 Main St.,,Lake Charles,LA,70601,318-433-9403,,"David Ellis Chatelain, ",100 East Vermilion,,Lafayette,LA,70501,5,,,,,155,,1/4/2010,Judge Chatelain +"Judge, Court of Appeal ","3rd Circuit, 3rd District, Division B ",1000 Main St.,,Lake Charles,LA,70601,318-433-9403,,"""Jimmy"" Genovese",145 Aspen Ln.,,Opelousas,LA,70570,5,337-942-4240,W,M,D,155,12/31/2014,1/1/2005,Judge Genovese +"Judge, Court of Appeal ",4th Circuit at Large ,410 Royal St.,,New Orleans,LA,70130,504-412-6001,,Roland L. Belsome,734 Crystal St.,,New Orleans,LA,70124,5,504-283-0811,W,M,D,155,12/31/2011,3/23/2004,Judge Belsome +"Judge, Court of Appeal ",4th Circuit at Large ,410 Royal St.,,New Orleans,LA,70130,504-412-6001,,"James F. McKay, III",410 Royal St.,,New Orleans,LA,70130-2199,10,504-592-0929,W,M,D,155,12/31/2012,1/1/2003,Judge McKay +"Judge, Court of Appeal ","4th Circuit, 1st District, Division A ",410 Royal St.,,New Orleans,LA,70130,504-412-6001,,Edwin A. Lombard,6200 Oxford Pl.,,New Orleans,LA,70131,5,504-394-3876,,,D,155,12/31/2012,1/1/2003,Judge Lombard +"Judge, Court of Appeal ","4th Circuit, 1st District, Division B ",410 Royal St.,,New Orleans,LA,70130,504-412-6001,,Paul A. Bonin,4224 Canal St.,,New Orleans,LA,70119,5,504-586-0064,,,D,155,12/31/2012,7/21/2008,Judge Bonin +"Judge, Court of Appeal ","4th Circuit, 1st District, Division C ",410 Royal St.,,New Orleans,LA,70130,504-412-6001,,"Dennis R. Bagneris, Sr.",4415 Franklin Ave.,,New Orleans,LA,70122,5,504-412-6000,B,M,D,155,12/31/2018,1/1/2009,Judge Bagneris +"Judge, Court of Appeal ","4th Circuit, 1st District, Division D ",410 Royal St.,,New Orleans,LA,70130,504-412-6001,,"Max N. Tobias, Jr.",P.O. Box 51509,,New Orleans,LA,70151,5,504-412-6074,W,M,D,155,12/31/2016,1/1/2007,Judge Tobias +"Judge, Court of Appeal ","4th Circuit, 1st District, Division E ",410 Royal St.,,New Orleans,LA,70130,504-412-6001,,Terri Love,5809 Canal Blvd.,,New Orleans,LA,70124,5,504-412-6068,B,F,D,155,12/31/2014,1/1/2005,Judge Love +"Judge, Court of Appeal ","4th Circuit, 1st District, Division F ",410 Royal St.,,New Orleans,LA,70130,504-412-6001,,"""Pattie"" Murray",140 Royal St.,,New Orleans,LA,70130,5,504-392-1060,W,F,D,155,12/31/2011,1/1/2002,Judge Murray +"Judge, Court of Appeal ","4th Circuit, 1st District, Division G ",410 Royal St.,,New Orleans,LA,70130,504-412-6001,,Joan Bernard Armstrong,4701 Lafon Dr.,,New Orleans,LA,70126,5,504-241-5155,B,F,D,155,12/31/2011,1/1/2002,Judge Armstrong +"Judge, Court of Appeal ","4th Circuit, 1st District, Division H ",410 Royal St.,,New Orleans,LA,70130,504-412-6001,,Charles R. Jones,6301 Parish Ave.,,New Orleans,LA,70122,5,504-282-4504,B,M,D,155,12/31/2012,1/1/2003,Judge Jones +"Judge, Court of Appeal ","4th Circuit, 2nd District, Division A ",410 Royal St.,,New Orleans,LA,70130,504-412-6001,,"Michael E. ""Mike"" Kirby",P.O. Box 340,,Empire,LA,70050,5,504-657-5037,W,M,D,155,12/31/2011,1/1/2002,Judge Kirby +"Judge, Court of Appeal ","4th Circuit, 3rd District, Division A ",410 Royal St.,,New Orleans,LA,70130,504-412-6001,,David S. Gorbaty,2509 Pakenham Dr.,,Chalmette,LA,70043,5,504-279-0752,W,M,D,155,12/31/2010,1/1/2001,Judge Gorbaty +"Judge, Court of Appeal ","5th Circuit, 1st Dist., Elec. Sect. 2C ",101 Derbigny St.,,Gretna,LA,70053,504-376-1400,,Marc E. Johnson,2214 Rev. Richard Wilson Dr.,,Kenner,LA,70062,5,504-464-0803,B,M,D,155,12/31/2014,4/14/2009,Judge Johnson +"Judge, Court of Appeal ","5th Circuit, 1st District, Division B ",101 Derbigny St.,,Gretna,LA,70053,504-376-1400,,Fredericka Homberg Wicker,2600 Labarre Lane,,Metairie,LA,70001,5,504-831-9070,W,F,R,155,12/31/2010,2/1/2006,Judge Wicker +"Judge, Court of Appeal ","5th Circuit, 1st District, Division D ",101 Derbigny St.,,Gretna,LA,70053,504-376-1400,,Susan M. Chehardy,318 Citrus Rd.,,River Ridge,LA,70123,5,504-738-0857,W,F,R,155,12/31/2012,1/1/2003,Judge Chehardy +"Judge, Court of Appeal ","5th Circuit, 1st District, Division E ",101 Derbigny St.,,Gretna,LA,70053,504-376-1400,,Marion F. Edwards,4951 Authur Ln.,,Barataria,LA,70036,5,504-689-3056,W,M,D,155,12/31/2012,1/1/2003,Judge Edwards +"Judge, Court of Appeal ","5th Circuit, 1st District, Division F ",101 Derbigny St.,,Gretna,LA,70053,504-376-1400,,"Walter J. ""Wally"" Rothschild",4413 Ferran Dr.,,Metairie,LA,70002-3131,10,504-885-3088,W,M,R,155,12/31/2012,1/1/2003,Judge Rothschild +"Judge, Court of Appeal ","5th Circuit, 1st District, Division G ",101 Derbigny St.,,Gretna,LA,70053,504-376-1400,,Clarence E. McManus,824 Bonnabel Blvd.,,Metairie,LA,70005,5,504-833-5475,W,M,R,155,12/31/2012,1/1/2003,Judge McManus +"Judge, Court of Appeal ","5th Circuit, 2nd District, Division A ",101 Derbigny St.,,Gretna,LA,70053,504-376-1400,,Jude G. Gravois,P. O. Box 67,,Vacherie,LA,70090,5,225-265-3923,W,M,D,155,12/31/2010,4/14/2009,Judge Gravois +"Judge, Court of Appeal ","5th Circuit, 3rd District, Division A ",101 Derbigny St.,,Gretna,LA,70053,504-376-1400,,"Edward A. Dufresne, Jr.",14041 River Rd.,,Luling,LA,70070,5,985-785-6233,W,M,D,155,12/31/2012,1/1/2003,Judge Dufresne +Public Service Commission,District 1 ,P. O. Box 91154,,Baton Rouge,LA,70821-9154,225-342-4404,,Eric Skrmetta,P. O. Box 55896,,Metairie,LA,70055,5,504-650-0642,W,M,R,160,12/31/2014,1/1/2009,Mr. Skrmetta +Public Service Commission,District 2 ,P. O. Box 91154,,Baton Rouge,LA,70821-9154,225-342-4404,,Jimmy Field,8743 W. Fairway Dr.,,Baton Rouge,LA,70809,5,225-925-5262,W,M,R,160,12/31/2012,1/1/2007,Mr. Field +Public Service Commission,District 3 ,P. O. Box 91154,,Baton Rouge,LA,70821-9154,225-342-4404,,"Lambert C. Boissiere, III",2910 Castiglione St.,,New Orleans,LA,70119,5,504-949-0789,B,M,D,160,12/31/2010,1/1/2005,Mr. Boissiere +Public Service Commission,District 4 ,P. O. Box 91154,,Baton Rouge,LA,70821-9154,225-342-4404,,Clyde C. Holloway,P.O. Box 340,,Forest Hill,LA,71430,5,318-748-6803,W,M,R,160,12/31/2010,4/15/2009,Mr. Holloway +Public Service Commission,District 5 ,P. O. Box 91154,,Baton Rouge,LA,70821-9154,225-342-4404,,Foster Campbell,1800 Jimmie Davis Hwy.,,Bossier City,LA,71112,5,318-746-2078,W,M,D,160,12/31/2014,1/1/2009,Mr. Campbell +"Member, BESE ",District 1 ,P.O. Box 94064,,Baton Rouge,LA,70804-9064,225-342-5840,,"James ""Jim"" Garvey",4800 Beau Lac Ln.,,Metairie,LA,70002,5,504-304-7755,W,M,R,165,1/9/2012,1/14/2008,Mr. Garvey +"Member, BESE ",District 2 ,P.O. Box 94064,,Baton Rouge,LA,70804-9064,225-342-5840,,Louella P. Givens,2248 11 St.,,Mandeville,LA,70448,5,985-892-6300,B,F,D,165,1/9/2012,1/14/2008,Ms. Givens +"Member, BESE ",District 3 ,P.O. Box 94064,,Baton Rouge,LA,70804-9064,225-342-5840,,Glenny Lee C. Buquet,1309 Bayou Black Dr.,,Houma,LA,70360,5,985-876-5216,W,F,D,165,1/9/2012,1/14/2008,Mr. Buquet +"Member, BESE ",District 4 ,P.O. Box 94064,,Baton Rouge,LA,70804-9064,225-342-5840,,Walter C. Lee,2007 Urbandale St.,,Shreveport,LA,71118,5,318-686-8394,W,M,D,165,1/9/2012,1/14/2008,Mr. Lee +"Member, BESE ",District 5 ,P.O. Box 94064,,Baton Rouge,LA,70804-9064,225-342-5840,,Keith Guice,2307 Valencia Blvd.,,Monroe,LA,71201,5,318-388-0973,W,M,D,165,1/9/2012,1/14/2008,Mr. Guice +"Member, BESE ",District 6 ,P.O. Box 94064,,Baton Rouge,LA,70804-9064,225-342-5840,,"Charles E. ""Chas"" Roemer",6837 Rue Bocage,,Baton Rouge,LA,70809,5,225-925-0451,W,M,R,165,1/9/2012,1/14/2008,Mr. Roemer +"Member, BESE ",District 7 ,P.O. Box 94064,,Baton Rouge,LA,70804-9064,225-342-5840,,Dale Bayard,P.O. Box 5674,,Lake Charles,LA,70606,5,337-477-9494,W,M,D,165,1/9/2012,1/14/2008,Mr. Bayard +"Member, BESE ",District 8 ,P.O. Box 94064,,Baton Rouge,LA,70804-9064,225-342-5840,,Linda M. Johnson,AP.O. Box 866,,Plaquemine,LA,70765,5,225-687-2308,B,F,D,165,1/9/2012,1/14/2008,Ms. Johnson +State Senator, 1st Senatorial District,P. O. Box 94183,,Baton Rouge,LA,70804,225-342-2040,,A. G. Crowe,201 Crowes Landing Rd.,,Pearl River,LA,70452-3712,10,985-788-9772,W,M,R,200,1/9/2012,1/14/2008,Sen. Crowe +State Senator , 2nd Senatorial District ,P. O. Box 94183,,Baton Rouge,LA,70804,225-342-2040,,Ann Duplessis,130 W. Greenbier Dr.,,New Orleans,LA,70128,5,504-243-5149,B,F,D,200,1/9/2012,1/14/2008,Senator Duplessis +State Senator , 3rd Senatorial District ,P. O. Box 94183,,Baton Rouge,LA,70804,225-342-2040,,"""J.P."" Morrell",4645 Music St.,,New Orleans,LA,70122,5,504-286-2334,B,M,D,200,1/9/2012,12/16/2008,Senator Morrell +State Senator , 4th Senatorial District ,P. O. Box 94183,,Baton Rouge,LA,70804,225-342-2040,,Edwin Murray,1540 N. Broad St.,,New Orleans,LA,70119,5,504-945-0042,B,M,D,200,1/9/2012,1/14/2008,Sen. Murray +State Senator , 5th Senatorial District ,P. O. Box 94183,,Baton Rouge,LA,70804,225-342-2040,,"Karen Carter Peterson, ",547 Baronne St. #205,,New Orleans,LA,70113-3901,10,504-309-3538,B,F,D,200,1/9/2012,2/17/2010, +State Senator , 6th Senatorial District ,P. O. Box 94183,,Baton Rouge,LA,70804,225-342-2040,,Julie Quinn,419 Northline,,Metairie,LA,70005,5,504-219-4640,W,F,R,200,1/9/2012,1/14/2008,Sen. Quinn +State Senator , 7th Senatorial District ,P. O. Box 94183,,Baton Rouge,LA,70804,225-342-2040,,David Heitmeier,32 Kings Canyon,,New Orleans,LA,70131,5,504-394-0131,W,M,D,200,1/9/2012,1/14/2008,Senator Heitmeier +State Senator , 8th Senatorial District ,P. O. Box 94183,,Baton Rouge,LA,70804,225-342-2040,,"John A. Alario, Jr.",469 Vine Dr.,,Westwego,LA,70094,5,504-340-2221,W,M,D,200,1/9/2012,1/14/2008,Sen. Alario +State Senator , 9th Senatorial District ,P. O. Box 94183,,Baton Rouge,LA,70804,225-342-2040,,Conrad Appel,3832 Edenborn Ave.,,Metairie,LA,70002,5,504-887-6026,W,M,R,200,1/9/2012,11/14/2008,Mr. Appel +State Senator ,10th Senatorial District ,P. O. Box 94183,,Baton Rouge,LA,70804,225-342-2040,,"Daniel R. ""Danny"" Martiny",622 Carmenere Dr.,,Kenner,LA,70065,5,504-464-9045,W,M,R,200,1/9/2012,1/14/2008,Sen Martiny +State Senator ,11th Senatorial District ,P. O. Box 94183,,Baton Rouge,LA,70804,225-342-2040,,"""Jack"" Donahue",123 Maple Ridge Way,,Covington,LA,70433,5,985-612-1034,W,M,R,200,1/9/2012,1/14/2008,Sen Donahue +State Senator ,12th Senatorial District ,P. O. Box 94183,,Baton Rouge,LA,70804,225-342-2040,,Ben Wayne Nevers,61596 Little Southern Village,,Bogalusa,LA,70427,5,985-732-4062,W,M,D,200,1/9/2012,1/14/2008,Senator Nevers +State Senator ,13th Senatorial District ,P. O. Box 94183,,Baton Rouge,LA,70804,225-342-2040,,Dale Erdey,19875 McLin Rd.,,Livingston,LA,70754,5,225-686-7405,W,M,R,200,1/9/2012,1/14/2008,Senator Erdey +State Senator ,14th Senatorial District ,P. O. Box 94183,,Baton Rouge,LA,70804,225-342-2040,,Yvonne Dorsey,"1520 Thomas Delpit Dr., Ste. 226",,Baton Rouge,LA,70802,5,225-342-9700,B,F,D,200,1/9/2012,1/14/2008,Senator Dorsey +State Senator ,15th Senatorial District ,P. O. Box 94183,,Baton Rouge,LA,70804,225-342-2040,,Sharon Weston Broome,P.O. Box 52783,,Baton Rouge,LA,70892,5,225-275-7995,B,F,D,200,1/9/2012,1/14/2008,Sen Broome +State Senator ,16th Senatorial District ,P. O. Box 94183,,Baton Rouge,LA,70804,225-342-2040,,"""Dan"" Claitor",7520 Perkins Rd. Ste. 170,,Baton Rouge,LA,70808,5,225-757-0159,W,M,R,200,1/9/2012,4/14/2009,Senator Claitor +State Senator ,17th Senatorial District ,P. O. Box 94183,,Baton Rouge,LA,70804,225-342-2040,,"Robert ""Rob"" Marionneaux","19540 Hwy., #77",,Grosse Tete,LA,70740,5,225-648-3115,W,M,D,200,1/9/2012,1/14/2008,Sen Marionneaux +State Senator ,18th Senatorial District ,P. O. Box 94183,,Baton Rouge,LA,70804,225-342-2040,,"""Jody"" Amedee",42418 Clouatre Rd.,,Gonzales,LA,70737,5,225-675-6661,W,M,D,200,1/9/2012,1/14/2008,Senator Amedee +State Senator ,19th Senatorial District ,P. O. Box 94183,,Baton Rouge,LA,70804,225-342-2040,,"Joel T. Chaisson, II",1 Ormond Trace,,Destrehan,LA,70047,5,985-764-9596,W,M,D,200,1/9/2012,1/14/2008,Senator Chaisson +State Senator ,20th Senatorial District ,P. O. Box 94183,,Baton Rouge,LA,70804,225-342-2040,,Norbert N. Chabert,P. O. Box 517,,Chauvin,LA,70344,5,985-594-5024,W,M,D,200,1/9/2012,9/9/2009,Senator Chabert +State Senator ,21st Senatorial District ,P. O. Box 94183,,Baton Rouge,LA,70804,225-342-2040,,"""Butch"" Gautreaux",714 Second St.,,Morgan City,LA,70380-3609,10,985-380-2433,W,M,D,200,1/9/2012,1/14/2008,Sen Gautreaux +State Senator ,22nd Senatorial District ,P. O. Box 94183,,Baton Rouge,LA,70804,225-342-2040,,Troy Hebert,"800 S. Lewis St., Ste. 203",,New Iberia,LA,70560,5,337-276-6564,W,M,D,200,1/9/2012,1/14/2008,Senator Hebert +State Senator ,23rd Senatorial District ,P. O. Box 94183,,Baton Rouge,LA,70804,225-342-2040,,"""Mike"" Michot",130 Acacia Dr.,,Lafayette,LA,70508,5,337-237-0987,W,M,R,200,1/9/2012,1/14/2008,Senator Michot +State Senator ,24th Senatorial District ,P. O. Box 94183,,Baton Rouge,LA,70804,225-342-2040,,Elbert L. Guillory,633 E. Landry,,Opelousas,LA,70570,5,337-945-1702,B,M,D,200,1/9/2012,5/12/2009,Senator Guillory +State Senator ,25th Senatorial District ,P. O. Box 94183,,Baton Rouge,LA,70804,225-342-2040,,"Dan ""Blade"" Morrish",3042 Englewood Dr.,,Jennings,LA,70546,5,337-824-1286,W,M,R,200,1/9/2012,1/14/2008,Senator Morrish +State Senator ,26th Senatorial District ,P. O. Box 94183,,Baton Rouge,LA,70804,225-342-2040,,"""Nick"" Gautreaux",209 E. St. Victor,,Abbeville,LA,70510,5,337-319-0085,W,M,D,200,1/9/2012,1/14/2008,Sen Gautreaux +State Senator ,27th Senatorial District ,P. O. Box 94183,,Baton Rouge,LA,70804,225-342-2040,,Willie L. Mount,P.O. Box 3004,,Lake Charles,LA,70602,5,337-433-0569,W,F,D,200,1/9/2012,1/14/2008,Senator Mount +State Senator ,28th Senatorial District ,P. O. Box 94183,,Baton Rouge,LA,70804,225-342-2040,,Eric LaFleur,P.O. Box 607,,Ville Platte,LA,70586,5,337-363-6211,W,M,D,200,1/9/2012,1/14/2008,Senator LaFleur +State Senator ,29th Senatorial District ,P. O. Box 94183,,Baton Rouge,LA,70804,225-342-2040,,"""Joe"" McPherson",2000 Maison Rue,,Woodworth,LA,71485,5,318-445-0350,W,M,D,200,1/9/2012,1/14/2008,Sen McPherson +State Senator ,30th Senatorial District ,P. O. Box 94183,,Baton Rouge,LA,70804,225-342-2040,,John Smith,6 Live Oak Dr.,,Leesville,LA,71446,5,337-239-2541,W,M,D,200,1/9/2012,1/14/2008,Senator Smith +State Senator ,31st Senatorial District ,P. O. Box 94183,,Baton Rouge,LA,70804,225-342-2040,,Gerald Long,P.O. Box 1181,,Natchitoches,LA,71458,5,318-628-5799,W,M,R,200,1/9/2012,1/14/2008,Sen Long +State Senator ,32nd Senatorial District ,P. O. Box 94183,,Baton Rouge,LA,70804,225-342-2040,,Neil Riser,297 Hearn Island Dr.,,Columbia,LA,71418,5,318-649-2457,W,M,R,200,1/9/2012,1/14/2008,Senator Riser +State Senator ,33rd Senatorial District ,P. O. Box 94183,,Baton Rouge,LA,70804,225-342-2040,,"""Mike"" Walsworth",511 Comanche Trail,,West Monroe,LA,71291,5,318-614-0336,W,M,R,200,1/9/2012,1/14/2008,Sen Walsworth +State Senator ,34th Senatorial District ,P. O. Box 94183,,Baton Rouge,LA,70804,225-342-2040,,Francis Thompson,P.O. Box 322,,Delhi,LA,71232,5,318-878-5612,W,M,D,200,1/9/2012,1/14/2008,Sen Thompson +State Senator ,35th Senatorial District ,P. O. Box 94183,,Baton Rouge,LA,70804,225-342-2040,,"Robert W. ""Bob"" Kostelka",2111 Maywood,,Monroe,LA,71201,5,318-323-7591,W,M,R,200,1/9/2012,1/14/2008,Senator Kostelka +State Senator ,36th Senatorial District ,P. O. Box 94183,,Baton Rouge,LA,70804,225-342-2040,,Robert Adley,611 Jessie Jones Dr.,,Benton,LA,71006-4247,10,318-965-1755,W,M,R,200,1/9/2012,1/14/2008,Sen Adley +State Senator ,37th Senatorial District ,P. O. Box 94183,,Baton Rouge,LA,70804,225-342-2040,,"B. L. ""Buddy"" Shaw",956 Ontario St.,,Shreveport,LA,71106-1151,10,318-861-5941,W,M,R,200,1/9/2012,1/14/2008,Senator Shaw +State Senator ,38th Senatorial District ,P. O. Box 94183,,Baton Rouge,LA,70804,225-342-2040,,Sherri Smith Cheek,2109 Chase Cove,,Shreveport,LA,71118-4610,10,318-687-4891,W,,R,200,1/9/2012,1/14/2008,Sen Cheek +State Senator ,39th Senatorial District ,P. O. Box 94183,,Baton Rouge,LA,70804,225-342-2040,,Lydia P. Jackson,108 Plano St.,,Shreveport,LA,71103-2055,10,318-424-1234,B,F,D,200,1/9/2012,1/14/2008,Senator Jackson +State Representative , 1st Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,"James H. ""Jim"" Morris",P.O. Box 217,,Oil City,LA,71061,5,318-378-4710,W,M,R,205,1/9/2012,1/14/2008,Mr. Morris +State Representative , 2nd Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,Roy A. Burrell,2613 Lakeway Dr.,,Shreveport,LA,71109,5,318-635-4967,B,M,D,205,1/9/2012,1/14/2008,Mr. Burrell +State Representative , 3rd Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,Barbara Norton,3821 Morrow St.,,Shreveport,LA,71109,5,318-635-2923,B,,D,205,1/9/2012,1/14/2008,Ms. Norton +State Representative , 4th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,Patrick C. Williams,609 Texas St.,,Shreveport,LA,71101-3511,10,318-518-7535,B,M,D,205,1/9/2012,1/14/2008,Mr. Williams +State Representative , 5th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,Wayne Waddell,3221 Green Terrace Rd.,,Shreveport,LA,71118-2921,10,318-687-5319,W,M,R,205,1/9/2012,1/14/2008,Representative Waddell +State Representative , 6th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,"Thomas Gaughan Carmody, Jr.",440 Albert Ave.,,Shreveport,LA,71105,5,318-865-5471,W,,R,205,1/9/2012,2/20/2008,Representative Carmody +State Representative , 7th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,"Richard ""Richie"" Burford",P. O. Box 599,,Stonewall,LA,71078,5,318-925-0949,W,M,R,205,1/9/2012,1/14/2008,Mr. Burford +State Representative , 8th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,Jane H. Smith,106 Cambridge Cir.,,Bossier City,LA,71111-2278,10,318-742-3898,W,F,R,205,1/9/2012,1/14/2008,Ms. Smith +State Representative , 9th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,Henry Burns,134 Chimney Ln.,,Haughton,LA,71037-9207,10,318-949-9115,W,M,R,205,1/9/2012,1/14/2008,Mr. Burns +State Representative , 10th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,Jean Doerge,700 Nella St.,,Minden,LA,71055,5,318-377-2803,W,F,D,205,1/9/2012,1/14/2008,Ms. Doerge +State Representative , 11th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,"""Rick"" Gallot",P.O. Box 1117,,Ruston,LA,71273,5,318-251-1020,B,M,D,205,1/9/2012,1/14/2008,Mr. Gallot +State Representative , 12th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,Hollis Downs,143 Downs Rd.,,Ruston,LA,71270,5,318-247-6411,W,M,R,205,1/9/2012,1/14/2008,Representative Downs +State Representative , 13th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,"James R. ""Jim"" Fannin",568 Taylor Rd.,,Jonesboro,LA,71251,5,318-259-4535,W,M,D,205,1/9/2012,1/14/2008,Mr. Fannin +State Representative , 14th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,"""Sam"" Little",13492 Cooper Lake Rd.,,Bastrop,LA,71220,5,318-281-7960,W,M,R,205,1/9/2012,1/14/2008, +State Representative , 15th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,Frank Hoffmann,139 Comanche Trail,,West Monroe,LA,71291,5,318-396-2930,W,M,R,205,1/9/2012,1/14/2008,Mr. Hoffman +State Representative , 16th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,Kay Kellogg Katz,2905 Lamy Cir.,,Monroe,LA,71201,5,318-387-7728,W,F,R,205,1/9/2012,1/14/2008,Ms. Katz +State Representative , 17th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,Rosalind D. Jones,1803 Medra Dr.,,Monroe,LA,71202,5,318-322-7990,B,F,D,205,1/9/2012,1/14/2008,Ms. Jones +State Representative , 18th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,Major Thibaut,"2004 False River Dr., Ste. B",,New Roads,LA,70760,5,225-638-3000,W,M,D,205,1/9/2012,11/14/2008,Rep. Thibaut +State Representative , 19th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,"Charles R. ""Bubba"" Chaney",73 Pecan Dr.,,Rayville,LA,71269,5,318-728-3421,W,M,D,205,1/9/2012,1/14/2008,Mr. chaney +State Representative , 20th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,Noble Ellington,4272 Front St.,,Winnsboro,LA,71295,5,318-435-0049,W,M,D,205,1/9/2012,1/14/2008,Mr. Ellington +State Representative , 21st Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,"""Andy"" Anders",1499 Indian Village Rd.,,Clayton,LA,71326,5,318-757-6684,W,M,D,205,1/9/2012,1/14/2008,Mr. Anders +State Representative , 22nd Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,Billy Chandler,P.O. Box 100,,Dry Prong,LA,71423,5,318-899-5884,W,M,D,205,1/9/2012,1/14/2008,Mr. Chandler +State Representative , 23rd Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,"""Rick"" Nowlin",1005 Williams Ave.,,Natchitoches,LA,71457,5,318-357-1183,W,M,R,205,1/9/2012,1/14/2008,Mr. Nowlin +State Representative , 24th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,"""Frankie"" Howard",P. O. Box 10,,Hornbeck,LA,71439,5,318-565-4433,W,M,R,205,1/9/2012,1/14/2008,Mr. Howard +State Representative , 25th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,"Chris J. Roy, Jr.",P. O. Box 11774,,Alexandria,LA,71315-1774,10,318-767-6095,W,M,D,205,1/9/2012,1/14/2008,Mr. Roy +State Representative , 26th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,Herbert B. Dixon,P.O. Box 1203,,Alexandria,LA,71309,5,318-443-8274,B,M,D,205,1/9/2012,1/14/2008,Mr. Dixon +State Representative , 27th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,"""Chris"" Hazel",5930 Adrian Dr.,,Ball,LA,71405,5,318-641-7769,W,M,R,205,1/9/2012,1/14/2008,Mr. Hazel +State Representative , 28th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,Robert Johnson,P. O. Box 468,,Marksville,LA,71351,5,318-253-0935,W,M,D,205,1/9/2012,1/14/2008,Mr. Johnson +State Representative , 29th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,Regina Ashford Barrow,6512 Vineyard Dr.,,Baton Rouge,LA,70812,5,225-359-9586,B,F,D,205,1/9/2012,1/14/2008,Ms. Barrow +State Representative , 30th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,James Armes,181 Country Club Ln.,,Leesville,LA,71446,5,337-239-7437,W,M,D,205,1/9/2012,1/14/2008,Mr. Armes +State Representative , 31st Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,Nancy Landry,4503 Johnston St.,,Lafayette,LA,70503,5,337-280-2139,W,F,R,205,1/9/2012,11/14/2008,Rep. Landry +State Representative , 32nd Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,Dorothy Sue Hill,529 Tramel Rd.,,Dry Creek,LA,70637-5018,10,337-639-2341,W,F,D,205,1/9/2012,1/14/2008,Ms. Hill +State Representative , 33rd Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,"""Mike"" Danahay",23 Poinsetta Rd.,,Sulphur,LA,70663,5,337-625-9046,W,M,D,205,1/9/2012,1/14/2008,Representative Danahay +State Representative , 34th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,"""A. B."" Franklin",2406 Elaine St.,,Lake Charles,LA,70601,5,337-439-2897,B,M,D,205,1/9/2012,1/14/2008,Mr. Franklin +State Representative , 35th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,Brett Geymann,4832 Cypress Lake Dr.,,Lake Charles,LA,70611,5,337-855-9224,W,M,R,205,1/9/2012,1/14/2008,Representative Geymann +State Representative , 36th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,"""Chuck"" Kleckley",4836 Portrush Dr.,,Lake Charles,LA,70605,5,337-477-2673,W,M,R,205,1/9/2012,1/14/2008,Representative Kleckley +State Representative , 37th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,"John E. ""Johnny"" Guinn",515 13th St.,,Jennings,LA,70546,5,337-824-7210,W,M,R,205,1/9/2012,1/14/2008,Mr. Guinn +State Representative , 38th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,H. Bernard LeBas,P.O. Box 370,,Ville Platte,LA,70586,5,337-363-3456,W,M,D,205,1/9/2012,1/14/2008,Representative LeBas +State Representative , 39th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,Bobby G. Badon,P. O. Box 184,,Carencro,LA,70520,5,337-896-8740,W,M,D,205,1/9/2012,1/14/2008,Mr. Badon +State Representative , 40th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,Ledricka Johnson Thierry,512 Sapphire St.,,Opelousas,LA,70570,5,337-942-4733,B,F,D,205,1/9/2012,9/9/2009,Representative Thierry +State Representative , 41st Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,Mickey J. Guillory,516 Rozas Rd.,,Eunice,LA,70535,5,337-457-0194,W,M,D,205,1/9/2012,1/14/2008,Representative Guillory +State Representative , 42nd Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,Jack Montoucet,123 Credeur Rd.,,Scott,LA,70583,5,337-873-3087,W,M,D,205,1/9/2012,1/14/2008,Mr. Montoucet +State Representative , 43rd Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,"""Page"" Cortez","1720 Kaliste Saloom Road, Ste. D-4",,Lafayette,LA,70508,5,337-993-0603,W,M,R,205,1/9/2012,1/14/2008,Mr. Cortez +State Representative , 44th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,Rickey Hardy,339 Cooper Dr.,,Lafayette,LA,70501-1711,10,337-269-9346,B,M,D,205,1/9/2012,1/14/2008,Mr. Hardy +State Representative , 45th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,Joel C. Robideaux,101 Ruth Dr.,,Lafayette,LA,70506,5,337-989-2984,W,M,,205,1/9/2012,1/14/2008,Representative Robideaux +State Representative , 46th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,"Fred H. Mills, Jr.",4711-A Main Hwy.,,St. Martinville,LA,70582,5,337-332-3475,W,M,D,205,1/9/2012,1/14/2008,Rep. Mills +State Representative , 47th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,Jonathan Perry,312 Abshire Dr.,,Kaplan,LA,70548,5,337-643-2057,,,R,205,1/9/2012,1/14/2008,Rep. Perry +State Representative , 48th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,Taylor F. Barras,705 Oak Manor Dr.,,New Iberia,LA,70563,5,337-369-3995,W,M,D,205,1/9/2012,1/14/2008,Mr. Barras +State Representative , 49th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,Simone Champagne,206 Virginia St.,,Jeanerette,LA,70544,5,337-276-6540,W,F,D,205,1/9/2012,1/14/2008,Representative Champagne +State Representative , 50th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,Sam Jones,1501 Sterling Rd.,,Franklin,LA,70538-3836,10,337-828-1530,W,M,D,205,1/9/2012,1/14/2008,Mr. Jones +State Representative , 51st Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,"""Joe"" Harrison",3239 Hwy. 308,,Napoleonville,LA,70390,5,985-526-8434,W,M,R,205,1/9/2012,1/14/2008,Mr. Harrison +State Representative , 52nd Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,Gordon Dove,5 Glen Oaks Dr.,,Houma,LA,70360-6078,10,985-876-8823,W,M,R,205,1/9/2012,1/14/2008,Representative Dove +State Representative , 53rd Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,Damon Baldone,162 New Orleans Blvd.,,Houma,LA,70364-3344,10,985-868-3427,W,M,D,205,1/9/2012,1/14/2008,Rep. Baldone +State Representative , 54th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,"Jerry ""Truck"" Gisclair",P. O. Box 1350,,Larose,LA,70373,5,985-693-3826,W,M,D,205,1/9/2012,1/14/2008,Mr. Gisclair +State Representative , 55th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,"Jerome ""Dee"" Richard",416 Plater Dr.,,Thibodaux,LA,70301,5,985-447-6033,W,M,,205,1/9/2012,1/14/2008,Mr. Richard +State Representative , 56th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,"Gary L. Smith, Jr.",P.O. Box 189,,Norco,LA,70079,5,985-764-9122,W,M,D,205,1/9/2012,1/14/2008,Rep. Smith +State Representative , 57th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,Nickie Monica,298 Doral Ln.,,LaPlace,LA,70068,5,985-651-9008,W,M,R,205,1/9/2012,1/14/2008,Mr. Monica +State Representative , 58th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,Elton M. Aubert,2740 S. Bank Ln.,,Vacherie,LA,70090,5,225-265-2577,B,M,D,205,1/9/2012,1/14/2008,Mr. Aubert +State Representative , 59th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,Eddie J. Lambert,P.O. Box 88,,Gonzales,LA,70707,5,225-647-9788,W,M,R,205,1/9/2012,1/14/2008,Representative Lambert +State Representative , 60th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,Karen St. Germain,3413 Hwy. 70,,Pierre Part,LA,70339,5,985-252-9017,W,F,D,205,1/9/2012,1/14/2008,Representative St. Germain +State Representative , 61st Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,Michael Jackson,"606 N. Foster Dr., Ste. A-214",,Baton Rouge,LA,70806,5,225-342-0774,B,M,D,205,1/9/2012,1/14/2008,Mr. Jackson +State Representative , 62nd Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,"Thomas H. ""Tom"" McVea",P.O. Box 249,,St. Francisville,LA,70775,5,225-635-3005,W,M,R,205,1/9/2012,1/14/2008,Rep. McVea +State Representative , 63rd Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,Avon Honey,8776 Scenic Hwy.,,Baton Rouge,LA,70807,5,225-771-5674,B,M,D,205,1/9/2012,1/14/2008,Representative Honey +State Representative , 64th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,"Mack ""Bodi"" White, Jr.",P.O. Box 854,,Watson,LA,70786,5,225-261-3903,W,M,R,205,1/9/2012,1/14/2008,Mr. White +State Representative , 65th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,"""Clif"" Richardson",12025 Sullivan Rd.,,Baton Rouge,LA,70818,5,225-262-1600,W,M,R,205,1/9/2012,1/14/2008,Mr. Richardson +State Representative , 66th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,Hunter Greene,12203 Lake Sherwood Ave. N.,,Baton Rouge,LA,70816,5,225-927-9455,W,M,R,205,1/9/2012,1/14/2008,Representative Greene +State Representative , 67th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,Patricia Smith,P. O. Box 2701,,Baton Rouge,LA,70821,5,225-381-8317,B,F,D,205,1/9/2012,1/14/2008,Ms. Smith +State Representative , 68th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,"""Steve"" Carter",P. O. Box 14808,,Baton Rouge,LA,70898,5,225-216-2421,W,M,R,205,1/9/2012,1/14/2008,Mr. Carter +State Representative , 69th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,Erich Ponti,1445 Thibodeaux Ave.,,Baton Rouge,LA,70806,5,225-927-9069,W,M,R,205,1/9/2012,1/14/2008,Mr. Ponti +State Representative , 70th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,Franklin J. Foil,426 W. Woodgate Ct.,,Baton Rouge,LA,70808,5,225-382-3264,W,M,R,205,1/9/2012,1/14/2008,Mr. Foil +State Representative , 71st Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,J. Rogers Pope,P. O. Box 555,,Denham Springs,LA,70727,5,225-664-4068,W,M,R,205,1/9/2012,1/14/2008,Mr. Pope +State Representative , 72nd Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,John Bel Edwards,P. O. Box 1495,,Amite,LA,70422,5,985-747-1088,W,M,D,205,1/9/2012,1/14/2008,Mr. Edwards +State Representative , 73rd Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,"""Steve"" Pugh",P. O. Box 2473,,Ponchatoula,LA,70454,5,985-386-7844,W,M,R,205,1/9/2012,1/14/2008,Mr. Pugh +State Representative , 74th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,Scott Simon,P. O. Box 1297,,Abita Springs,LA,70420,5,985-630-4834,W,M,R,205,1/9/2012,1/14/2008,Mr. Simon +State Representative , 75th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,Harold L. Ritchie,25255 Hwy. 62,,Franklinton,LA,70438,5,985-848-5558,W,M,D,205,1/9/2012,1/14/2008,Representative Ritchie +State Representative , 76th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,Kevin Pearson,P. O. Box 398,,Slidell,LA,70459,5,985-290-3586,W,M,R,205,1/9/2012,1/14/2008,Mr. Pearson +State Representative , 77th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,John M. Schroder,819 W. 13th Ave.,,Covington,LA,70433,5,985-875-2147,W,M,R,205,1/9/2012,1/14/2008,Mr. Schroder +State Representative , 78th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,Kirk Talbot,"9523 Jefferson Hwy.,Ste. B",,River Ridge,LA,70123,5,504-737-9598,W,M,R,205,1/9/2012,1/14/2008,Mr. Talbot +State Representative , 79th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,"""Tony"" Ligi",5216 Senac Dr.,,Metairie,LA,70003,5,504-455-8050,W,M,R,205,1/9/2012,1/14/2008,Mr. Ligi +State Representative , 80th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,Joseph Lopinto,2016 Persimmon Ave.,,Metairie,LA,70001,5,504-455-8173,W,M,R,205,1/9/2012,1/14/2008,Rep. Lopinto +State Representative , 81st Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,"John F. Labruzzo, Jr.",1427 Choctaw Ave.,,Metairie,LA,70005,5,504-838-4449,W,M,R,205,1/9/2012,1/14/2008,Representative Labruzzo +State Representative , 82nd Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,Cameron Henry,400 Central Ave.,,Jefferson,LA,70121,5,504-483-7737,W,M,R,205,1/9/2012,1/14/2008,Rep. Henry +State Representative , 83rd Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,Robert E. Billiot,341 Ave. C,,Westwego,LA,70094,5,504-347-7424,W,M,D,205,1/9/2012,1/14/2008,Mr. Billiot +State Representative , 84th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,Patrick Connick,720 Fos Ave.,,Harvey,LA,70058,5,504-347-6157,W,M,R,205,1/9/2012,1/14/2008,Representative Connick +State Representative , 85th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,Ricky J. Templet,150 Linda Ct.,,Gretna,LA,70053,5,504-382-6832,W,M,R,205,1/9/2012,1/14/2008,Rep. Templet +State Representative , 86th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,"""Jim"" Tucker",732 Berhman Hwy. Ste. C-2,,Terrytown,LA,70056,5,504-393-5646,W,M,R,205,1/9/2012,1/14/2008,Representative Tucker +State Representative , 87th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,"Girod Jackson, III",1528 Haydel St.,,Marrero,LA,70072,5,504-382-4435,B,M,D,205,1/9/2012,1/14/2008,Representative Jackson +State Representative , 88th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,"M.J. ""Mert"" Smiley, Jr.",14464 L. Keller Rd.,,St. Amant,LA,70774,5,225-622-1300,W,M,R,205,1/9/2012,1/14/2008,Representative Smiley +State Representative , 89th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,"""Tim"" Burns",1501 Madison St.,,Mandeville,LA,70448,5,985-373-3939,W,M,R,205,1/9/2012,1/14/2008,Representative Burns +State Representative , 90th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,"""Greg"" Cromer",P.O. Box 2088,,Slidell,LA,70459,5,985-640-0865,W,M,R,205,1/9/2012,1/14/2008,Representative Cromer +State Representative , 91st Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,"""Walt"" Leger, III",2320 Laurel St.,,New Orleans,LA,70130,5,504-636-1395,W,M,D,205,1/9/2012,1/14/2008,Mr. Leger +State Representative , 92nd Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,"""Tom"" Willmott",3209 Kansas Ave,,Kenner,LA,70065,5,504-443-6182,W,M,R,205,1/9/2012,1/14/2008,Mr. Willmott +State Representative , 93rd Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,Karen Carter,"920 Poeyfarre St., Unit 316",,New Orleans,LA,70130,5,504-568-8346,B,F,D,205,1/9/2012,1/14/2008,Rep. Carter +State Representative , 94th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,"Nicholas J. ""Nick"" Lorusso",1133 Robert E. Lee Blvd.,,New Orleans,LA,,0,504-282-4001,W,M,R,205,1/9/2012,1/14/2008,Mr. Lorusso +State Representative , 95th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,Walker Hines,100 Audubon Blvd.,,New Orleans,LA,70118,5,504-231-4991,W,M,D,205,1/9/2012,1/14/2008,Mr. Hines +State Representative , 96th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,Juan Lafonta,"6305 Elysian Ave., Ste. 207",,New Orleans,LA,70122,5,504-288-4911,B,M,D,205,1/9/2012,1/14/2008,Representative Lafonta +State Representative , 97th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,Jared Brossett,4749 Marigny St.,,New Orleans,LA,70122,5,504-286-1033,B,M,D,205,1/9/2012,5/12/2009,Representative Brossett +State Representative , 98th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,Neil Abramson,906 Arabella St.,,New Orleans,LA,70115,5,504-897-5449,W,M,D,205,1/9/2012,1/14/2008,Mr. Abramson +State Representative , 99th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,Charmaine L. Marchand,1730 Andry St.,,New Orleans,LA,70117,5,504-945-8151,B,F,D,205,1/9/2012,1/14/2008,Rep. Marchand +State Representative ,100th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,Austin Badon,3212 Prytania St.,,New Orleans,LA,70115,5,504-577-5329,B,M,D,205,1/9/2012,1/14/2008,Rep. Badon +State Representative ,101st Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,Cedric L. Richmond,7021 Cove Dr.,,New Orleans,LA,70126,5,225-342-9866,B,M,D,205,1/9/2012,1/14/2008,Rep. Richmond +State Representative ,102nd Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,"Jeffery ""Jeff"" Arnold",2415 Danbury Dr.,,New Orleans,LA,70131,5,504-394-5586,W,M,D,205,1/9/2012,1/14/2008,Rep. Arnold +State Representative ,103rd Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,Reed S. Henderson,3004 Farmsite Rd.,,Violet,LA,70092,5,504-220-9707,W,M,D,205,1/9/2012,1/14/2008,Mr. Henderson +State Representative ,104th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,"""Nita"" Hutter",P.O. Box 275,,Chalmette,LA,70044,5,504-361-6684,W,F,R,205,1/9/2012,1/14/2008,Rep. Hutter +State Representative ,105th Representative District ,P. O. Box 94062,,Baton Rouge,LA,70804,225-342-6945,,Ernest Durham Wooton,113 Vernon St.,,Belle Chasse,LA,70037,5,504-392-7404,W,M,R,205,1/9/2012,1/14/2008,Rep. Wooton +District Judge ," 1st JDC, Election Section 1, Division B ",,,,LA,,,,Ramona Emanuel,6204 Sonhaven Dr.,,Shreveport,LA,71119-6219,10,318-631-6038,B,F,D,210,12/31/2014,1/1/2009,Judge Emanuel +District Judge ," 1st JDC, Election Section 1, Division D ",,,,LA,,,,Leon L. Emanuel,P.O. Box 3588,,Shreveport,LA,71133,5,318-226-6812,B,M,D,210,12/31/2014,1/1/2009,Judge Emanuel +District Judge ," 1st JDC, Election Section 1, Division G ",,,,LA,,,,"John Mosely, Jr.",2512 Parham Dr.,,Shreveport,LA,71109-3014,10,318-636-1700,B,M,D,210,12/31/2014,1/1/2009,Judge Mosely +District Judge ," 1st JDC, Election Section 1, Division J ",,,,LA,,,,Ramon Lafitte,4322 Rosary Ln.,,Shreveport,LA,71108-3020,10,318-226-0826,B,M,D,210,12/31/2014,1/1/2009,Judge Lafitte +District Judge ," 1st JDC, Election Section 2, Division C ",,,,LA,,,,Scott J. Crichton,424 Evangeline Pl.,,Shreveport,LA,71106,5,318-868-0818,W,M,D,210,12/31/2014,1/1/2009,Judge Crichton +District Judge ," 1st JDC, Election Section 2, Division H ",,,,LA,,,,Jeanette G. Garrett,7717 Creswell Rd. Lot 4,,Shreveport,LA,71106,5,318-868-0588,W,F,D,210,12/31/2014,1/1/2009,Judge Garrett +District Judge ," 1st JDC, Election Section 2, Division I ",,,,LA,,,,Craig Marcotte,450 Monrovia St.,,Shreveport,LA,71106-1608,10,318-464-7773,W,,R,210,12/31/2014,1/1/2009,Judge Marcotte +District Judge ," 1st JDC, Election Section 3, Division A ",,,,LA,,,,"Robert P. ""Bobby"" Waddell",3252 Green Terrace Rd.,,Shreveport,LA,71118-2922,10,318-686-3086,W,,D,210,12/31/2014,1/1/2009,Judge Waddell +District Judge ," 1st JDC, Election Section 3, Division E ",,,,LA,,,,"""Mike"" Pitman",Ste. 300 D,,Shreveport,LA,71101,5,318-226-6810,W,M,R,210,12/31/2014,1/1/2009,Judge Pitman +District Judge ," 1st JDC, Election Section 3, Division F ",,,,LA,,,,Frances Pitman,8509 E. Wilderness Way,,Shreveport,LA,71106,5,318-464-9449,W,F,R,210,12/31/2014,1/1/2009,Judge Pitman +District Judge ," 1st JDC, Election Section 3, Division K ",,,,LA,,,,Roy L. Brun,501 Texas St. Rm. 404,,Shreveport,LA,71101,5,318-677-5340,W,M,R,210,12/31/2014,1/1/2009,Judge Brun +District Judge ," 2nd Judicial District, Division A ",,,,LA,,,,Jenifer Ward Clason,P.O. Box 786,,Homer,LA,71040,5,318-927-2161,W,F,D,210,12/31/2014,1/1/2009,Judge Clason +District Judge ," 2nd Judicial District, Division B ",,,,LA,,,,Jimmy Teat,P.O. Box 100,,Jonesboro,LA,71251,5,318-259-3442,W,M,D,210,12/31/2014,1/1/2009,Judge Teat +District Judge ," 2nd Judicial District, Division C ",,,,LA,,,,Glenn Fallin,212 Hwy. 519,,Arcadia,LA,71001,5,318-263-9408,W,M,D,210,12/31/2014,1/1/2009,Judge Fallin +District Judge ," 3rd Judicial District, Division A ",,,,LA,,,,Cynthia Woodard,2110 North Trenton St.,,Ruston,LA,71270,5,318-255-4691,W,F,,210,12/31/2014,1/1/2009,Judge Woodard +District Judge ," 3rd Judicial District, Division B ",,,,LA,,,,R. Wayne Smith,1604 Ravine Dr.,,Ruston,LA,71270,5,318-255-4763,W,M,,210,12/31/2014,1/1/2009,Judge Smith +District Judge ," 3rd Judicial District, Division C ",,,,LA,,,,Jay B. McCallum,P.O. Box 138,,Farmerville,LA,71241,5,318-368-2027,W,M,D,210,12/31/2014,1/1/2009,Judge McCallum +District Judge ," 4th JDC, Election Section 1, Division G ",,,,LA,,,,Carl Sharp,1247 Hwy. 594,,Monroe,LA,71203,5,318-361-2253,B,M,D,210,12/31/2014,1/1/2009,Judge Sharp +District Judge ," 4th JDC, Election Section 1, Division H ",,,,LA,,,,Benjamin Jones,169 Turtledove Dr.,,Monroe,LA,71203,5,318-345-1104,B,M,D,210,12/31/2014,1/1/2009,Judge Jones +District Judge ," 4th JDC, Election Section 1, Division I ",,,,LA,,,,Alvin R. Sharp,P. O. Box 3251,,Monroe,LA,71210,5,318-361-2298,B,M,D,210,12/31/2014,1/1/2009,Judge Sharp +District Judge ," 4th JDC, Election Section 1, Division J ",,,,LA,,,,Robert C. Johnson,241 Oregon Trail,,Monroe,LA,71202,5,318-361-0341,B,M,D,210,12/31/2014,1/1/2009,Judge Johnson +District Judge ," 4th JDC, Election Section 2, Division A ",,,,LA,,,,Scott Leehy,4100 Chauvin Ln.,,Monroe,LA,71201,5,318-388-2103,W,M,R,210,12/31/2014,1/1/2009,Judge Leehy +District Judge ," 4th JDC, Election Section 2, Division B ",,,,LA,,,,Sharon Ingram Marchman,2606 Pargoud Blvd.,,Monroe,LA,71201,5,318-323-5308,W,F,R,210,12/31/2014,1/1/2009,Judge Marchman +District Judge ," 4th JDC, Election Section 2, Division C ",,,,LA,,,,John Wilson Rambo,124 Western Ave.,,West Monroe,LA,71291,5,318-361-2286,W,M,,210,12/31/2014,1/1/2009,Judge Rambo +District Judge ," 4th JDC, Election Section 2, Division D ",,,,LA,,,,Stephens Winters,160 Napoleon,,West Monroe,LA,71291,5,318-397-2403,W,M,D,210,12/31/2014,1/1/2009,Judge Winters +District Judge ," 4th JDC, Election Section 2, Division E ",,,,LA,,,,"""Fred"" Amman, ",3309 Stowers Dr.,,Monroe,LA,71201-1947,10,318-325-4878,W,M,N,210,,2/18/2010, +District Judge ," 4th JDC, Election Section 2, Division F ",,,,LA,,,,Wendell Manning,394 Joe White Rd.,,Monroe,LA,71203,5,318-343-9252,W,M,R,210,12/31/2014,1/1/2009,Judge Manning +District Judge ," 4th JDC, Election Section 2, Division K ",,,,LA,,,,Daniel Joseph Ellender,P.O. Box 604,,Mer Rouge,LA,71261,5,318-647-9909,W,M,R,210,12/31/2014,1/1/2009,Judge Ellender +District Judge ," 5th Judicial District, Division A ",,,,LA,,,,Terry A. Doughty,945 Overland Stage Rd.,,Rayville,LA,71269,5,318-728-2395,W,M,R,210,12/31/2014,1/1/2009,Judge Doughty +District Judge ," 5th Judicial District, Division B ",,,,LA,,,,"James M. ""Jimbo"" Stephens",310 A. J. Stephens Rd.,,Baskin,LA,71219,5,318-248-2795,W,M,R,210,12/31/2014,1/1/2009,Judge Stephens +District Judge ," 5th Judicial District, Division C ",,,,LA,,,,"""Rudy"" McIntyre","6566 Main St., Second Fl.",,Winnsboro,LA,71295,5,318-435-7111,W,M,D,210,12/31/2014,1/1/2009,Judge McIntyre +District Judge ," 6th Judicial District, Division A ",,,,LA,,,,Michael E. Lancaster,311 Cleveland St.,,Tallulah,LA,71282,5,318-574-2577,W,M,D,210,12/31/2014,1/1/2009,Judge Lancaster +District Judge ," 6th Judicial District, Division B ",,,,LA,,,,John D. Crigler,P.O. Box 708,,St. Joseph,LA,71366,5,318-766-3360,W,M,D,210,12/31/2014,1/1/2009,Judge Crigler +District Judge ," 7th Judicial District, Division A ",,,,LA,,,,Kathy Johnson,501 Highway 3037,,Jonesville,LA,71343,5,318-339-6481,W,F,D,210,12/31/2014,1/1/2009,Judge Johnson +District Judge ," 7th Judicial District, Division B ",,,,LA,,,,Leo Boothe,P. O. Box 310,,Harrisonburg,LA,71340,5,318-744-5414,W,M,D,210,12/31/2014,1/1/2009,Judge Boothe +District Judge , 8th Judicial District ,,,,LA,,,,Jacque Derr,P.O. Box 908,,Winnfield,LA,71483,5,318-628-4079,W,M,R,210,12/31/2014,1/1/2009,Judge Derr +District Judge ," 9th JDC, Election Section 1, Division A ",,,,LA,,,,Donald Johnson,2116 Coulee Crossing Rd.,,Woodworth,LA,71485,5,318-473-8616,B,M,D,210,12/31/2014,1/1/2009,Judge Johnson +District Judge ," 9th JDC, Election Section 1, Division F ",,,,LA,,,,"George C. Metoyer, Jr.",P.O. Drawer 1431,,Alexandria,LA,71309,5,318-443-6893,B,M,D,210,12/31/2014,1/1/2009,Judge Metoyer +District Judge ," 9th JDC, Election Section 2, Division B ",,,,LA,,,,"Thomas ""Tom"" Yeager",1037 Edgewood Dr.,,Pineville,LA,71360,5,318-640-9762,W,M,O,210,12/31/2014,1/1/2009,Judge Yeager +District Judge ," 9th JDC, Election Section 2, Division C ",,,,LA,,,,Mary Lauve Doggett,5716 Courtland Place,,Alexandria,LA,71301,5,318-443-8425,W,F,D,210,12/31/2014,1/1/2009,Judge +District Judge ," 9th JDC, Election Section 2, Division D ",,,,LA,,,,John C. Davidson,475 Downs Ln.,,Alexandria,LA,71303,5,318-442-1341,,,D,210,12/31/2014,1/1/2009,Judge Davidson +District Judge ," 9th JDC, Election Section 2, Division E ",,,,LA,,,,Patricia Evans Koch,4406 Willowick Blvd.,,Alexandria,LA,71303,5,318-442-3912,W,F,D,210,12/31/2014,1/1/2009,Judge Koch +District Judge ," 9th JDC, Subdistrict 2, Division G ",,,,LA,,,,Harry F. Randow,P.O. Box 1431,,Alexandria,LA,71309,5,318-443-6893,W,M,D,210,12/31/2014,1/1/2009,Judge Randow +District Judge ,"10th Judicial District, Division A ",,,,LA,,,,"""Rick"" Harrington",5923 Hwy. 6,,Natchitoches,LA,71457,5,318-357-8698,W,M,D,210,12/31/2014,1/1/2009,Judge Harrington +District Judge ,"10th Judicial District, Division B ",,,,LA,,,,Dee A. Hawthorne,2498 Hwy. 119,,Melrose,LA,71452,5,318-379-0178,W,F,D,210,12/31/2014,1/1/2009,Judge Hawthorne +District Judge ,11th Judicial District ,,,,LA,,,,Stephen Beasley,P.O. Box 56,,Many,LA,71449,5,318-256-0966,W,M,D,210,12/31/2014,1/1/2009,Judge Beasley +District Judge ,"12th Judicial District, Division A ",,,,LA,,,,Mark Jeansonne,P.O. Box 301,,Hessmer,LA,71341,5,318-253-9418,W,M,D,210,12/31/2014,1/1/2009,Judge Jeansonne +District Judge ,"12th Judicial District, Division B ",,,,LA,,,,"William J. ""Billy"" Bennett",P.O. Box 84,,Marksville,LA,71351,5,318-253-8953,W,M,D,210,12/31/2014,1/1/2009,Judge Bennett +District Judge ,"13th Judicial District, Division A ",,,,LA,,,,J. Larry Vidrine,2087 Faubourg Rd.,,Ville Platte,LA,70586,5,337-363-5516,W,M,D,210,12/31/2014,1/1/2009,Judge Vidrine +District Judge ,"13th Judicial District, Division B ",,,,LA,,,,"Thomas ""Tom"" Fuselier",1300 Fuselier Rd.,,Mamou,LA,70554,5,337-363-5608,W,M,D,210,12/31/2014,1/1/2009,Judge Fuselier +District Judge ,"14th JDC, Elect. Sect. 1 & 3, Division I ",,,,LA,,,,Lilynn Cutrer,P.O. Box 1150,,Lake Charles,LA,70602,5,337-480-1331,W,F,D,210,12/31/2014,1/1/2009,Judge Cutrer +District Judge ,"14th JDC, Election Section 1, Division F ",,,,LA,,,,Wilford D. Carter,509 N. 1st Ave.,,Lake Charles,LA,70601,5,337-436-6227,B,M,D,210,12/31/2014,1/1/2009,Judge Carter +District Judge ,"14th JDC, Election Section 1, Division H ",,,,LA,,,,"""Ron"" Ware",647 Stella Dr.,,Lake Charles,LA,70611,5,337-855-3633,B,M,D,210,12/31/2014,1/1/2009,Judge Ware +District Judge ,"14th JDC, Election Section 2, Division B ",,,,LA,,,,Clayton Davis,1304 Hillcroft Dr.,,Lake Charles,LA,70605,5,337-479-2215,W,M,R,210,12/31/2014,1/1/2009,Judge Davis +District Judge ,"14th JDC, Election Section 2, Division C ",,,,LA,,,,Guy Bradberry,1508 Bank St.,,Lake Charles,LA,70601,5,337-437-3363,W,M,D,210,12/31/2014,1/21/2009,Judge Bradberry +District Judge ,"14th JDC, Election Section 2, Division D ",,,,LA,,,,Robert L. Wyatt,5567 Chuck Dr.,,Lake Charles,LA,70605,5,337-477-3349,W,M,D,210,12/31/2014,1/1/2009,Judge Wyatt +District Judge ,"14th JDC, Election Section 2, Division G ",,,,LA,,,,"Michael ""Mike"" Canaday",2859 Henderson Forest Ln.,,Lake Charles,LA,70605,5,337-474-4972,W,M,D,210,12/31/2014,1/1/2009,Judge Canaday +District Judge ,"14th JDC, Election Section 3, Division A ",,,,LA,,,,D. Kent Savoie,1302 Spanish Dr.,,Lake Charles,LA,70665,5,337-583-4118,W,M,D,210,12/31/2014,1/1/2009,Judge Savoie +District Judge ,"14th JDC, Election Section 3, Division E ",,,,LA,,,,David Ritchie,4504 Maplewood Dr.,,Sulphur,LA,70663,5,337-625-4504,W,M,R,210,12/31/2014,1/1/2009,Judge ritchie +District Judge ,"15th JDC, Election Section 1, Division B ",,,,LA,,,,Jules D. Edwards,215 Failla Rd.,,Lafayette,LA,70508,5,337-412-6009,B,M,O,210,12/31/2014,1/1/2009,Judge Edwards +District Judge ,"15th JDC, Election Section 1, Division D ",,,,LA,,,,"""Ed"" Rubin",101 Jyro Lane,,Carencro,LA,70520,5,337-896-6083,B,M,D,210,12/31/2014,1/1/2009,Judge Rubin +District Judge ,"15th JDC, Election Section 2, Division E ",,,,LA,,,,Herman Clause,517 Trappey Rd.,,Carencro,LA,70520,5,337-896-8872,W,M,D,210,12/31/2014,1/1/2009,Judge Clause +District Judge ,"15th JDC, Election Section 3, Division H ",,,,LA,,,,David A. Blanchet,P.O. Box 3407,,Lafayette,LA,70502,5,337-269-5729,W,M,R,210,12/31/2014,1/1/2009,Judge Blanchet +District Judge ,"15th JDC, Election Section 3, Division I ",,,,LA,,,,Thomas Duplantier,222 Antigua Dr.,,Lafayette,LA,70503,5,337-269-5722,W,M,D,210,12/31/2014,1/1/2009,Judge Duplantier +District Judge ,"15th JDC, Election Section 3, Division K ",,,,LA,,,,"Patrick Louis ""Rick"" Michot, Sr.",904 Bayou Tortue Rd.,,Broussard,LA,70518,5,337-837-8943,W,M,R,210,12/31/2014,1/1/2009,Judge Michot +District Judge ,"15th JDC, Election Section 3, Division L ",,,,LA,,,,Marilyn C. Castle,406 Montrose Ave.,,Lafayette,LA,70503,5,337-981-4048,W,F,R,210,12/31/2014,1/1/2009,Judge Castle +District Judge ,"15th JDC, Election Section 3, Division M ",,,,LA,,,,Phyllis Montgomery Keaty,620 Woodvale Ave.,,Lafayette,LA,70505,5,337-261-5125,W,F,R,210,12/31/2014,1/1/2009,Judge Keaty +District Judge ,"15th JDC, Election Section 4, Division A ",,,,LA,,,,John D. Trahan,1718 N. Ave D,,Crowley,LA,70526,5,337-788-2435,W,M,D,210,12/31/2014,1/1/2009,Judge Trahan +District Judge ,"15th JDC, Election Section 4, Division F ",,,,LA,,,,"""Glenn"" Everett",P.O. Box 503,,Crowley,LA,70526,5,337-788-8814,W,M,D,210,12/31/2014,1/1/2009,Judge Everrett +District Judge ,"15th JDC, Election Section 4, Division J ",,,,LA,,,,Kristian D. Earles,1534 Connie Rd.,,Iota,LA,70543,5,337-250-0550,W,M,D,210,12/31/2014,1/1/2009,Judge Earles +District Judge ,"15th JDC, Election Section 5, Division C ",,,,LA,,,,"""Ed"" Broussard",P.O. Box 7,,Abbeville,LA,70511,5,337-893-3423,W,M,D,210,12/31/2014,1/1/2009,Judge Broussard +District Judge ,"15th JDC, Election Section 5, Division G ",,,,LA,,,,Durwood Conque,14121 Towne Ln.,,Abbeville,LA,70510,5,337-893-1781,,,D,210,12/31/2014,1/1/2009,Judge Conque +District Judge ,"16th JDC, Election Section 1, Division G ",,,,LA,,,,Charles L. Porter,1014 Loreauville Rd.,,New Iberia,LA,70563,5,337-365-4966,B,M,D,210,12/31/2014,1/1/2009,Judge Porter +District Judge ,"16th JDC, Election Section 1, Division H ",,,,LA,,,,Lori A. Landry,P.O. Box 9067,,New Iberia,LA,70562,5,337-365-7323,B,F,D,210,12/31/2014,1/1/2009,Judge Landry +District Judge ,"16th JDC, Election Section 2, Division A ",,,,LA,,,,Gerard B. Wattigny,P.O. Box 13446,,New Iberia,LA,70562,5,337-364-7376,W,M,D,210,12/31/2014,1/1/2009,Judge Wattingny +District Judge ,"16th JDC, Election Section 2, Division B ",,,,LA,,,,Paul deMahy,2206 Catherine Dr.,,St. Martinville,LA,70582,5,337-394-4523,W,M,R,210,12/31/2014,1/1/2009,Judge deMahy +District Judge ,"16th JDC, Election Section 2, Division C ",,,,LA,,,,John E. Conery,P.O. Box 1,,Franklin,LA,70538,5,337-828-4100,W,M,D,210,12/31/2014,1/1/2009,Judge Conery +District Judge ,"16th JDC, Election Section 2, Division D ",,,,LA,,,,James R. McClelland,P.O. Box 268,,Franklin,LA,70538,5,337-828-0574,W,M,,210,12/31/2014,1/1/2009,Judge McClelland +District Judge ,"16th JDC, Election Section 2, Division E ",,,,LA,,,,Keith Comeaux,109 Plantation Dr.,,New Iberia,LA,70563,5,337-367-8923,W,M,,210,12/31/2014,1/1/2009,Judge Comeaux +District Judge ,"16th JDC, Election Section 2, Division F ",,,,LA,,,,"Edward ""Ed"" Leonard, Jr.",716 1st St.,,Morgan City,LA,70380,5,985-385-3412,W,M,D,210,12/31/2014,1/1/2009,Judge Leonard +District Judge ,"17th Judicial District, Division A ",,,,LA,,,,John LeBlanc,P.O. Box 231,,Thibodaux,LA,70302,5,985-447-3780,W,M,D,210,12/31/2014,1/1/2009,Judge LeBlanc +District Judge ,"17th Judicial District, Division B ",,,,LA,,,,"Jerome J. ""Jerry"" Barbera, III",312 Ashland Dr.,,Thibodaux,LA,70301,5,985-447-4843,W,M,D,210,12/31/2014,1/1/2009,Judge Barbera +District Judge ,"17th Judicial District, Division C ",,,,LA,,,,"Walter I. Lanier, III",1082 Hwy. 1,,Thibodaux,LA,70301,5,985-448-0897,W,M,D,210,12/31/2014,1/1/2009,Judge Lanier +District Judge ,"17th Judicial District, Division D ",,,,LA,,,,Bruce Simpson,P.O. Box 67,,Lockport,LA,70374,5,985-532-2233,W,M,D,210,12/31/2014,1/1/2009,Judge Simpson +District Judge ,"17th Judicial District, Division E ",,,,LA,,,,"F. Hugh ""Buddy"" Larose",102 Palm Pl.,,Thibodaux,LA,70301,5,985-446-1694,W,M,D,210,12/31/2014,1/1/2009,Judge Larose +District Judge ,"18th JDC, Election Section 1, Division C ",,,,LA,,,,"Alvin Batiste, Jr.",20725 Charles Ory Dr.,,Plaquemine,LA,70764,5,225-687-5230,B,M,D,210,12/31/2014,1/1/2009,Judge Batiste +District Judge ,"18th JDC, Election Section 2, Division D ",,,,LA,,,,William C. Dupont,24010 Sherwood Dr.,,Plaquemine,LA,70764,5,225-687-7070,W,M,D,210,12/31/2014,1/1/2009,Judge Dupont +District Judge ,"18th JDC, Election Section 3, Division B ",,,,LA,,,,J. Robin Free,P.O. Box 274,,Port Allen,LA,70767,5,225-627-3918,W,M,D,210,12/31/2014,1/1/2009,Judge Free +District Judge ,"18th JDC, Election Section 4, Division A ",,,,LA,,,,James J. Best,14433 Waterloo Drive,,Ventress,LA,70783,5,225-638-5630,W,M,D,210,12/31/2014,1/1/2009,Judge Best +District Judge ,"19th JDC, Election Section 1, Division B ",,,,LA,,,,"Donald ""Don"" Johnson",3124 Jefferson Ave.,,Baton Rouge,LA,70802,5,225-278-5972,B,M,D,210,12/31/2014,1/1/2009,Judge Johnson +District Judge ,"19th JDC, Election Section 1, Division D ",,,,LA,,,,Janice Clark,"222 St. Louis St., Ste. 816",,Baton Rouge,LA,70801,5,225-389-5012,B,F,D,210,12/31/2014,1/1/2009,Judge Clark +District Judge ,"19th JDC, Election Section 1, Division J ",,,,LA,,,,Trudy White,P.O. Box 66514,,Baton Rouge,LA,70896,5,225-389-3025,B,F,D,210,12/31/2014,1/1/2009,Judge White +District Judge ,"19th JDC, Election Section 1, Division K ",,,,LA,,,,Bonnie Jackson,1235 Chariot Dr.,,Baton Rouge,LA,70816,5,225-389-4755,B,F,D,210,12/31/2014,1/1/2009,Judge Jackson +District Judge ,"19th JDC, Election Section 1, Division O ",,,,LA,,,,Wilson Fields,2147 Government St.,,Baton Rouge,LA,70802,5,225-343-5377,B,M,D,210,12/31/2014,1/1/2009,Judge Fields +District Judge ,"19th JDC, Election Section 2, Division A ",,,,LA,,,,Todd Hernandez,"222 St. Louis St., Ste. 619",,Baton Rouge,LA,70801,5,225-389-4706,W,M,R,210,12/31/2014,1/1/2009,Judge Hernandez +District Judge ,"19th JDC, Election Section 2, Division G ",,,,LA,,,,Richard D. Anderson,12888 Triple B Rd.,,Greenwell Springs,LA,70739,5,225-262-0970,W,M,R,210,12/31/2014,1/1/2009,Judge Anderson +District Judge ,"19th JDC, Election Section 2, Division L ",,,,LA,,,,"""Mike"" Erwin",1024 E. Lakeview,,Baton Rouge,LA,70810,5,225-769-0213,W,M,D,210,12/31/2014,1/1/2009,Judge Erwin +District Judge ,"19th JDC, Election Section 2, Division M ",,,,LA,,,,Kay Bates,"222 St. Louis St., Ste. 776",,Baton Rouge,LA,70802,5,225-389-4787,W,F,D,210,12/31/2014,1/1/2009,Judge Bates +District Judge ,"19th JDC, Election Section 2, Division N ",,,,LA,,,,"Richard ""Chip"" Moore, III",4965 East Mae St.,,Zachary,LA,70791,5,225-658-4888,W,M,R,210,12/31/2014,1/1/2009,Judge Moore +District Judge ,"19th JDC, Election Section 3, Division C ",,,,LA,,,,Louis R. Daniel,8925 Brookwood Dr.,,Baton Rouge,LA,70809,5,225-926-1553,W,M,R,210,12/31/2014,1/1/2009,Judge Daniel +District Judge ,"19th JDC, Election Section 3, Division E ",,,,LA,,,,William Morvant,"222 St. Louis St., Ste. 880",,Baton Rouge,LA,70801,5,225-389-4714,W,M,R,210,12/31/2014,1/1/2009,Judge Morvant +District Judge ,"19th JDC, Election Section 3, Division F ",,,,LA,,,,"""Tim"" Kelley",P.O. Box 3261,,Baton Rouge,LA,70821,5,225-389-4728,W,M,R,210,12/31/2014,1/1/2009,Judge Kelley +District Judge ,"19th JDC, Election Section 3, Division H ",,,,LA,,,,"Anthony J. ""Tony"" Marabella, Jr.",16654 S. Fulwar Skipwith Rd.,,Baton Rouge,LA,70810,5,225-754-1068,W,M,D,210,12/31/2014,1/1/2009,Judge Marabella +District Judge ,"19th JDC, Election Section 3, Division I ",,,,LA,,,,R. Michael Caldwell,4518 Whitehaven St.,,Baton Rouge,LA,70808,5,225-389-4734,W,M,R,210,12/31/2014,1/1/2009,Judge Caldwell +District Judge ,"20th Judicial District, Division A ",,,,LA,,,,"""Hal"" Ware",P.O. Box 38,,Wilson,LA,70789,5,225-629-4724,W,M,D,210,12/31/2014,1/1/2009,Judge Ware +District Judge ,"20th Judicial District, Division B ",,,,LA,,,,William G. Carmichael,P.O. Box 803,,Clinton,LA,70722,5,,W,M,D,210,12/31/2014,1/1/2009,Judge Carmichael +District Judge ,"21st Judicial District, Division A ",,,,LA,,,,Wayne Ray Chutz,990 Calmes Rd.,,Denham Springs,LA,70706,5,225-665-6039,W,M,R,210,12/31/2014,1/1/2009,Judge Chutz +District Judge ,"21st Judicial District, Division B ",,,,LA,,,,Bruce C. Bennett,P.O. Box 401,,Livingston,LA,70754,5,225-791-3753,W,M,R,210,12/31/2014,1/1/2009,Judge Bennett +District Judge ,"21st Judicial District, Division C ",,,,LA,,,,"Robert H. ""Bob"" Morrison, III",P.O. Box 800,,Watson,LA,70786,5,225-665-1562,W,M,R,210,12/31/2014,1/1/2009,Judge Morrison +District Judge ,"21st Judicial District, Division D ",,,,LA,,,,"Milton D. ""Doug"" Hughes",1101 Cockerham Rd.,,Denham Springs,LA,70726,5,225-667-4870,W,M,R,210,12/31/2014,1/1/2009,Judge Hughes +District Judge ,"21st Judicial District, Division E ",,,,LA,,,,Brenda Bedsole Ricks,P.O. Box 280,,Amite,LA,70422,5,985-748-8439,W,F,R,210,12/31/2014,1/1/2009,Judge Ricks +District Judge ,"21st Judicial District, Division F ",,,,LA,,,,"Elizabeth ""Beth"" Wolfe",P.O. Box 36,,Albany,LA,70711,5,225-567-1037,W,F,R,210,12/31/2014,1/1/2009,Judge Wolfe +District Judge ,"21st Judicial District, Division G ",,,,LA,,,,"Ernest ""Ernie"" Drake, Jr.",P.O. Box 188,,Ponchatoula,LA,70454,5,985-386-9713,W,M,D,210,12/31/2014,1/1/2009,Judge Drake +District Judge ,"21st Judicial District, Division H ",,,,LA,,,,"Zorraine M. ""Zoey"" Waguespack",30047 Corbin Ave.,,Walker,LA,70785,5,225-665-8265,W,F,D,210,12/31/2014,1/1/2009,Judge Waguespack +District Judge ,"21st Judicial District, Division I ",,,,LA,,,,Blair Downing Edwards,1303 North General Pershing,,Hammond,LA,70401,5,985-542-6621,W,F,R,210,12/31/2014,1/1/2009,Judge Edwards +District Judge ,"22nd Judicial District, Division A ",,,,LA,,,,"""Ray"" Childress",83366 Shepherd Ln.,,Folsom,LA,70437,5,985-796-9081,W,M,R,210,12/31/2014,1/1/2009,Judge Childress +District Judge ,"22nd Judicial District, Division B ",,,,LA,,,,A. J. Hand,1016 1/2 W. 21st Ave.,,Covington,LA,70433,5,985-892-7211,W,M,R,210,12/31/2014,1/1/2009,Judge Hand +District Judge ,"22nd Judicial District, Division C ",,,,LA,,,,"Richard ""Rick"" Swartz",P.O. Box 4099,,Slidell,LA,70459,5,985-641-4688,W,M,R,210,12/31/2014,1/1/2009,Judge Swartz +District Judge ,"22nd Judicial District, Division D ",,,,LA,,,,Peter J. Garcia,220 S. Massachusetts St.,,Covington,LA,70433,5,985-809-5324,W,M,,210,12/31/2014,1/1/2009,Judge Garcia +District Judge ,"22nd Judicial District, Division E ",,,,LA,,,,"William J. ""Bill"" Burris",24447 Hwy. 25,,Franklinton,LA,70438,5,985-839-2145,W,M,R,210,12/31/2014,1/1/2009,Judge Burris +District Judge ,"22nd Judicial District, Division F ",,,,LA,,,,Martin E. Coady,72569 Military Rd.,,Covington,LA,70435,5,985-809-5330,W,M,R,210,12/31/2014,1/1/2009,Judge Coady +District Judge ,"22nd Judicial District, Division G ",,,,LA,,,,"William J. ""Will"" Crain",P.O. Box 1810,,Covington,LA,70434,5,985-892-4801,W,M,R,210,12/31/2014,1/1/2009,Judge Crain +District Judge ,"22nd Judicial District, Division H ",,,,LA,,,,"Allison Hopkins Penzato, ",701 N. Columbia St.,,Covington,LA,70433,5,985-809-5340,W,F,R,210,12/31/2014,1/1/2009,Judge Penzato +District Judge ,"22nd Judicial District, Division I ",,,,LA,,,,Reginald T. Badeaux,107 E. 7th Ave.,,Covington,LA,70433,5,985-893-5003,,,R,210,12/31/2014,1/1/2009,Judge Badeaux +District Judge ,"22nd Judicial District, Division J ",,,,LA,,,,"William ""Rusty"" Knight",20106 Hwy. 25,,Franklinton,LA,70438,5,985-839-3493,W,M,R,210,12/31/2014,1/1/2009,Judge Knight +District Judge ,"22nd Judicial District, Division K ",,,,LA,,,,Mary Clemence Devereux,2145 Hampshire Dr.,,Slidell,LA,70461,5,985-893-7550,W,F,R,210,12/31/2014,1/1/2009, +District Judge ,"22nd Judicial District, Division L ",,,,LA,,,,Dawn Amacker,534 E. Boston St.,,Covington,LA,70433,5,985-249-6008,W,F,R,210,12/31/2014,1/1/2009,Judge Amacker +District Judge ,"23rd JDC, Election Section 1, Division E ",,,,LA,,,,"Alvin Turner, Jr.",2222 S. Edward St.,,Gonzales,LA,70737,5,225-621-8500,B,M,D,210,12/31/2014,1/1/2009,Judge Turner +District Judge ,"23rd JDC, Election Section 2, Division A ",,,,LA,,,,Ralph Tureau,11117 Hwy. 431,,St. Amant,LA,70774,5,225-621-8514,W,M,D,210,12/31/2014,1/1/2009,Judge Tureau +District Judge ,"23rd JDC, Election Section 2, Division B ",,,,LA,,,,"""Tom"" Kliebert",2768 La. Hwy 44,,Paulina,LA,70763,5,225-869-4064,W,M,D,210,12/31/2014,1/1/2009,Judge Kliebert +District Judge ,"23rd JDC, Election Section 2, Division C ",,,,LA,,,,Guy Holdridge,2019 S. Woodlawn,,Gonzales,LA,70737,5,225-621-8500,W,M,D,210,12/31/2014,1/1/2009,Judge Holdridge +District Judge ,"23rd JDC, Election Section 2, Division D ",,,,LA,,,,Jane Triche-Milazzo,5184 Hwy. 308,,Napoleonville,LA,70390,5,985-369-6437,W,F,D,210,12/31/2014,1/1/2009,Judge Triche-Milazzo +District Judge ,"24th JDC, Election Section 1, Division G ",,,,LA,,,,"Robert A. ""Bob"" Pitre, Jr.",5214 Pitre Dr.,,Crown Point,LA,70072,5,504-689-2114,W,M,R,210,12/31/2014,1/1/2009,Judge Pitre +District Judge ,"24th JDC, Election Section 1, Division O ",,,,LA,,,,Ross P. LaDart,2516 Cypress Lawn Dr.,,Marrero,LA,70072,5,504-347-4993,W,M,R,210,12/31/2014,1/1/2009,Judge Dart +District Judge ,"24th JDC, Election Section 2, Division A ",,,,LA,,,,"William C. Credo, ",1900 Division St.,,Metairie,LA,70001,5,,,,,210,,12/21/2009,Judge +District Judge ,"24th JDC, Election Section 2, Division D ",,,,LA,,,,Robert M. Murphy,450 Woodvine Ave.,,Metairie,LA,70005,5,504-837-6912,W,M,R,210,12/31/2014,1/1/2009,Judge Murphy +District Judge ,"24th JDC, Election Section 2, Division F ",,,,LA,,,,Patrick J. McCabe,4712 Toby Ln.,,Metairie,LA,70003,5,504-887-2959,W,M,R,210,12/31/2014,1/1/2009,Judge McCabe +District Judge ,"24th JDC, Election Section 2, Division N ",,,,LA,,,,Hans J. Liljeberg,71 Metairie Ct. Pkwy.,,Metairie,LA,70001,5,504-301-3648,W,M,R,210,12/31/2014,1/1/2009,Judge Liljeberg +District Judge ,"24th JDC, Election Section 3, Division K ",,,,LA,,,,Ellen Shirer Kovach,2612 Labarre Ln.,,Metairie,LA,70001,5,504-831-0890,W,F,R,210,12/31/2014,1/1/2009,Judge Kovach +District Judge ,"24th JDC, Election Section 3, Division L ",,,,LA,,,,"Donald A. ""Donnie"" Rowan, Jr.",P.O. Box 1034,,Metairie,LA,70404,5,504-834-5444,W,M,R,210,12/31/2014,1/1/2009,Judge Rowan +District Judge ,"24th JDC, Election Section 4, Division H ",,,,LA,,,,Glenn B. Ansardi,25 Emile St.,,Kenner,LA,70065,5,504-466-1331,W,M,R,210,12/31/2014,1/1/2009,Judge Ansardi +District Judge ,"24th JDC, Election Section 4, Division I ",,,,LA,,,,Nancy A. Miller,4708 Green Acres Ct.,,Metairie,LA,70003,5,504-237-3903,W,F,R,210,12/31/2014,1/1/2009,Judge Miller +District Judge ,"24th JDC, Election Section 5, Division C ",,,,LA,,,,June Berry Darensburg,6005 Boutall St.,,Metairie,LA,70003,5,504-456-6485,B,F,D,210,12/31/2014,1/1/2009,Judge Darensburg +District Judge ,"24th JDC, Election Section 5, Division P ",,,,LA,,,,"Lee V. Faulkner, Jr.",P.O. Box 185,,Gretna,LA,70054,5,504-361-8596,B,M,D,210,12/31/2014,1/1/2009,Judge Faulkner +District Judge ,"24th JDC, Election Section 6, Division J ",,,,LA,,,,"Stephen J. ""Steve"" Windhorst",200 Derbigny St. Div. J,,Gretna,LA,70053,5,504-364-3916,W,M,R,210,12/31/2014,1/1/2009,Judge Windhorst +District Judge ,"24th JDC, Election Section 6, Division M ",,,,LA,,,,"Henry G. Sullivan, Jr.",15 Derbes Dr.,,Gretna,LA,70053,5,,W,M,D,210,12/31/2014,1/1/2009,Judge Sullivan +District Judge ,"24th JDC, Election Section 7, Division B ",,,,LA,,,,"Cornelius E. ""Conn"" Regan",127 Arlington Dr.,,Metairie,LA,70001,5,504-835-3933,W,M,R,210,12/31/2014,1/1/2009,Judge Regan +District Judge ,"24th JDC, Election Section 7, Division E ",,,,LA,,,,"John J. Molaison, Jr.",420 Timberlane Dr.,,Gretna,LA,70056,5,504-362-0772,W,M,R,210,12/31/2014,1/1/2009,Judge Molaison +District Judge ,"25th Judicial District, Division A ",,,,LA,,,,Kevin Conner,122 Clausen Rd.,,Belle Chasse,LA,70037,5,504-656-2495,W,M,O,210,12/31/2014,1/1/2009,Judge Conner +District Judge ,"25th Judicial District, Division B ",,,,LA,,,,"Joyce Cossich ""Joy"" Lobrano",P.O. Box 671,,Belle Chasse,LA,70037,5,504-433-3100,W,F,R,210,12/31/2014,1/1/2009,Judge Lobrano +District Judge ,"26th Judicial District, Division A ",,,,LA,,,,"Michael ""Mike"" Craig",1000 Mallard Bend Cir.,,Bossier City,LA,71111,5,318-752-5770,W,M,R,210,12/31/2014,1/1/2009,Judge Craig +District Judge ,"26th Judicial District, Division B ",,,,LA,,,,"Ford E. Stinson, Jr.",P.O. Box 276,,Benton,LA,71006,5,318-965-9659,W,M,D,210,12/31/2014,1/1/2009,Judge Stinson +District Judge ,"26th Judicial District, Division C ",,,,LA,,,,"""Jeff"" Cox",345 Crosscreek Dr.,,Bossier City,LA,71111,5,318-752-4470,W,M,R,210,12/31/2014,1/1/2009,Judge Cox +District Judge ,"26th Judicial District, Division D ",,,,LA,,,,John M. Robinson,512 Weavers Way,,Bossier City,LA,71111,5,318-965-2217,W,M,,210,12/31/2014,1/1/2009,Judge Robinson +District Judge ,"26th Judicial District, Division E ",,,,LA,,,,Bruce Bolin,1009 Cressmont St.,,Bossier City,LA,71111,5,318-965-2217,W,M,D,210,12/31/2014,1/1/2009,Judge Bolin +District Judge ,"26th Judicial District, Division F ",,,,LA,,,,Parker Self,200 Claremore Cir.,,Bossier City,LA,71111,5,318-747-1946,W,M,D,210,12/31/2014,1/1/2009,Judge Self +District Judge ,"27th JDC, Election Section 1, Division C ",,,,LA,,,,Alonzo Harris,4573 Hwy. 743,,Washington,LA,70589,5,337-826-7104,B,M,D,210,12/31/2014,1/1/2009,Judge Harris +District Judge ,"27th JDC, Election Section 2, Division A ",,,,LA,,,,"James P. ""Jim"" Doherty, Jr.",P.O. Box 881,,Opelousas,LA,70570,5,337-942-4134,W,M,D,210,12/31/2014,1/1/2009,Judge Doherty +District Judge ,"27th JDC, Election Section 3, Division D ",,,,LA,,,,Donald W. Hebert,117 E. Smiley St.,,Opelousas,LA,70570,5,337-942-8647,W,M,D,210,12/31/2014,1/1/2009,Judge Hebert +District Judge ,"27th JDC, Election Section 4, Division B ",,,,LA,,,,Ellis J. Daigle,P.O. Box 1686,,Eunice,LA,70535,5,337-948-0586,W,M,D,210,12/31/2014,1/1/2009,Judge Daigle +District Judge ,28th Judicial District ,,,,LA,,,,J. Christopher Peters,P.O. Box 2387,,Jena,LA,71342,5,318-992-1950,W,M,D,210,12/31/2014,1/1/2009,Judge Peters +District Judge ,"29th Judicial District, Division C ",,,,LA,,,,Emile R. St. Pierre,135 Ormond Oaks Dr.,,Destrehan,LA,70047,5,985-764-8031,W,M,D,210,12/31/2014,1/1/2009,Judge St. Pierre +District Judge ,"29th Judicial District, Division D ",,,,LA,,,,Lauren Lemmon,117 Wade St.,,Luling,LA,70070,5,985-783-6789,W,F,D,210,12/31/2014,1/1/2009,Judge Lemmon +District Judge ,"29th Judicial District, Division E ",,,,LA,,,,Robert A. Chaisson,P.O. Box 222,,Destrehan,LA,70047,5,985-764-6054,W,M,D,210,12/31/2014,1/1/2009,Judge Chaisson +District Judge ,"30th Judicial District, Division A ",,,,LA,,,,Vernon B. Clark,116 Bray Lane,,Leesville,LA,71446,5,337-239-4485,W,M,D,210,12/31/2014,1/1/2009,Judge Clark +District Judge ,"30th Judicial District, Division B ",,,,LA,,,,John Ford,1461 Fords Dairy Rd.,,New Llano,LA,71461,5,337-239-0103,W,M,D,210,12/31/2014,1/1/2009,Judge Ford +District Judge ,"30th Judicial District, Division C ",,,,LA,,,,"James R. ""Jim"" Mitchell",729 Alexandria Hwy.,,Leesville,LA,71446,5,337-239-6709,W,M,R,210,12/31/2014,1/1/2009,Judge Mitchell +District Judge ,31st Judicial District ,,,,LA,,,,Steve Gunnell,2200 E. Academy Ave.,,Jennings,LA,70546,5,337-824-8552,W,M,D,210,12/31/2014,1/1/2009,Judge Gunnell +District Judge ,"32nd Judicial District, Division A ",,,,LA,,,,"George J. Larke, Jr.",7 Richland Row,,Houma,LA,70360-7935,10,985-876-3858,W,M,D,210,12/31/2014,1/1/2009,Judge Lark +District Judge ,"32nd Judicial District, Division B ",,,,LA,,,,John R. Walker,221 Maple Ave.,,Houma,LA,70364-3150,10,985-876-3797,W,M,D,210,12/31/2014,1/1/2009,Judge Walker +District Judge ,"32nd Judicial District, Division C ",,,,LA,,,,Timothy C. Ellender,P.O. Box 308,,Houma,LA,70361-0308 ,11,985-804-0303,W,M,R,210,12/31/2014,1/1/2009,Judge Ellender +District Judge ,"32nd Judicial District, Division D ",,,,LA,,,,David W. Arceneaux,88 Wayside Dr.,,Houma,LA,70360-6100,10,985-868-7465,W,M,R,210,12/31/2014,1/1/2009,Judge Arceneaux +District Judge ,"32nd Judicial District, Division E ",,,,LA,,,,"Randall L. ""Randy"" Bethancourt",504 June Dr.,,Houma,LA,70360-7423,10,985-868-0942,W,M,R,210,12/31/2014,1/1/2009,Judge Bethancourt +District Judge ,"33rd Judicial District, Division A ",,,,LA,,,,Joel Davis,202 Hospital Dr.,,Oakdale,LA,71463,5,318-335-1521,W,M,D,210,12/31/2014,1/1/2009,Judge Davis +District Judge ,"33rd Judicial District, Division B ",,,,LA,,,,Patricia Cole,P.O. Box 584,,Oberlin,LA,70655,5,337-639-2762,W,F,D,210,12/31/2014,1/1/2009,Judge Cole +District Judge ,"34th Judicial District, Division A ",,,,LA,,,,"Robert A. ""Bob"" Buckley",10 Pecan Grove Ln.,,Meraux,LA,70075,5,504-277-6171,W,M,D,210,12/31/2014,1/1/2009,Judge Buckley +District Judge ,"34th Judicial District, Division B ",,,,LA,,,,"Manuel A. ""Manny"" Fernandez",2032 Fort Beauregard Blvd.,,St. Bernard,LA,70085,5,504-267-0014,W,M,D,210,12/31/2014,1/1/2009,Judge Fernandez +District Judge ,"34th Judicial District, Division C ",,,,LA,,,,Robert J. Klees,41409 Rue Chene,,Pontahoula,LA,70454,5,,,,,210,,11/8/2009,Judge Klees +District Judge ,"34th Judicial District, Division C ",,,,LA,,,,"Perry Nicosia, ",2113 Serpas Ln.,,St. Bernard,LA,70085-5822,10,504-267-3936,W,M,D,210,,2/15/2010, +District Judge ,"34th Judicial District, Division D ",,,,LA,,,,Kirk A. Vaughn,3613 Dauterive Dr.,,Chalmette,LA,70043,5,504-301-0328,W,M,D,210,12/31/2014,1/1/2009,Judge Vaughn +District Judge ,"34th Judicial District, Division E ",,,,LA,,,,Jacques A. Sanborn,1101 West St. Bernard Hwy.,,Chalmette,LA,70043,5,504-481-8135,W,M,D,210,12/31/2014,1/1/2009,Judge Sanborn +District Judge ,35th Judicial District ,,,,LA,,,,"Warren Daniel ""Danny"" Willett",125 Durham Rd.,,Pollock,LA,71467,5,318-765-0821,W,M,R,210,12/31/2014,1/1/2009,Judge Willett +District Judge ,"36th Judicial District, Division A ",,,,LA,,,,Martha Ann O'Neal,703 Park Rd.,,DeRidder,LA,70634,5,337-462-6051,W,F,D,210,12/31/2014,1/1/2009,Judge O'Neal +District Judge ,"36th Judicial District, Division B ",,,,LA,,,,Kerry Anderson,P.O. Box 1025,,DeRidder,LA,70634,5,337-463-2100,W,M,,210,12/31/2014,1/1/2009,Judge Anderson +District Judge ,37th Judicial District ,,,,LA,,,,Don C. Burns,2071 Hwy. 850,,Grayson,LA,71435,5,318-649-2793,W,M,D,210,12/31/2014,1/1/2009,Judge Burns +District Judge ,38th Judicial District ,,,,LA,,,,Penelope Quinn Richard,4924 West Creole Hwy.,,Cameron,LA,70631,5,337-542-4310,W,F,D,210,12/31/2014,1/1/2009,Judge Richard +District Judge ,39th Judicial District ,,,,LA,,,,Lewis O. Sams,P.O. Box 383,,Coushatta,LA,71019,5,318-932-6241,W,M,D,210,12/31/2014,1/1/2009,Judge Sams +District Judge ,"40th JDC, Election Section 1, Division B ",,,,LA,,,,Mary Hotard Becnel,400 West Fifth St.,,LaPlace,LA,70068,5,985-652-6747,W,F,D,210,12/31/2014,1/1/2009,Judge Becnel +District Judge ,"40th JDC, Election Section 2, Division A ",,,,LA,,,,Madeline Jasmine,P.O. Box 189,,Edgard,LA,70049,5,985-497-8247,B,F,D,210,12/31/2014,1/1/2009,Judge Jasmine +District Judge ,"40th JDC, Election Section 3, Division C ",,,,LA,,,,Sterling Snowdy,P.O. Box 308,,Edgard,LA,70049,5,985-652-8939,W,M,D,210,12/31/2014,1/1/2009,Judge Snowdy +District Judge ,"42nd Judicial District Court, Division A ",,,,LA,,,,Robert E. Burgess,P.O. Box 1581,,Mansfield,LA,71052,5,318-872-5160,W,M,,210,12/31/2014,1/1/2009,Judge Burgess +District Judge ,"42nd Judicial District Court, Division B ",,,,LA,,,,Charles B. Adams,1172 Smyrna Rd.,,Keatchie,LA,71046-3006,10,318-933-8740,W,M,R,210,12/31/2014,1/1/2009,Judge Adams +Judge ,"Civil District Court, Division A ",,,,LA,,,,Tiffany Gautier Chase,Div. A,,New Orleans,LA,70112,5,504-581-9059,B,F,D,210,12/31/2014,1/1/2009,Judge Chase +Judge ,"Civil District Court, Division B ",,,,LA,,,,Rose Ledet,1229 Gov. Nicholls St.,,New Orleans,LA,70116,5,504-592-9204,B,F,D,210,12/31/2014,1/1/2009,Judge Ledet +Judge ,"Civil District Court, Division C ",,,,LA,,,,"Sidney H. Cates, IV",#8 DuckHook Dr.,,New Orleans,LA,70118,5,504-373-5645,B,M,D,210,12/31/2014,1/1/2009,Judge Cates +Judge ,"Civil District Court, Division D ",,,,LA,,,,"Lloyd J. Medley, Jr.",P.O. Box 51597,,New Orleans,LA,70151,5,504-491-6075,B,M,D,210,12/31/2014,1/22/2009,Judge Medley +Judge ,"Civil District Court, Division E ",,,,LA,,,,Madeleine M. Landrieu,"421 Loyola Ave., Div. E.",,New Orleans,LA,70112,5,504-592-9213,W,F,D,210,12/31/2014,1/1/2009,Judge Landrieu +Judge ,"Civil District Court, Division F ",,,,LA,,,,"Christopher ""Chris"" Bruno",170 Audubon Blvd.,,New Orleans,LA,70118,5,504-862-0108,W,M,D,210,12/31/2014,1/1/2009,Judge Bruno +Judge ,"Civil District Court, Division G ",,,,LA,,,,Robin Giarrusso,3557 Inwood Avenue,,New Orleans,LA,70131,5,504-433-9974,W,F,D,210,12/31/2014,1/1/2009,Judge Giarrusso +Judge ,"Civil District Court, Division H ",,,,LA,,,,Michael G. Bagneris,P.O. Box 56775,,New Orleans,LA,70156,5,504-289-6564,B,M,D,210,12/31/2014,1/1/2009,Judge Bagneris +Judge ,"Civil District Court, Division I ",,,,LA,,,,Piper Griffin,P.O. Box 51886,,New Orleans,LA,70151,5,504-451-6515,B,F,D,210,12/31/2014,1/1/2009,Judge Griffin +Judge ,"Civil District Court, Division J ",,,,LA,,,,"Paula Brown, ",3724 Clermont Dr.,,New Orleans,LA,70122-4737,10,504-473-4366,B,F,D,210,12/31/2014,2/17/2010,Judge Brown +Judge ,"Civil District Court, Division J ",,,,LA,,,,"James M. Williams, ",3500 N. Hullen St.,,Metairie,LA,70002,5,,,,,210,,10/12/2009,Mr. Williams +Judge ,"Civil District Court, Division K ",,,,LA,,,,Herbert A. Cade,3949 Mimosa Drive,,New Orleans,LA,70131,5,504-394-5339,B,M,D,210,12/31/2014,1/1/2009,Judge Cade +Judge ,"Civil District Court, Division L ",,,,LA,,,,Kern A. Reese,4824 Bancroft Dr.,,New Orleans,LA,70122,5,504-473-3253,B,M,D,210,12/31/2014,1/1/2009,Judge Reese +Judge ,"Civil District Court, Division M ",,,,LA,,,,Paulette Irons,4819 Bancroft Dr.,,New Orleans,LA,70122,5,504-237-6010,B,F,D,210,12/31/2014,1/1/2009,Judge Irons +Judge ,"Civil District Court, Division N ",,,,LA,,,,Ethel Julien,3200 Louisiana Avenue Parkway,,New Orleans,LA,70125,5,504-821-7015,B,F,D,210,12/31/2014,1/1/2009,Judge Julien +Judge ,"Criminal District Court, Section A ",,,,LA,,,,Laurie White,P.O. Box 30087,,New Orleans,LA,70190,5,504-289-7371,W,F,D,210,12/31/2014,1/1/2009,Judge White +Judge ,"Criminal District Court, Section B ",,,,LA,,,,Lynda Van Davis,"2700 Tulane Ave., Section ""B""",,New Orleans,LA,70119,5,504-658-9140,B,F,D,210,12/31/2014,1/1/2009,Judge Davis +Judge ,"Criminal District Court, Section C ",,,,LA,,,,Benedict J. Willard,1670 Sere St.,,New Orleans,LA,70122,5,504-658-9150,B,M,D,210,12/31/2014,1/1/2009,Judge Willard +Judge ,"Criminal District Court, Section D ",,,,LA,,,,Frank A. Marullo,7904 Birch St.,,New Orleans,LA,70118,5,504-861-0993,W,M,D,210,12/31/2014,1/1/2009,Judge Marullo +Judge ,"Criminal District Court, Section E ",,,,LA,,,,Keva Landrum-Johnson,P.O. Box 58333,,New Orleans,LA,70158,5,504-554-9777,B,F,D,210,12/31/2014,1/1/2009,Ms. Landrum-Johnson +Judge ,"Criminal District Court, Section F ",,,,LA,,,,Robin Pittman,2700 Tulane Ave.,,New Orleans,LA,70119,5,504-913-6581,B,F,D,210,12/31/2014,1/1/2009,Judge Pittman +Judge ,"Criminal District Court, Section G ",,,,LA,,,,Julian A. Parker,2700 Tulane Ave.,,New Orleans,LA,70119,5,504-658-9190,B,M,D,210,12/31/2014,1/1/2009,Judge Parker +Judge ,"Criminal District Court, Section H ",,,,LA,,,,Camille Buras,417 18th St.,,New Orleans,LA,70124,5,504-884-5832,W,F,D,210,12/31/2014,1/1/2009,Judge Buras +Judge ,"Criminal District Court, Section I ",,,,LA,,,,Karen Herman,P.O. Box 15646,,New Orleans,LA,70175,5,504-452-1147,W,F,D,210,12/31/2014,1/1/2009,Judge Herman +Judge ,"Criminal District Court, Section J ",,,,LA,,,,Darryl Derbigny,"2700 Tulane Ave., Section ""J""",,New Orleans,LA,70119,5,504-658-9320,B,M,D,210,12/31/2014,1/1/2009,Judge Derbigny +Judge ,"Criminal District Court, Section K ",,,,LA,,,,Arthur Hunter,P.O. Box 53404,,New Orleans,LA,70153,5,504-919-2868,B,M,D,210,12/31/2014,1/1/2009,Judge Hunter +Judge ,"Criminal District Court, Section L ",,,,LA,,,,Terry Q. Alarcon,6225 St. Bernard Avenue,,New Orleans,LA,70122,5,504-283-8582,W,M,D,210,12/31/2014,1/1/2009,Judge Alarcon +Magistrate ,"Magistrate Section, Criminal District Court ",,,,LA,,,,Gerard J. Hansen,"4007 St. Charles Ave., Unit 208",,,LA,70115,5,504-874-1596,W,M,D,210,12/31/2014,1/1/2009,Magistrate Hansen +District Attorney , 1st Judicial District ,501 Texas St.,,Shreveport,LA,71101-5400,318-226-6956,,Charles Rex Scott,9304 Melissa Way,,Shreveport,LA,71115-2527,10,318-797-1245,W,,D,215,1/11/2015,1/12/2009,Mr. Scott +District Attorney , 2nd Judicial District ,512 North Main,,Homer,LA,71040,318-927-4862,,Jonathan M. Stewart,2013 Hwy. 794,,Gibsland,LA,71028,5,318-263-2031,W,M,D,215,1/11/2015,1/12/2009,Mr. Stewart +District Attorney , 3rd Judicial District ,P.O. Box 777,,Ruston,LA,71273-0777 ,318-251-5100,,Robert W. Levy,One Ridgecrest Dr.,,Vienna,LA,71235,5,318-251-5100,W,M,D,215,1/11/2015,1/12/2009,Mr. Levy +District Attorney , 4th Judicial District ,P.O. Box 1652,,Monroe,LA,71210,318-388-4720,,Jerry L. Jones,P.O. Box 52,,Mer Rouge,LA,71261,5,318-647-3364,W,M,D,215,1/11/2015,1/12/2009,Mr. Jones +District Attorney , 5th Judicial District ,P.O. Box 389,,Rayville,LA,71269,318-728-3227,,"William R. ""Billy"" Coenen, Jr.",P.O. Box 389,,Rayville,LA,71269,5,318-728-3227,W,M,D,215,1/11/2015,1/12/2009,Mr. Coenen +District Attorney , 6th Judicial District ,P.O. Box 43,,Tallulah,LA,71284-0043 ,318-574-4771,,James E. Paxton,P. O. Box 97,,St. Joseph,LA,71366,5,318-766-4892,W,M,D,215,1/11/2015,1/12/2009,Mr. Paxton +District Attorney , 7th Judicial District ,"4001 Carter St., Ste. 9",,Vidalia,LA,71373,318-336-5526,,Bradley R. Burget,"4001 Carter St., Ste. 9",,Vidalia,LA,71373,5,318-336-5526,W,M,D,215,1/11/2015,1/12/2009,Mr. Burget +District Attorney , 8th Judicial District ,P.O. Box 1374,,Winnfield,LA,71483-1374,318-628-2141,,"R. C. ""Chris"" Nevils",407 W. Main St.,,Winnfield,LA,71483,5,318-628-2141,W,M,D,215,1/11/2015,1/12/2009,Mr. Nevils +District Attorney , 9th Judicial District ,P.O. Drawer 1472,,Alexandria,LA,71309,318-473-6650,,"James C. ""Jam"" Downs",P.O. Box 269,,Alexandria,LA,71309,5,318-448-3439,W,M,D,215,1/11/2015,1/12/2009,Mr. Downs +District Attorney ,10th Judicial District ,P.O. Box 838,,Natchitoches,LA,71458-0838 ,318-357-2214,,Van H. Kyzar,1946 Williams Ave.,,Natchitoches,LA,71457,5,318-352-6585,W,M,D,215,1/11/2015,1/12/2009,Mr. Kyzar +District Attorney ,11th Judicial District ,P.O. Box 1557,,Many,LA,71449,318-256-3072,,Don M. Burkett,540 N. Courthouse St.,,Many,LA,71449,5,318-471-7101,W,M,R,215,1/11/2015,1/12/2009,Mr. Burkett +District Attorney ,12th Judicial District ,P.O. Box 608,,Marksville,LA,71351,318-253-6587,,"Charles ""Charlie"" Riddle, III",P.O. Box 315,,Marksville,LA,71351,5,318-253-4551,W,M,D,215,1/11/2015,1/12/2009,Mr. Riddle +District Attorney ,13th Judicial District ,P.O. Box 450,,Ville Platte,LA,70586,337-363-3438,,Trent Brignac,1726 Chicot Park Rd.,,Ville Platte,LA,70586,5,337-363-0492,W,M,D,215,1/11/2015,1/12/2009,Mr. Brignac +District Attorney ,14th Judicial District ,1020 Ryan St.,,Lake Charles,LA,70602,337-437-3400,,John DeRosier,3600 Lake St.,,Lake Charles,LA,70605,5,337-477-3599,W,M,D,215,1/11/2015,1/12/2009,Mr. DeRosier +District Attorney ,15th Judicial District ,800 S. Buchanan St.,,Lafayette,LA,70502,318-232-5170,,Michael Harson,100 Demas Dr.,,Lafayette,LA,70506,5,337-984-9794,W,M,D,215,1/11/2015,1/12/2009,Mr. Harson +District Attorney ,16th Judicial District ,"Courthouse Bldg., Ste. 200",,New Iberia,LA,70560-4583,337-369-4420,,J. Phil Haney,2103 Warwick St.,,New Iberia,LA,70563,5,337-229-8222,W,M,D,215,1/11/2015,1/12/2009,Mr. Haney +District Attorney ,17th Judicial District ,P.O. Box 431,,Thibodaux,LA,70301,985-447-2003,,"Camille A. ""Cam"" Morvant, II",421 Plater Dr.,,Thibodaux,LA,70301,5,985-446-6291,W,M,D,215,1/11/2015,1/12/2009,Mr. Morvant +District Attorney ,18th Judicial District ,P.O. Drawer 880,,Plaquemine,LA,70765-0880 ,225-687-5210,,"Richard J. ""Ricky"" Ward, Jr.",P.O. Box 309,,Maringouin,LA,70757,5,225-687-5210,W,M,D,215,1/11/2015,1/12/2009,Mr. Ward +District Attorney ,19th Judicial District ,222 St. Louis St.,,Baton Rouge,LA,70802,225-389-3400,,Hillar Moore,6513 Perkins Rd.,,Baton Rouge,LA,70808,5,225-757-0100,W,M,D,215,1/11/2015,1/12/2009,Mr. Moore +District Attorney ,20th Judicial District ,P.O. Box 429,,Jackson,LA,70748,225-634-2535,,"""Sam"" D'Aquilla",P. O. Box 429,,Jackson,LA,70748,5,225-634-2535,W,M,D,215,1/11/2015,1/12/2009,Mr. D'Aquilla +District Attorney ,21st Judicial District ,P.O. Drawer 639,,Amite,LA,70422,985-748-7890,,Scott M. Perrilloux,17120 Natures Trace,,Hammond,LA,70403,5,985-542-6985,W,M,R,215,1/11/2015,1/12/2009,Mr. Perrilloux +District Attorney ,22nd Judicial District ,428 East Boston St.,,Covington,LA,70433,985-898-2392,,Walter P. Reed,701 N. Columbia St.,,Covington,LA,70433,5,985-809-8383,W,M,R,215,1/11/2015,1/12/2009,Mr. Reed +District Attorney ,23rd Judicial District ,P.O. Drawer 279,,Napoleonville,LA,70390,504-369-3568,,Ricky Babin,12420 Fernand Rd.,,Gonzales,LA,70737,5,225-677-8490,W,M,D,215,1/11/2015,1/12/2009,Mr. Babin +District Attorney ,24th Judicial District ,Courthouse Annex,,Gretna,LA,70053,,,"Paul D. Connick, Jr.",113 Beverly Dr.,,Metairie,LA,70001,5,504-835-0754,W,M,D,215,1/11/2015,1/12/2009,Mr. Connick +District Attorney ,25th Judicial District ,Courthouse,,Pointe-a-la-hache,LA,70082,504-392-6690,,Charles J. Ballay,1 Park Riverwoods,,Belle Chasse,LA,70037,5,504-394-2690,W,M,D,215,1/11/2015,1/12/2009,Mr. Ballay +District Attorney ,26th Judicial District ,P.O. Box 69,,Benton,LA,71006,318-965-2332,,Schuyler Marvin,700 Gladney,,Minden,LA,71055,5,318-377-3593,W,M,R,215,1/11/2015,1/12/2009,Mr. Marvin +District Attorney ,27th Judicial District ,P.O. Drawer 1968,,Opelousas,LA,70571,337-948-3041,,Earl Taylor,P. O. Drawer 1968,,Opelousas,LA,70571-1968,10,337-948-3007,W,M,D,215,1/11/2015,1/12/2009,Mr. Taylor +District Attorney ,28th Judicial District ,P.O. Box 1406,,Jena,LA,71342,318-992-2603,,Reed Walters,P.O. Box 1066,,Jena,LA,71342,5,318-992-8282,W,M,D,215,1/11/2015,1/12/2009,Mr. Walters +District Attorney ,29th Judicial District ,107 Camelia Ct.,,Luling,LA,70070,985-785-0374,,"Harry J. Morel, Jr.",107 Camellia Ct.,,Luling,LA,70070,5,985-785-0374,W,M,D,215,1/11/2015,1/12/2009,Mr. Morel +District Attorney ,30th Judicial District ,P. O. Box 466,,Leesville,LA,71446,337-239-3742,,Asa Skinner,124 Fullerton Dr.,,Leesville,LA,71446,5,337-238-1951,W,M,,215,1/11/2015,1/12/2009,Ms. Skinner +District Attorney ,31st Judicial District ,603 Lucy St.,,Jennings,LA,70546,337-824-0315,,Michael C. Cassidy,603 Lucy St.,,Jennings,LA,70546,5,337-824-0315,W,M,D,215,1/11/2015,1/12/2009,Mr. Cassidy +District Attorney ,32nd Judicial District ,"7856 Main St., Courthouse Annex, Ste. 220",,Houma,LA,70360,985-873-6500,,"""Joe"" Waitz, Jr.",11 Summerfield Dr.,,Houma,LA,70360-7243,10,985-868-0704,W,M,D,215,1/11/2015,1/12/2009,Mr. Waitz +District Attorney ,33rd Judicial District ,1273 Old Pump Rd.,,Kinder,LA,70648,318-738-5561,,H. Todd Nesom,P. O. Box 839,,Oberlin,LA,70655,5,318-639-2641,W,M,D,215,1/11/2015,1/12/2009,Mr. Nesom +District Attorney ,34th Judicial District ,P.O. Box 947,,Chalmette,LA,70044-0947 ,504-271-1658,,"John F. ""Jack"" Rowley",4625 East St. Bernard Hwy.,,Meraux,LA,70075,5,504-271-0111,W,M,D,215,1/11/2015,1/12/2009,Mr. Rowley +District Attorney ,35th Judicial District ,"Courthouse, 200 Main St., Ste. 203",,Colfax,LA,71417,318-627-3205,,"James P. ""Jay"" Lemoine",144 Red Oak Ln.,,Dry Prong,LA,71423,5,318-627-3205,W,M,D,215,1/11/2015,1/12/2009,Mr. Lemoine +District Attorney ,36th Judicial District ,P.O. Box 99,,DeRidder,LA,70634,337-463-5578,,David Burton,1324 Woodbrook Dr.,,DeRidder,LA,70634,5,337-463-4601,W,M,D,215,1/11/2015,1/12/2009,Mr. Burton +District Attorney ,37th Judicial District ,P.O. Box 119,,Columbia,LA,71418,318-649-2508,,W. Mark McKee,4719 Hwy. 559,,Columbia,LA,71418,5,318-649-2005,W,M,D,215,1/11/2015,1/12/2009,Mr. McKee +District Attorney ,38th Judicial District ,P.O. Drawer 280,,Cameron,LA,70631,337-775-5713,,Cecil R. Sanner,190 Raymond Sanner Ln.,,Hackberry,LA,70645,5,337-775-5713,W,M,D,215,1/11/2015,1/12/2009,Mr. Sanner +District Attorney ,39th Judicial District ,P.O. Box 606,,Coushatta,LA,71019,318-932-4035,,Julie C. Jones,P.O. Box 54,,Coushatta,LA,71019,5,318-932-9323,W,F,D,215,1/11/2015,1/12/2009,Ms. Jones +District Attorney ,40th Judicial District ,1916 Madewood Dr.,,LaPlace,LA,70068,985-652-9757,,"Thomas ""Tom"" Daley",2037 Colonial Dr.,,Laplace,LA,70068,5,985-652-8779,,,,215,1/11/2015,1/12/2009,Mr. Daley +District Attorney ,42nd Judicial District Court ,,,,LA,,,,"Richard Z. Johnson, Jr.",373 Ginger St.,,Mansfield,LA,71052,5,318-872-1830,B,M,D,215,1/11/2015,1/1/2009,Mr. Johnson +District Attorney ,Criminal District Court ,2700 Tulane Ave.,,New Orleans,LA,70119,504-827-2414,,"Leon A. Cannizzaro, Jr.",7223 Ring St.,,New Orleans,LA,70124,5,504-282-0175,W,M,D,215,1/11/2015,11/14/2008,Mr. Cannizzaro +City Judge ,"City Court, City of Eunice ",P. O. Box 591,,Eunice,LA,70535,318-457-6535,,Lynette Young Feucht,430 S. Fifth St.,,Eunice,LA,70535,5,337-457-6535,W,F,D,250,12/31/2014,1/1/2009,Judge Feucht +"City Judge, City Court ","Elec. Dist. 1, Div. A, City of Shreveport ",1244 Texas Ave.,,Shreveport,LA,71101,318-673-5870,,R. Lee Irvin,6144 River Rd.,,Shreveport,LA,71105,5,318-673-5870,W,M,R,250,12/31/2014,1/1/2009,Judge Irvin +"City Judge, City Court ","Elec. Dist. 1, Div. B, City of Shreveport ",1244 Texas Ave.,,Shreveport,LA,71101,318-673-5885,,"""Bill"" Kelly",4618 Fern Ave.,,Shreveport,LA,71105-3118,10,318-861-1185,W,M,D,250,12/31/2014,1/1/2009,Judge Kelly +"City Judge, City Court ","Elec. Dist. 2, Div. C, City of Shreveport ",1244 Texas Ave.,,Shreveport,LA,71101,318-673-5890,,Pammela Lattier,107 Waters Edge Dr.,,Shreveport,LA,71106-7775,10,318-798-4045,B,,D,250,12/31/2014,1/1/2009,Judge Lattier +"City Judge, City Court ","Elec. Dist. 2, Div. D, City of Shreveport ",1244 Texas Ave.,,Shreveport,LA,71101,318-673-5878,,Randy E. Collins,3015 Pines Rd.,,Shreveport,LA,71119,5,318-525-1229,B,M,D,250,12/31/2014,1/1/2009,Judge Collins +City Marshal ,"City Court, City of Eunice ",P. O. Box 591,,Eunice,LA,70535-1106,337-457-6580,,Terry J. Darbonne,1250 Phillip Ave.,,Eunice,LA,70535,5,337-305-0353,W,M,D,250,12/31/2014,1/1/2009,Marshal Darbonne +City Marshal ,"City Court, City of Shreveport ",1244 Texas Ave.,,Shreveport,LA,71101,318-673-6800,,Charlie Caldwell,9209 Midvale Dr.,,Shreveport,LA,71118,5,318-560-2347,B,M,D,250,12/31/2014,1/1/2009,Marshal Caldwell +Mayor ,City of Broussard ,416 E. Main,,Broussard,LA,,337-837-6681,,Charles E. Langlinais,612 W. Main St.,,Broussard,LA,70518,5,337-837-5811,W,M,D,300,12/31/2010,1/1/2007,Mayor Langlinais +Mayor ,City of DeRidder ,200 South Jefferson,,DeRidder,LA,,337-462-8900,,"""Ron"" Roberts, ",1916 Dr. Beckom Dr.,,DeRidder,LA,70634-5313,10,337-462-2613,W,M,N,300,,, +Mayor ,City of DeRidder ,200 South Jefferson,,DeRidder,LA,,337-462-8900,,Ron Roberts,1916 Doctor Beckcom Dr.,,DeRidder,LA,70634,5,337-462-2613,W,M,D,300,6/30/2010,7/1/2006,Mayor Roberts +Mayor ,City of Eunice ,P. O. Box 1106,,Eunice,LA,,337-457-6516,,"Robert ""Bob"" Morris",331 W. Maple Ave.,,Eunice,LA,70535,5,337-581-4108,W,M,R,300,12/31/2010,1/1/2007,Mr. Morris +Mayor ,City of Shreveport ,P. O. Box 31109,,Shreveport,LA,,318-673-5262,,Cedric B. Glover,P. O. Box 31109,,Shreveport,LA,71130,5,318-226-5665,,,D,300,11/22/2010,11/28/2006,Mayor Glover +Mayor ,Town of Arnaudville ,P. O. Box 1010,,Arnaudville,LA,,337-754-5911,,"""Kathy"" Richard",P.O. Box 294,,Arnaudville,LA,70512,5,337-754-5137,W,F,D,300,12/31/2010,1/1/2007,Mayor Richard +Mayor ,Town of Basile ,P. O. Box 308,,Basile,LA,,337-432-6693,,Berline B. Sonnier,1205 S. Mildred St.,,Basile,LA,70515,5,337-658-2651,W,F,D,300,12/31/2010,1/1/2007,Mayor Sonnier +Mayor ,Town of Delcambre ,107 N. Railroad,,Delcambre,LA,,337-685-4462,,Carol Broussard,312 E. LeBlanc St.,,Delcambre,LA,70528,5,337-685-2899,W,M,D,300,12/31/2012,1/1/2009,Mayor Broussard +Mayor ,Town of Duson ,P. O. Box 10,,Duson,LA,,337-873-6754,,"Carolyn ""Susie"" Lagneaux",P.O. Box 6,,Duson,LA,70529,5,337-873-0261,W,F,D,300,12/31/2010,10/30/2007,Mayor Lagneaux +Mayor ,Village of Downsville ,P. O. Box 128,,Downsville,LA,,318-982-5344,,Reggie Skains,P.O. Box 98,,Downsville,LA,71234,5,318-982-5341,W,M,D,300,12/31/2010,1/1/2007,Mr. Skains +Mayor ,Village of Junction City ,P. O. Box 142,,Junction City,LA,,318-986-4459,,Preston Rogers,P.O. Box 153,,Junction City,LA,71749,5,318-986-5331,W,M,D,300,12/31/2010,1/1/2007,Mr. Rogers +Chief of Police ,City of Broussard ,416 E. Main,,Broussard,LA,70518,337-837-6681,,Brannon J. Decou,1010 N. Larriviere Rd.,,Youngsville,LA,70592,5,337-839-0318,W,M,R,305,12/31/2010,1/1/2007, +Chief of Police ,City of Eunice ,P. O. Box 1106,,Eunice,LA,70535-1106,337-457-6516,,"Gary ""Goose"" Fontenot",231 Aymond St.,,Eunice,LA,70535,5,337-546-6911,W,M,O,305,12/31/2010,1/1/2007,Chief Fontenot +Chief of Police ,Town of Arnaudville ,P. O. Box 1010,,Arnaudville,LA,70512-1010,337-754-5911,,Richard Mizzi,P.O. Box 391,,Arnaudville,LA,70512,5,337-754-9188,W,M,,305,12/31/2010,1/1/2007,Mr. Mizzi +Chief of Police ,Town of Basile ,P. O. Box 308,,Basile,LA,70515-0308 ,337-432-6693,,"Allen Ivory, Jr.",P.O. Box 619,,Basile,LA,70515,5,337-432-5579,B,M,D,305,12/31/2010,1/1/2007,Mr. Ivory +Chief of Police ,Town of Delcambre ,107 N. Railroad,,Delcambre,LA,70528-3099,337-985-4462,,James Broussard,P. O. Box 192,,Delcambre,LA,70528-0192 ,11,337-685-4652,W,M,D,305,12/31/2012,1/1/2009,Chief Broussard +Chief of Police ,Town of Duson ,P. O. Box 10,,Duson,LA,70529-0010 ,337-873-6754,,"Frank Andrew, III",P.O. Box 10,,Duson,LA,70529,5,,,,,305,,6/15/2009,Chief Andrews +Chief of Police ,Village of Downsville ,P. O. Box 128,,Downsville,LA,71234,318-982-5344,,Earl Roberts,889 Arthur McDaniel Rd.,,Downsville,LA,71234,5,318-982-5838,W,M,D,305,12/31/2010,1/1/2007,Mr. Roberts +Chief of Police ,Village of Junction City ,P. O. Box 142,,Junction City,LA,71749,318-986-4459,,Clarence McLelland,P.O. Box 673,,Junction City,LA,71749,5,318-986-5586,W,M,D,305,12/31/2010,1/1/2007,Mr. McLelland +Alderman at Large ,City of Eunice ,P. O. Box 1106,,Eunice,LA,70535-1106,337-457-6516,,"I. Jackson ""Jack"" Burson, Jr.",P.O. Box 985,,1unice,LA,70535,5,337-457-1227,W,M,D,308,12/31/2010,1/1/2007,Mr. Burson +Alderman at Large ,Town of Basile ,P. O. Box 308,,Basile,LA,70515-0308 ,337-432-6693,,"""Ronnie"" Denette",P.O. Box 294,,Basile,LA,70515,5,337-432-5403,W,M,,308,12/31/2010,1/1/2007,Mr. Denette +Councilman at Large ,City of Broussard ,416 E. Main,,Broussard,LA,70518,,,Johnnie M. Foco,405 E. Fairfield Rd.,,Broussard,LA,70518,5,337-837-6342,W,M,R,308,12/31/2010,1/1/2007, +Councilman at Large ,City of DeRidder ,200 South Jefferson,,DeRidder,LA,70634,337-462-2461,,Vincent Labue,P.O. Box 125,,DeRidder,LA,70634,5,337-463-6800,W,M,D,308,6/30/2010,7/1/2006,Mr. Labue +Councilman at Large ,City of DeRidder ,200 South Jefferson,,DeRidder,LA,70634,337-462-2461,,Hayward Steele,202 S. Helen St.,,DeRidder,LA,70634,5,337-463-4655,B,M,D,308,6/30/2010,7/1/2006,Mr. Steele +Alderman ,"District 1, Town of Basile ",P. O. Box 308,,Basile,LA,70515-0308 ,337-432-6693,,Rodney J. Bellon,1637 Duplechin St.,,Basile,LA,70515,5,337-432-6878,W,M,D,310,12/31/2010,1/1/2007,Mr. Bellon: +Alderman ,"District 1, Town of Delcambre ",107 N. Railroad,,Delcambre,LA,70528-3099,337-685-4462,,"Scott Peter Saunier, ",512 N. Railroad St.,,Delcambre,LA,70528,5,337-685-2485,W,M,,310,12/31/2012,1/1/2009,Mr. Saunier +Alderman ,"District 2, Town of Basile ",P. O. Box 308,,Basile,LA,70515-0308 ,337-432-6693,,Mona Fontenot Jenkins,P.O. Box 819,,Basile,LA,70515,5,337-789-7525,W,F,,310,12/31/2010,1/1/2007,Ms. Jenkins +Alderman ,"District 2, Town of Delcambre ",107 N. Railroad,,Delcambre,LA,70528-3099,337-685-4462,,Sarah Ann Trahan,709 Francois St.,,Delcambre,LA,70528,5,337-685-1021,B,F,D,310,12/31/2012,1/1/2009,Ms. Trahan +Alderman ,"District 3, Town of Basile ",P. O. Box 308,,Basile,LA,70515-0308 ,337-432-6693,,Jessica Denette,P.O. Box 294,,Basile,LA,70515,5,337-432-5403,W,F,R,310,12/31/2010,1/1/2007,Ms. Denette +Alderman ,"District 3, Town of Delcambre ",107 N. Railroad,,Delcambre,LA,70528-3099,337-685-4462,,"Timothy ""Slim"" Derise",115 S. St. Peter St.,,Delcambre,LA,70528,5,337-577-2690,W,M,D,310,12/31/2012,1/1/2009,Mr. Derise +Alderman ,"District 4, Town of Basile ",P. O. Box 308,,Basile,LA,70515-0308 ,337-432-6693,,"Frank Ceasar, Sr.",P.O. Box 601,,Basile,LA,70515,5,337-432-5507,B,M,D,310,12/31/2010,1/1/2007,Mr. Ceasar +Alderman ,"District 4, Town of Delcambre ",107 N. Railroad,,Delcambre,LA,70528-3099,337-685-4462,,"Donald ""Phonse"" Martin",217 S. Pelloat St.,,Delcambre,LA,70528,5,337-685-2790,,,D,310,12/31/2012,1/1/2009,Mr. Martin +Alderman ,"District 5, Town of Delcambre ",107 N. Railroad,,Delcambre,LA,70528-3099,337-685-4462,,Mildred D. Delcambre,308 S. President St.,,Delcambre,LA,70528,5,337-685-2247,W,F,D,310,12/31/2012,1/1/2009,Ms. Delcambre +Alderman ,Town of Arnaudville ,P. O. Box 1010,,Arnaudville,LA,70512-1010,337-754-5911,,"Chester ""Doc"" Broussard",478 Market St.,,Arnaudville,LA,70512,5,,W,M,R,310,12/31/2010,1/1/2007,Mr. Broussard +Alderman ,Town of Arnaudville ,P. O. Box 1010,,Arnaudville,LA,70512-1010,337-754-5911,,Annette K. Guidry,226 E. Pound St.,,Arnaudville,LA,70512,5,337-207-2030,W,F,D,310,12/31/2010,1/1/2007,Mr. Guidry +Alderman ,Town of Arnaudville ,P. O. Box 1010,,Arnaudville,LA,70512-1010,337-754-5911,,Ricky J. Lagrange,P.O. Box 617,,Arnaudville,LA,70512,5,337-754-7190,W,M,D,310,12/31/2010,1/1/2007,Mr. Lagrange +Alderman ,Town of Arnaudville ,P. O. Box 1010,,Arnaudville,LA,70512-1010,337-754-5911,,Todd Meche,236 St. Landry Ave.,,Arnaudville,LA,70512,5,337-754-5078,W,M,R,310,12/31/2010,1/1/2007,Mr. Meche +Alderman ,Town of Arnaudville ,P. O. Box 1010,,Arnaudville,LA,70512-1010,337-754-5911,,"Louis E. Stelly, Jr.",P.O. Box 268,,Arnaudville,LA,70512,5,337-754-5936,W,M,D,310,12/31/2010,1/1/2007,Mr. Stelly +Alderman ,Town of Duson ,P. O. Box 10,,Duson,LA,70529-0010 ,337-873-6754,,Gerald Alleman,P.O. Box 581,,Duson,LA,70529,5,337-873-8810,W,M,D,310,12/31/2010,1/1/2007,Mr. Alleman +Alderman ,Town of Duson ,P. O. Box 10,,Duson,LA,70529-0010 ,337-873-6754,,Dwayne Bowers,P.O. Box 987,,Duson,LA,70529,5,337-873-3848,W,M,D,310,12/31/2010,1/1/2007,Mr. Bowers +Alderman ,Town of Duson ,P. O. Box 10,,Duson,LA,70529-0010 ,337-873-6754,,Eugene Cahanin,P.O. Box 67,,Duson,LA,70529,5,337-873-8487,W,M,D,310,12/31/2010,1/1/2007,Mr. Cahanin +Alderman ,Town of Duson ,P. O. Box 10,,Duson,LA,70529-0010 ,337-873-6754,,"""Jimmy"" Champagne",P.O. Box 551,,Duson,LA,70529,5,337-873-8486,W,M,D,310,12/31/2010,1/1/2007,Mr. Champagne +Alderman ,Town of Duson ,P. O. Box 10,,Duson,LA,70529-0010 ,337-873-6754,,Alvin Felix,P.O. Box 576,,Duson,LA,70529,5,337-873-8604,B,M,D,310,12/31/2010,1/1/2007,Mr.Felix +Alderman ,Village of Downsville ,P. O. Box 128,,Downsville,LA,71234,318-982-5344,,Sheree Allen,P.O. Box 65,,Downsville,LA,71234,5,318-982-5900,W,F,R,310,12/31/2010,1/1/2007,Ms. Allen +Alderman ,Village of Downsville ,P. O. Box 128,,Downsville,LA,71234,318-982-5344,,Myron Toft,P.O. Box 127,,Donaldsonville,LA,71234,5,318-982-7547,W,M,D,310,12/31/2010,1/1/2007,Mr. Toft +Alderman ,Village of Downsville ,P. O. Box 128,,Downsville,LA,71234,318-982-5344,,John Edward Wallace,P.O. Box 161,,Downsville,LA,71234,5,318-982-7257,W,M,D,310,12/31/2010,1/1/2007,Mr. Wallace +Alderman ,Village of Junction City ,P. O. Box 142,,Junction City,LA,71749,318-986-4459,,"""Ronnie"" Daniels",P.O. Box 294,,Junction City,LA,71749,5,318-986-5607,W,M,D,310,12/31/2010,1/1/2007,Mr. Daniels +Alderman ,Village of Junction City ,P. O. Box 142,,Junction City,LA,71749,318-986-4459,,Terry Enis,P.O. Box 41,,Junction City,LA,71749,5,318-986-4982,W,M,D,310,12/31/2010,1/1/2007,Mr. Enis +Alderman ,Village of Junction City ,P. O. Box 142,,Junction City,LA,71749,318-986-4459,,Arnold Jones,P.O. Box 41,,Junction City,LA,71749,5,318-986-5177,W,M,D,310,12/31/2010,1/1/2007,Mr. Jones +Alderman ,"Ward 1, City of Eunice ",P. O. Box 1106,,Eunice,LA,70535-1106,337-457-6516,,"Wallace ""Bubba"" Bourque",1345 E. Laurel Ave.,,Eunice,LA,70535,5,337-384-6367,W,M,R,310,12/31/2010,1/1/2007,Mr. Bourque +Alderman ,"Ward 2, City of Eunice ",P. O. Box 1106,,Eunice,LA,70535-1106,337-457-6516,,Germaine Simpson,P. O. Box 784,,Eunice,LA,70535,5,337-580-5635,B,F,D,310,12/31/2010,10/27/2009,Mr. Simpson +Alderman ,"Ward 3, City of Eunice ",P. O. Box 1106,,Eunice,LA,70535-1106,337-457-6516,,Chawana V. Fontenot,P.O. Box 1162,,Eunice,LA,70535,5,337-457-8260,W,F,R,310,12/31/2010,1/1/2007,Mr. Fontenot +Alderman ,"Ward 4, City of Eunice ",P. O. Box 1106,,Eunice,LA,70535-1106,337-457-6516,,"""Dale"" Soileau",441 S. Sixth St.,,Eunice,LA,70535,5,337-457-7727,W,M,D,310,12/31/2010,1/1/2007,Mr. Soileau +Councilman ,"District A, City of Shreveport ",P. O. Box 31109,,Shreveport,LA,71130-1109,318-673-5262,,"Calvin ""Ben"" Lester, Jr.",3907 Eddy Pl.,,Shreveport,LA,71107,5,318-675-0331,B,M,D,310,11/22/2010,11/28/2006,Mr. Lester +Councilman ,"District B, City of Shreveport ",P. O. Box 31109,,Shreveport,LA,71130-1109,318-673-5262,,"""Monty"" Walford",960 McCormick St.,,Shreveport,LA,71104-4820,10,318-868-6281,W,M,D,310,11/22/2010,11/28/2006,Mr. Walford +Councilman ,"District C, City of Shreveport ",P. O. Box 31109,,Shreveport,LA,71130-1109,318-673-5262,,Michael Long,236 Preston Ave.,,Shreveport,LA,71105-3306,10,318-208-3400,W,M,R,310,11/22/2010,11/28/2006,Mr. Long +Councilman ,"District D, City of Shreveport ",P. O. Box 31109,,Shreveport,LA,71130-1109,318-673-5262,,Bryan Wooley,9114 Campfire Ln.,,Shreveport,LA,71115,5,318-780-8838,W,M,R,310,11/22/2010,11/28/2006,Mr. Wooley +Councilman ,"District E, City of Shreveport ",P. O. Box 31109,,Shreveport,LA,71130-1109,318-673-5262,,"""Ron"" Webb",2406 Helmsdale Ct.,,Shreveport,LA,71118-4546,10,318-564-8080,W,M,R,310,11/22/2010,11/28/2006,Mr. Webb +Councilman ,"District F, City of Shreveport ",P. O. Box 31109,,Shreveport,LA,71130-1109,318-673-5262,,Joe Shyne,4532 Alton St.,,Shreveport,LA,71109-6808,10,318-636-2617,B,M,D,310,11/22/2010,11/28/2006,Mr. Shyne +Councilman ,"District G, City of Shreveport ",P. O. Box 31109,,Shreveport,LA,71130-1109,318-673-5262,,Joyce Bowman,3623 Milton St.,,Shreveport,LA,71109-3327,10,318-635-6379,B,F,D,310,11/22/2010,11/28/2006,Ms. Bowman +Councilman ,"District 1, City of Broussard ",416 E. Main,,Broussard,LA,70518,337-837-6681,,Terry J. Guilbeau,110 Bismark Dr.,,Broussard,LA,70518,5,337-839-1904,W,M,D,310,12/31/2010,1/1/2007, +Councilman ,"District 1, City of DeRidder ",200 South Jefferson,,DeRidder,LA,70634,337-462-2461,,"Robert ""Bo"" Rice",326 Branch St.,,DeRidder,LA,70634,5,337-462-0316,B,M,D,310,6/30/2010,7/1/2006,Mr. Rice +Councilman ,"District 1, City of DeRidder ",200 South Jefferson,,DeRidder,LA,70634,337-462-2461,,"Robert ""Bo"" Rice, ",326 Branch St.,,DeRidder,LA,70634-4102,10,337-462-0316,B,M,D,310,,, +Councilman ,"District 2, City of Broussard ",416 E. Main,,Broussard,LA,70518,337-837-6681,,David M. Bonin,300 S. St. Pierre St.,,Broussard,LA,70518,5,337-207-8871,W,M,R,310,12/31/2010,1/1/2007, +Councilman ,"District 2, City of DeRidder ",200 South Jefferson,,DeRidder,LA,70634,337-462-2461,,Jonnie F. Mango,405 Elton Mango Dr.,,DeRidder,LA,70634,5,337-463-4667,B,F,D,310,6/30/2010,7/1/2006,Ms. Mango +Councilman ,"District 3, City of Broussard ",416 E. Main,,Broussard,LA,70518,337-837-6681,,Keith G. Rousseau,301 Rue De Canne,,Broussard,LA,70518,5,337-837-1367,W,M,R,310,12/31/2010,1/1/2007, +Councilman ,"District 3, City of DeRidder ",200 South Jefferson,,DeRidder,LA,70634,337-462-2461,,Gordon Jenkins,817 Chinquapin,,DeRidder,LA,70634,5,337-463-9977,W,M,,310,6/30/2010,7/1/2006,Mr. Jenkins +Councilman ,"District 3, City of DeRidder ",200 South Jefferson,,DeRidder,LA,70634,337-462-2461,,"Gordon C. Jenkins, ",817 Chinquapin Dr.,,DeRidder,LA,70634-5322,10,337-463-9977,W,M,N,310,,, +Councilman ,"District 4, City of Broussard ",416 E. Main,,Broussard,LA,70518,337-837-6681,,Gertrude Batiste,216 Gustave St.,,Broussard,LA,70518,5,337-837-3349,B,F,D,310,12/31/2010,1/1/2007, +Councilman ,"District 4, City of DeRidder ",200 South Jefferson,,DeRidder,LA,70634,337-462-2461,,Elizabeth S. Granger,710 N. Frusha Dr.,,DeRidder,LA,70634,5,337-460-9161,W,F,,310,6/30/2010,4/14/2009,Ms. Granger +Councilman ,"District 4, City of DeRidder ",200 South Jefferson,,DeRidder,LA,70634,337-462-2461,,"Elizabeth Storer Granger, ",710 N. Frusha Dr.,,DeRidder,LA,70634-3222,10,337-460-9161,W,F,N,310,,, +Councilman ,"District 5, City of Broussard ",416 E. Main,,Broussard,LA,70518,337-837-6681,,Kenny Higginbotham,120 Beau Clos Ln.,,Broussard,LA,70518,5,337-837-1723,W,M,R,310,12/31/2010,1/1/2007,Mr. Higginbotham +Councilman ,"District 5, City of DeRidder ",200 South Jefferson,,DeRidder,LA,70634,337-462-2461,,Joseph Siciliano,1100 Christina Dr.,,DeRidder,LA,70634,5,337-462-6965,W,M,R,310,6/30/2010,6/4/2007,Mr. Siciliano +Councilman ,"District 5, City of DeRidder ",200 South Jefferson,,DeRidder,LA,70634,337-462-2461,,"Joseph ""Joe"" Siciliano, ",1100 Christina Dr.,,DeRidder,LA,70634-2940,10,337-462-6965,W,M,R,310,,, +Councilman ,"District 6, City of Broussard ",416 E. Main,,Broussard,LA,70518,337-837-6681,,"Albert ""Nookie"" Romero",206 W. Railroad,,Broussard,LA,70518,5,337-837-2577,W,M,D,310,12/31/2010,1/1/2007,Mr. Romero +DPEC Member ,at Large ,,,,LA,,,ACADIA,"""Billie"" Fulkerson",324 W Northern Ave.,,Crowley,LA,70526,5,337-783-6450,W,F,D,54,2/20/2012,2/20/2008,Mr. Fulkerson +DPEC Member ,at Large ,,,,LA,,,ACADIA,Jerrl L. Thompson,262 Thompson Rd.,,Crowley,LA,70526,5,337-783-6434,W,M,D,54,2/20/2012,2/20/2008,Mr. Thompson +DPEC Member ,District 1 ,,,,LA,,,ACADIA,,,,,,,0,,,,,56,,, +DPEC Member ,District 2 ,,,,LA,,,ACADIA,,,,,,,0,,,,,56,,, +DPEC Member ,District 3 ,,,,LA,,,ACADIA,,,,,,,0,,,,,56,,, +DPEC Member ,District 4 ,,,,LA,,,ACADIA,,,,,,,0,,,,,56,,, +DPEC Member ,District 5 ,,,,LA,,,ACADIA,,,,,,,0,,,,,56,,, +DPEC Member ,District 6 ,,,,LA,,,ACADIA,,,,,,,0,,,,,56,,, +DPEC Member ,District 7 ,,,,LA,,,ACADIA,,,,,,,0,,,,,56,,, +DPEC Member ,District 8 ,,,,LA,,,ACADIA,,,,,,,0,,,,,56,,, +RPEC Member ,at Large ,,,,LA,,,ACADIA,Nick Bouterie,110 st. Peter St.,,Iota,LA,70543,5,337-280-7984,,,,64,,5/5/2008,Mr. Bouterie +RPEC Member ,at Large ,,,,LA,,,ACADIA,Jud Gautreaux,P.O. Box 1192,,Rayne,LA,70578,5,337-334-2964,,,,64,,5/5/2008,Mr. Gautreaux +RPEC Member ,at Large ,,,,LA,,,ACADIA,Nancy E. Tislow,1117 Crawford Ave.,,Crowley,LA,70526,5,337-783-3129,W,F,R,64,2/20/2012,2/20/2008,Ms. Tislow +RPEC Member ,District 1 ,,,,LA,,,ACADIA,Ira Thomas,1203 Hockaday St.,,Crowley,LA,70526,5,337-783-6824,,,,66,,5/5/2008,Mr. Thomas +RPEC Member ,District 2 ,,,,LA,,,ACADIA,Debbie Dore,199 Forest Dr.,,Crowley,LA,70526,5,337-783-1624,,,,66,,5/5/2008,Ms. Dore +RPEC Member ,District 3 ,,,,LA,,,ACADIA,"""Phil"" Myers",P. O. Box 294,,Estherwood,LA,70534,5,337-785-0750,W,M,R,66,2/20/2012,2/20/2008,Mr. Myers +RPEC Member ,District 4 ,,,,LA,,,ACADIA,Jeff Meche,302 Junot Rd.,,Rayne,LA,70578,5,337-501-5122,,,,66,,6/6/2008,Mr. Meche +RPEC Member ,District 5 ,,,,LA,,,ACADIA,Helen Blue Garrett,310 S. Arenas St.,,Rayne,LA,70578,5,337-393-2166,W,F,R,66,2/20/2012,2/20/2008,Ms. Garrett +RPEC Member ,District 6 ,,,,LA,,,ACADIA,Frank Bargeron,504 Deer Park Dr.,,Rayne,LA,70578,5,337-581-5321,,,,66,,6/6/2008,Mr. Bargeron +RPEC Member ,District 7 ,,,,LA,,,ACADIA,"""Mac"" Atteberry",1265 Atteberry Rd.,,Eunice,LA,70535,5,337-546-6270,W,M,R,66,2/20/2012,2/20/2008,Mr. Atteberry +RPEC Member ,District 8 ,,,,LA,,,ACADIA,Larry G. Miller,886 McMillan Ave.,,Iota,LA,70543,5,337-779-2456,W,M,R,66,2/20/2012,2/20/2008,Mr. Miller +Sheriff ,,P. O. Box 289,,Crowley,LA,70527,337-788-8700,ACADIA,Wayne A. Melancon,P.O. Box 289,,Crowley,LA,70527,5,337-783-8198,W,M,D,225,6/30/2012,7/1/2008,Sheriff Melancon +Clerk of Court ,,P. O. Box 922,,Crowley,LA,70527,337-788-8881,ACADIA,"Robert T. ""Robby"" Barousse",P.O. Box 922,,Crowley,LA,70527,5,337-783-0191,W,M,D,230,6/30/2012,7/1/2008,Mr. Barousse +Assessor ,,P. O. Box 1329,,Crowley,LA,70527-1329,337-788-8871,ACADIA,Russel L. Benoit,2000 E. Jefferson Davis,,Rayne,LA,70578,5,337-334-4958,W,M,D,235,12/31/2012,1/1/2009,Mr. Benoit +Coroner ,,717 Curtis Dr.,,Rayne,LA,70578,337-334-7551,ACADIA,Mark Dawson,717 Curtis Dr.,,Rayne,LA,70578,5,337-334-7551,W,M,R,240,3/25/2012,3/24/2008,Mr. Dawson +Police Juror,District 1,P.O. Box A,,Crowley,LA,70527-6001,337-788-8800,ACADIA,"Alton ""Al"" Stevenson",P.O. Box 2366,,Crowley,LA,70527,5,337-783-6215,B,M,D,245,1/8/2012,1/14/2008,Mr. Stevenson +Police Juror ,District 2 ,P.O. Box A,,Crowley,LA,70527-6001,337-788-8800,ACADIA,"A.J. ""Fatty"" Broussard",526 Atwood Dr.,,Crowley,LA,70526,5,337-783-1607,W,M,R,245,1/8/2012,1/14/2008,Mr. Broussard +Police Juror ,District 3 ,P.O. Box A,,Crowley,LA,70527-6001,337-788-8800,ACADIA,Kermit Richard,P.O. Box 363,,Morse,LA,70559,5,337-329-2091,W,M,D,245,1/8/2012,1/14/2008,Mr. Richard +Police Juror ,District 4 ,P.O. Box A,,Crowley,LA,70527-6001,337-788-8800,ACADIA,John H. Quebodeaux,178 Cedar Park Ln.,,Rayne,LA,70578,5,337-334-1638,W,M,D,245,1/8/2012,1/14/2008,Mr. Quebodeaux +Police Juror ,District 5 ,P.O. Box A,,Crowley,LA,70527-6001,337-788-8800,ACADIA,"Thomas ""T. J."" Sonnier",607 W. Lesley St.,,Rayne,LA,70578,5,337-334-4749,B,M,D,245,1/8/2012,1/14/2008,Mr. Sonnier +Police Juror ,District 6 ,P.O. Box A,,Crowley,LA,70527-6001,337-788-8800,ACADIA,"A. J. ""Jay"" Credeur",8520 Grand Prairie Hwy.,,Church Point,LA,70525,5,337-873-6339,W,M,D,245,1/8/2012,1/14/2008,Mr. Credeur +Police Juror ,District 7 ,P.O. Box A,,Crowley,LA,70527-6001,337-788-8800,ACADIA,Cade Benoit,240 St. Rita Ln.,,Church Point,LA,70525,5,337-684-6239,W,M,D,245,1/8/2012,1/14/2008,Mr. Benoit +Police Juror ,District 8 ,P.O. Box A,,Crowley,LA,70527-6001,337-788-8800,ACADIA,"Felton ""Tony"" Moreau",7870 Eunice-Iota Hwy.,,Eunice,LA,70535,5,337-580-1953,W,M,D,245,1/8/2012,1/14/2008,Mr. Moreau +City Judge ,"City Court, City of Crowley ",P. O. Box 225,,Crowley,LA,70526,337-788-4118,ACADIA,"Marie Elise ""M'elise"" Trahan",1718 N. Ave. D,,Crowley,LA,70526,5,337-788-2435,W,F,D,250,12/31/2014,1/1/2009,Judge Trahan +City Judge ,"City Court, City of Rayne ",P. O. Box 31,,Rayne,LA,70578,337-334-9677,ACADIA,"James M. ""Jim"" Cunningham, III",402 N. Parkerson St.,,Rayne,LA,70578,5,337-334-5156,W,M,D,250,12/31/2014,1/1/2009,Judge Cunningham +City Marshal ,"City Court, City of Crowley ",P. O. Box 225,,Crowley,LA,70526,337-788-4120,ACADIA,Glenn J. Deville,312 Stewartville Rd.,,Crowley,LA,70526,5,337-783-9122,W,M,D,250,12/31/2014,1/1/2009,Marshal Deville +City Marshal ,"City Court, City of Rayne ",P. O. Box 31,,Rayne,LA,70578,337-334-9677,ACADIA,"Alex ""Joe"" Lacroix",122 W. Thayer,,Rayne,LA,70578,5,337-334-5566,W,M,D,250,12/31/2014,1/1/2009,Marshal Lacroix +Member of School Board ,District 1 ,P. O. Drawer 309,,Crowley,LA,70527-0309 ,337-783-3664,ACADIA,Israel Syria,820 N. Ave. B,,Crowley,LA,70526,5,337-783-6483,B,M,D,255,12/31/2010,1/1/2007,Mr. Syria +Member of School Board ,District 2 ,P. O. Drawer 309,,Crowley,LA,70527-0309 ,337-783-3664,ACADIA,"Douglas J. ""Doug"" LaCombe",P.O. Box 184,,Egan,LA,70531,5,337-788-2432,W,M,O,255,12/31/2010,1/9/2007,Mr. LaCombe +Member of School Board ,District 3 ,P. O. Drawer 309,,Crowley,LA,70527-0309 ,337-783-3664,ACADIA,Abraham Lynn Shamsie,P.O. Box 56,,Estherwood,LA,70534,5,337-783-2702,W,M,D,255,12/31/2010,1/1/2007,Mr. Shamsie +Member of School Board ,District 4 ,P. O. Drawer 309,,Crowley,LA,70527-0309 ,337-783-3664,ACADIA,John A. Suire,1370 Leger Rd.,,Crowley,LA,70526,5,337-783-4082,W,M,R,255,12/31/2010,1/1/2007,Mr. Suire +Member of School Board ,District 5 ,P. O. Drawer 309,,Crowley,LA,70527-0309 ,337-783-3664,ACADIA,Roland J. Boudreaux,701 East E St.,,Rayne,LA,70578,5,337-334-2466,W,M,D,255,12/31/2010,1/1/2007,Mr. Boudreaux +Member of School Board ,District 6 ,P. O. Drawer 309,,Crowley,LA,70527-0309 ,337-783-3664,ACADIA,Gene I. Daigle,511 S. David St.,,Church Point,LA,70525,5,337-684-5284,W,M,D,255,12/31/2010,1/1/2007,Mr. Daigle +Member of School Board ,District 7 ,P. O. Drawer 309,,Crowley,LA,70527-0309 ,337-783-3664,ACADIA,"James ""Bozo"" Higginbotham",210 St. Edna,,Church Point,LA,70525,5,337-684-6897,W,M,D,255,12/31/2010,1/1/2007,Mr. Higginbotham +Member of School Board ,District 8 ,P. O. Drawer 309,,Crowley,LA,70527-0309 ,337-783-3664,ACADIA,Milton Simar,P.O. Box 578,,Iota,LA,70543,5,337-779-2289,W,M,D,255,12/31/2010,1/1/2007,Mr. Simar +Justice of the Peace ,Justice of the Peace Ward 2 ,122 O'Neal Ln.,,Branch,LA,70516,337-334-4584,ACADIA,Wayne Doucet,122 Oneal Ln.,,Branch,LA,70516,5,337-334-4584,W,M,D,265,12/31/2014,1/1/2009,Mr. Doucet +Justice of the Peace ,Justice of the Peace Ward 3 ,666 N. Beaugh St.,,Church Point,LA,70525,337-684-2331,ACADIA,"Elton ""Bee"" Cormier",666 N. Beaugh St.,,Church Point,LA,70525,5,337-684-2331,W,M,D,265,12/31/2014,1/1/2009,Mr. Cormier +Justice of the Peace ,Justice of the Peace Ward 4 ,1114 Shultz Rd.,,Iota,LA,70543,337-779-2571,ACADIA,Elridge Pousson,1114 Schultz Rd.,,Iota,LA,70543,5,337-779-2571,W,M,D,265,12/31/2014,1/1/2009,Mr. Pousson +Justice of the Peace ,Justice of the Peace Ward 5 ,P.O. Box 52,,Morse,LA,70559,337-788-0934,ACADIA,Michael Chiasson,P.O. Box 52,,Morse,LA,70559,5,337-788-0934,W,M,D,265,12/31/2014,1/1/2009,Mr. Chiasson +Justice of the Peace ,Justice of the Peace Ward 7 ,,,,LA,,,ACADIA,Horace Darbonne,139 Miguel Rd.,,Basile,LA,70515,5,337-432-6804,W,M,D,265,12/31/2014,1/1/2009,Mr. Darbonne +Constable ,Justice of the Peace Ward 2 ,P.O. Box 432,,Branch,LA,70516,337-334-5004,ACADIA,"James ""June"" Meche",P.O. Box 432,,Branch,LA,70516,5,337-334-5004,W,M,D,267,12/31/2014,1/1/2009,Mr. Meche +Constable ,Justice of the Peace Ward 3 ,544 Brasseaux St.,,Church Point,LA,70525,337-684-2818,ACADIA,Ferdie Miller,544 Brasseaux,,Church Point,LA,70525,5,337-684-2818,W,M,D,267,12/31/2014,1/1/2009,Mr. Miller +Constable ,Justice of the Peace Ward 4 ,P.O. Box 146,,Iota,LA,70543,337-779-2441,ACADIA,Paul Doucet,P.O. Box 146,,Iota,LA,70543,5,337-779-2441,W,M,D,267,12/31/2014,1/1/2009,Mr. Doucet +Constable ,Justice of the Peace Ward 5 ,P.O. Box 118,,Esterwood,LA,70534,337-788-2207,ACADIA,Treg Myers,P.O. Box 118,,Estherwood,LA,70534,5,337-788-2207,W,M,D,267,12/31/2014,1/1/2009,Mr. Myers +Constable ,Justice of the Peace Ward 7 ,1729 Hundley Rd.,,Eunice,LA,70535,337-457-3243,ACADIA,Suzellen Stroderd Lopez,2524 Alfa Romeo Rd.,,Basile,LA,70515,5,337-432-5480,W,F,O,267,12/31/2014,1/1/2009,Ms. Lopez +Mayor ,City of Crowley ,P. O. Box 1463,,Crowley,LA,,337-783-0824,ACADIA,"""Greg"" Jones",12 Governor Edwards Dr.,,Crowley,LA,70526,5,337-783-8972,W,M,R,300,12/31/2010,1/1/2007,Mayor Jones +Mayor ,City of Rayne ,P. O. Box 69,,Rayne,LA,,337-334-3121,ACADIA,"James J. ""Jimbo"" Petitjean",P.O. Box 694,,Rayne,LA,70578,5,337-334-9554,W,M,D,300,12/31/2010,1/1/2007,Mayor Petitjean +Mayor ,Town of Church Point ,102 Church Blvd.,,Church Point,LA,,337-684-5692,ACADIA,Roger Boudreaux,646 N. Beaugh St.,,Church Point,LA,70526,5,337-684-6334,W,M,D,300,12/31/2010,1/1/2007,Mr. Boudreaux +Mayor ,Town of Iota ,P. O. Drawer 890,,Iota,LA,,337-779-2597,ACADIA,John D. Sittig,P.O. Box 72,,Iota,LA,70543,5,337-779-2234,W,M,D,300,12/31/2010,1/1/2007,Mr. Sittig +Mayor ,Village of Estherwood ,P. O. Box 167,,Estherwood,LA,,337-783-0464,ACADIA,"""Bill"" Maples",P.O. Box 310,,Estherwood,LA,70534,5,337-783-0330,W,M,R,300,12/31/2010,1/1/2007,Mr. Maples +Mayor ,Village of Mermentau ,P. O. Box 280,,Mermentau,LA,,337-824-8466,ACADIA,David W. Fruge,P.O. Box 119,,Mermentau,LA,70556,5,337-824-0629,W,M,D,300,12/31/2010,1/1/2007,Mr. Fruge +Mayor ,Village of Morse ,P. O. Box 750,,Morse,LA,,337-783-7555,ACADIA,"Robert ""Butch"" Istre",P.O. Box 97,,Morse,LA,70559,5,337-783-6273,W,M,D,300,12/31/2010,10/30/2007,Mayor Istre +Chief of Police ,City of Crowley ,P. O. Box 1463,,Crowley,LA,70527-1463,337-783-0824,ACADIA,K. P. Gibson,106 Clark Ct.,,Crowley,LA,70526,5,337-788-1888,W,M,D,305,12/31/2010,1/1/2007,Mr. Gibson +Chief of Police ,City of Rayne ,P. O. Box 69,,Rayne,LA,70578,337-334-3121,ACADIA,Carroll Stelly,308 S. Parkerson,,Rayne,LA,70578,5,337-334-4286,W,M,D,305,12/31/2010,1/1/2007,Mr. Stelly +Chief of Police ,Town of Church Point ,102 Church Blvd.,,Church Point,LA,70525,337-684-5692,ACADIA,"Albert J. Venable, Sr.",334 N. Franques St.,,Church Point,LA,70525,5,337-684-6460,W,M,D,305,12/31/2010,1/1/2007,Chief Venable +Chief of Police ,Town of Iota ,P. O. Drawer 890,,Iota,LA,70543,337-779-2597,ACADIA,David Scott Pousson,P.O. Box 213,,Iota,LA,70543,5,337-779-2393,W,M,D,305,12/31/2010,1/1/2007,Mr. Pousson +Chief of Police ,Village of Estherwood ,P. O. Box 167,,Estherwood,LA,70534-0167 ,337-783-0464,ACADIA,Kevin LeBlanc,P.O. Box 221,,Estherwood,LA,70534,5,337-785-2316,W,M,,305,12/31/2010,1/1/2007,Chief LeBlanc +Chief of Police ,Village of Mermentau ,P. O. Box 280,,Mermentau,LA,70556,337-824-8466,ACADIA,Donald C. Bertrand,P.O. Box 128,,Mermentau,LA,70556,5,337-329-3120,W,M,D,305,12/31/2010,1/1/2007,Mr. Bertrand +Chief of Police ,Village of Morse ,P. O. Box 36,,Morse,LA,70559,337-783-7555,ACADIA,Jason Todd Richard,P.O. Box 191,,Morse,LA,70559,5,337-783-3616,W,M,D,305,12/31/2010,1/1/2007,Mr. Richard +Alderman at Large ,City of Crowley ,P. O. Box 1463,,Crowley,LA,70527-1463,337-783-0824,ACADIA,Steven C. Premeaux,170 West Hoyt,,Crowley,LA,70526,5,337-783-8597,W,M,D,308,12/31/2010,1/1/2007, +Alderman at Large ,City of Rayne ,,,,LA,,,ACADIA,Paul Molbert,705 S. Cunningham,,Rayne,LA,70578,5,337-334-7304,W,M,R,308,12/31/2010,1/1/2007,Mr. Molbert +Alderman ,Town of Iota ,P. O. Drawer 890,,Iota,LA,70543,337-779-2597,ACADIA,"R. B. ""Toby"" Fontenot",P.O. Box 56,,Iota,LA,70543,5,337-779-2665,W,M,D,310,12/31/2010,1/1/2007,Mr. Fontenot +Alderman ,Town of Iota ,P. O. Drawer 890,,Iota,LA,70543,337-779-2597,ACADIA,Troy Lantz,P.O. Box 275,,Iota,LA,70543,5,337-779-2696,W,M,D,310,12/31/2010,1/1/2007,Mr. Lantz +Alderman ,Town of Iota ,P. O. Drawer 890,,Iota,LA,70543,337-779-2597,ACADIA,Cody Leckelt,560 S. Third St.,,Iota,LA,70543,5,337-779-3317,W,M,R,310,12/31/2010,1/1/2007,Mr. Leckelt +Alderman ,Town of Iota ,P. O. Drawer 890,,Iota,LA,70543,337-779-2597,ACADIA,Raleigh Miller,P.O. Box 112,,Iota,LA,70543,5,337-779-2545,W,M,D,310,12/31/2010,1/1/2007,Mr. Miller +Alderman ,Town of Iota ,P. O. Drawer 890,,Iota,LA,70543,337-779-2597,ACADIA,Warren C. Pousson,P.O. Box,,Iota,LA,70543,5,337-779-2868,W,M,D,310,12/31/2010,1/1/2007,Mr. Pousson +Alderman ,Village of Estherwood ,P. O. Box 167,,Estherwood,LA,70534-0167 ,337-783-0464,ACADIA,Anthony Borill,P.O. Box 365,,Estherwood,LA,70534,5,337-788-0865,W,M,D,310,12/31/2010,1/1/2007,Mr. Borill +Alderman ,Village of Estherwood ,P. O. Box 167,,Estherwood,LA,70534-0167 ,337-783-0464,ACADIA,John Monceaux,P.O. Box 265,,Estherwood,LA,70534,5,337-783-8122,W,M,,310,12/31/2010,1/1/2007,Mr. Monceau +Alderman ,Village of Estherwood ,P. O. Box 167,,Estherwood,LA,70534-0167 ,337-783-0464,ACADIA,"""Tim"" Savant",P.O. Box 7,,Estherwood,LA,70534,5,337-783-5333,W,M,D,310,12/31/2010,1/1/2007,Mr. Savant +Alderman ,Village of Mermentau ,P. O. Box 280,,Mermentau,LA,70556,337-824-8466,ACADIA,Troy Cormier,P.O. Box 294,,Mermentau,LA,70556,5,337-824-9327,W,M,D,310,12/31/2010,1/1/2007,Mr. Cormier +Alderman ,Village of Mermentau ,P. O. Box 280,,Mermentau,LA,70556,337-824-8466,ACADIA,"Ernest ""Sheeney"" Gautreaux",P.O. Box 297,,Mermentau,LA,70556,5,337-824-0332,W,M,D,310,12/31/2010,1/1/2007,Mr. Gautreaux +Alderman ,Village of Mermentau ,P. O. Box 280,,Mermentau,LA,70556,337-824-8466,ACADIA,Darla Istre,P.O. Box 1,,Mermentau,LA,70556,5,337-824-4259,W,F,D,310,12/31/2010,1/1/2007,Mr. Istre +Alderman ,Village of Morse ,P. O. Box 36,,Morse,LA,70559,337-783-7555,ACADIA,Randall Bertrand,P.O. Box 169,,Morse,LA,70559,5,337-788-3452,W,M,D,310,12/31/2010,10/30/2007,Mr. Bertrand +Alderman ,Village of Morse ,P. O. Box 36,,Morse,LA,70559,337-783-7555,ACADIA,Wade Clement,P.O. Box 367,,Morse,LA,70559,5,337-783-6957,W,M,R,310,12/31/2010,1/1/2007,Mr. Clements +Alderman ,Village of Morse ,P. O. Box 36,,Morse,LA,70559,337-783-7555,ACADIA,Peggy S. Romero,P.O. Box 313,,Morse,LA,70559,5,337-783-3175,W,F,D,310,12/31/2010,7/21/2008,Ms. Romero +Alderman ,"Ward 1, City of Rayne ",P. O. Box 69,,Rayne,LA,70578,337-334-3121,ACADIA,Ann Domingue Washington,606 Chappuis Ave.,,Rayne,LA,70578,5,337-334-5020,B,F,D,310,12/31/2010,1/1/2007,Ms. Washington +Alderman ,"Ward 1, Division A, City of Crowley ",P. O. Box 1463,,Crowley,LA,70527-1463,337-783-0824,ACADIA,"""Jeff"" Dore",705 W. 14th St.,,Crowley,LA,70526,5,337-783-0173,W,M,D,310,12/31/2010,1/1/2007,Mr. Dore +Alderman ,"Ward 1, Division B, City of Crowley ",P. O. Box 1463,,Crowley,LA,70527-1463,337-783-0824,ACADIA,"Kathleen ""Kitty"" Valdetero",14 Rue Aline,,Crowley,LA,70526,5,337-783-3619,W,F,R,310,12/31/2010,1/1/2007,Ms. Valdetero +Alderman ,"Ward 1, Town of Church Point ",102 Church Blvd.,,Church Point,LA,70525,337-684-5692,ACADIA,Debra Guidry-Thomas,105 Melissa St.,,Church Point,LA,70525,5,337-684-3416,B,F,D,310,12/31/2010,1/1/2007,Ms. Guidry-Thomas +Alderman ,"Ward 2, City of Rayne ",,,,LA,,,ACADIA,"Jude ""Butch"" Abshire",921 Comeaux St.,,Rayne,LA,70578,5,337-334-7861,W,M,D,310,12/31/2010,1/1/2007,Mr. Abshire +Alderman ,"Ward 2, Division A, City of Crowley ",P. O. Box 1463,,Crowley,LA,70527-1463,337-783-0824,ACADIA,Todd W. Whiting,815 E. Third St.,,Crowley,LA,70526,5,337-783-6183,W,M,D,310,12/31/2010,1/1/2007,Mr. Whiting +Alderman ,"Ward 2, Division B, City of Crowley ",P. O. Box 1463,,Crowley,LA,70527-1463,337-783-0824,ACADIA,"Lyle O. Fogleman, Jr.",503 E. Second St.,,Crowley,LA,70526,5,337-788-1111,W,M,D,310,12/31/2010,1/1/2007,Mr. Fogleman +Alderman ,"Ward 2, Town of Church Point ",102 Church Blvd.,,Church Point,LA,70525,337-684-5692,ACADIA,"""Joy"" Daigle",360 Saint Jude St.,,Church Point,LA,70525,5,337-684-6603,W,F,D,310,12/31/2010,2/23/2009,Ms. Daigle +Alderman ,"Ward 3, City of Rayne ",,,,LA,,,ACADIA,"Gerard ""Jerry"" Arceneaux",126 Azalea Dr.,,Rayne,LA,70578,5,337-334-3824,W,M,R,310,12/31/2010,1/1/2007,Mr. Arceneaux +Alderman ,"Ward 3, Division A, City of Crowley ",P. O. Box 1463,,Crowley,LA,70527-1463,337-783-0824,ACADIA,"Vernon ""Step"" Martin",213 N. Ave A,,Crowley,LA,70526,5,337-783-6128,B,M,D,310,12/31/2010,1/1/2007,Mr. Martin +Alderman ,"Ward 3, Division B, City of Crowley ",P. O. Box 1463,,Crowley,LA,70527-1463,337-783-0824,ACADIA,Laurita D. Pete,720 W. Third St.,,Crowley,LA,70526,5,337-783-3422,B,F,D,310,12/31/2010,1/1/2007,Mr. Pete +Alderman ,"Ward 3, Town of Church Point ",102 Church Blvd.,,Church Point,LA,70525,337-684-5692,ACADIA,Gary J. Duplechin,406 W. Harmon St.,,Church Point,LA,70525,5,337-684-6932,W,M,D,310,12/31/2010,1/1/2007,Mr. Duplechin +Alderman ,"Ward 4, City of Rayne ",,,,LA,,,ACADIA,Gerald L. Foreman,813 East F St.,,Rayne,LA,70578,5,337-334-3392,W,M,D,310,12/31/2010,1/1/2007,Mr. Foreman +Alderman ,"Ward 4, Division A, City of Crowley ",P. O. Box 1463,,Crowley,LA,70527-1463,337-783-0824,ACADIA,Elliot Dore,8 Bayou Oaks Dr.,,Crowley,LA,70526,5,337-783-6148,W,M,D,310,12/31/2010,1/1/2007,Mr. Dore +Alderman ,"Ward 4, Division B, City of Crowley ",P. O. Box 1463,,Crowley,LA,70527-1463,337-783-0824,ACADIA,Mary Melancon,528 E. Jeanette St.,,Crowley,LA,70526,5,337-783-3449,W,F,D,310,12/31/2010,1/1/2007,Ms. Melancon +Alderman ,"Ward 4, Town of Church Point ",102 Church Blvd.,,Church Point,LA,70525,337-684-5692,ACADIA,"Aimia ""MiMi"" Doucet",244 S. Guidry,,Church Point,LA,70525,5,337-257-4999,W,F,R,310,12/31/2010,1/1/2007,Mr. Doucet +Alderman ,"Ward 5, Town of Church Point ",102 Church Blvd.,,Church Point,LA,70525,337-684-5692,ACADIA,"Errol ""Slu"" Comeaux",457 W. Keller,,Church Point,LA,70525,5,337-684-6611,W,M,D,310,12/31/2010,1/1/2007,Mr. Comeaux +DPEC Member ,at Large ,,,,LA,,,ALLEN,Schelly Doise,306 Park Rd.,,Kinder,LA,70648,5,337-738-7888,W,M,D,54,2/20/2012,2/20/2008,Ms. Doise +DPEC Member ,District 1 ,,,,LA,,,ALLEN,,,,,,,0,,,,,56,,, +DPEC Member ,District 2 ,,,,LA,,,ALLEN,,,,,,,0,,,,,56,,, +DPEC Member ,District 3 ,,,,LA,,,ALLEN,"Joe G. Abrusley, Jr.",P.O. Box 567,,Oakdale,LA,71463,5,318-335-2305,W,M,D,56,2/20/2012,2/20/2008,Mr. Abrusley +DPEC Member ,District 4 ,,,,LA,,,ALLEN,,,,,,,0,,,,,56,,, +DPEC Member ,District 5 ,,,,LA,,,ALLEN,,,,,,,0,,,,,56,,, +DPEC Member ,District 6 ,,,,LA,,,ALLEN,,,,,,,0,,,,,56,,, +DPEC Member ,District 7 ,,,,LA,,,ALLEN,,,,,,,0,,,,,56,,, +RPEC Member ,at Large ,,,,LA,,,ALLEN,,,,,,,0,,,,,64,,, +RPEC Member ,District 1 ,,,,LA,,,ALLEN,,,,,,,0,,,,,66,,, +RPEC Member ,District 2 ,,,,LA,,,ALLEN,Margaret E. Murry,P.O. Box 665,,Oakdale,LA,71463,5,318-335-1215,W,F,R,66,2/20/2012,2/20/2008,Ms. Murry +RPEC Member ,District 3 ,,,,LA,,,ALLEN,,,,,,,0,,,,,66,,, +RPEC Member ,District 4 ,,,,LA,,,ALLEN,,,,,,,0,,,,,66,,, +RPEC Member ,District 5 ,,,,LA,,,ALLEN,,,,,,,0,,,,,66,,, +RPEC Member ,District 6 ,,,,LA,,,ALLEN,,,,,,,0,,,,,66,,, +RPEC Member ,District 7 ,,,,LA,,,ALLEN,Rodney M. Steed,248 Alex Lormand Rd.,,Kinder,LA,70648,5,337-738-2220,W,M,R,66,2/20/2012,2/20/2008,Mr. Steed +Sheriff ,,P. O. Box 278,,Oberlin,LA,70655,318-639-4353,ALLEN,Harold Brady,P.O. Box 278,,Oberlin,LA,70655,5,318-335-2369,W,M,D,225,6/30/2012,7/1/2008,Sheriff Brady +Clerk of Court ,,P. O. Box 248,,Oberlin,LA,70655,337-639-4351,ALLEN,Gerald Harrington,P.O. Box 248,,Oberlin,LA,70655,5,318-335-3130,W,M,D,230,6/30/2012,7/1/2008,Mr. Harrington +Assessor ,,P. O. Box 218,,Oberlin,LA,70655,318-639-4391,ALLEN,Richard Earl,113 North St.,,Pitkin,LA,70656,5,318-634-7387,W,M,D,235,12/31/2012,1/1/2009,Mr. Earl +Coroner ,,P.O. Box 1140,,Oakdale,LA,71463,318-335-4881,ALLEN,"""Don"" Nesom",104 Mowad Dr.,,Oakdale,LA,71463,5,318-335-3870,W,M,D,240,3/25/2012,3/24/2008,Mr. Nesom +Police Juror ,District 1 ,602 Court Street,,Oberlin,LA,,337-639-4328,ALLEN,Betty Hayes,907 Mill St.,,Oakdale,LA,71463,5,318-335-1325,B,F,D,245,1/8/2012,4/14/2009,Ms. Hayes +Police Juror ,District 2 ,602 Court Street,,Oberlin,LA,70655,337-639-4328,ALLEN,"""Buddy"" Farris",2550 Hwy. 165 S.,,Oakdale,LA,71463,5,318-335-0118,W,M,D,245,1/8/2012,1/14/2008,Mr. Farris +Police Juror ,District 3 ,602 Court Street,,Oberlin,LA,70655,337-639-4328,ALLEN,"John W. Strother, Jr.",P.O. Box 319,,Oakdale,LA,71463,5,318-335-1114,W,M,D,245,1/8/2012,1/14/2008,Mr. Strother +Police Juror ,District 4 ,602 Court Street,,Oberlin,LA,70655,337-639-4328,ALLEN,Roland Hollins,P.O. Box 32,,Mittie,LA,70654,5,337-328-8787,W,M,D,245,1/8/2012,1/14/2008,Mr. Hollins +Police Juror ,District 5 ,602 Court Street,,Oberlin,LA,70655,337-639-4328,ALLEN,"""Doug"" Sonnier",126 Roy Sonnier Rd.,,Oberlin,LA,70655,5,337-639-2817,W,M,,245,1/8/2012,1/14/2008,Mr. Sonnier +Police Juror ,District 6 ,602 Court Street,,Oberlin,LA,70655,337-639-4328,ALLEN,"R. E. ""Sonny"" Weatherford",P.O. Box 628,,Kinder,LA,70648,5,337-738-2905,W,M,D,245,1/8/2012,1/14/2008,Mr. Weatherford +Police Juror ,District 7 ,602 Court Street,,Oberlin,LA,70655,337-639-4328,ALLEN,Kent Fontenot,3800 Walker Rd.,,Reeves,LA,70658-5813,10,337-666-2772,W,M,D,245,1/8/2012,1/14/2008,Mr. Fontenot +City Judge ,"City Court, City of Oakdale ",P. O. Box 565,,Oakdale,LA,71463,318-335-1121,ALLEN,Judi Abrusley,P.O. Drawer 1114,,Oakdale,LA,71463,5,318-335-3492,W,F,D,250,12/31/2014,1/1/2009,Judge Abrusley +City Marshal ,"City Court, City of Oakdale ",P. O. Box 565,,Oakdale,LA,71463,318-335-0518,ALLEN,Chad Doyle,297 Callahan Rd.,,Oakdale,LA,71463,5,318-306-1000,W,M,D,250,12/31/2014,1/1/2009,Marshal Doyle +Member of School Board ,District 1 ,P.O. Drawer C,,Oberlin,LA,70655,337-639-4311,ALLEN,Alma W. Johnson,623 Lewis St.,,Oakdale,LA,71463,5,318-335-2459,B,F,D,255,12/31/2010,1/1/2007,Ms. Johnson +Member of School Board ,District 2 ,P.O. Drawer C,,Oberlin,LA,,337-783-3664,ALLEN,"""Cathy"" Farris",2550 Hwy. 165 S.,,Oakdale,LA,71463,5,318-335-0118,W,F,D,255,12/31/2010,1/1/2007,Ms. Farris +Member of School Board ,District 3 ,P.O. Drawer C,,Oberlin,LA,,337-783-3664,ALLEN,Bobby Odom,506 N. Eighth St.,,Oakdale,LA,71463,5,318-335-3853,W,M,D,255,12/31/2010,1/1/2007,Mr. Odom +Member of School Board ,District 4 ,P.O. Drawer C,,Oberlin,LA,,337-783-3664,ALLEN,Faye Hollins,14993 Hwy. 26.,,Sugartown,LA,70662,5,337-639-2752,W,F,D,255,12/31/2010,1/1/2007,Ms. Hollins +Member of School Board ,District 5 ,P.O. Drawer C,,Oberlin,LA,,337-783-3664,ALLEN,Gregory Monceaux,P.O. Box 661,,Oberlin,LA,70655,5,337-639-2598,W,M,D,255,12/31/2010,1/1/2007,Mr. Monceaux +Member of School Board ,District 6 ,P.O. Drawer C,,Oberlin,LA,,337-783-3664,ALLEN,Carolyn Manuel,132 Vera St.,,Kinder,LA,70648,5,337-738-2166,W,F,D,255,12/31/2010,1/1/2007,Ms. Manuel +Member of School Board ,District 7 ,P.O. Drawer C,,Oberlin,LA,,337-783-3664,ALLEN,Brett Fawcett,P.O. Box 1911,,Kinder,LA,70648,5,337-738-3253,W,M,R,255,12/31/2010,1/1/2007,Mr. Fawcett +Justice of the Peace ,Justice of the Peace Ward 1 ,P.O. Box 304,,Oberlin,LA,70655,337-639-4929,ALLEN,"""Timmy"" Chaumont",P.O. Box 304,,Oberlin,LA,70655,5,337-639-4929,W,M,O,265,12/31/2014,1/1/2009,Mr. Chaumont +Justice of the Peace ,Justice of the Peace Ward 2 ,122 Mayo Ortego Rd.,,Kinder,LA,70648,337-738-6559,ALLEN,"""Ron"" Craiger",P.O. Box 1637,,Kinder,LA,70648,5,337-738-5843,W,M,D,265,12/31/2014,1/1/2009,Mr. Craiger +Justice of the Peace ,Justice of the Peace Ward 3 ,P.O. Box 41,,Reeves,LA,70658,337-666-2427,ALLEN,Billie Faye Felice,P.O. Box 41,,Reeves,LA,70658,5,337-526-2426,W,F,D,265,12/31/2014,1/1/2009,Mr. Felice +Justice of the Peace ,Justice of the Peace Ward 4 ,1299 Palestine Rd.,,Mittie,LA,70654,318-634-5317,ALLEN,Chad Reeves,P.O. Box 5 Briscoe Rd.,,Mittie,LA,70654,5,337-639-4725,W,M,D,265,12/31/2014,1/1/2009,Mr. Reeves +Constable ,Justice of the Peace Ward 1 ,P.O. Box 431,,Oberlin,LA,70655,337-639-2699,ALLEN,John D. Manuel,P.O. Box 431,,Oberlin,LA,70655,5,337-639-9776,W,M,O,267,12/31/2014,1/1/2009,Mr. Manuel +Constable ,Justice of the Peace Ward 2 ,P.O. Box 1074,,Kinder,LA,70648,337-738-7665,ALLEN,Donnie Shuff,388 Ray Shuff Rd.,,Elton,LA,70532,5,337-485-5583,W,M,D,267,12/31/2014,1/1/2009,Mr. Shuff +Constable ,Justice of the Peace Ward 3 ,P.O. Box 59,,Reeves,LA,70658,337-666-2685,ALLEN,Ryland Dunnehoo,P.O. Box 21,,Reeves,LA,70658,5,337-666-2278,W,M,D,267,12/31/2014,1/1/2009,Mr. Dunnehoo +Constable ,Justice of the Peace Ward 4 ,248 Dowies Rd.,,Pitkin,LA,70656,337-634-7895,ALLEN,"Donald ""Don"" Dowies",248 Dowies Rd.,,Pitkin,LA,70656,5,318-634-7895,W,M,D,267,12/31/2014,1/1/2009,Mr. Dowies +Mayor ,City of Oakdale ,P. O. Box 728,,Oakdale,LA,,318-335-3629,ALLEN,Andrew Hayes,907 Mill St.,,Oakdale,LA,71463,5,318-335-1325,B,M,D,300,12/31/2012,1/1/2009,Mayor Hayes +Mayor ,Town of Elizabeth ,P. O. Box 457,,Elizabeth,LA,,318-634-5100,ALLEN,"Robert ""Bob"" Crafton",P.O. Box 153,,Elizabeth,LA,70638,5,318-634-7349,W,M,D,300,12/31/2010,1/1/2007,Mr. Crafton +Mayor ,Town of Kinder ,P. O. Drawer AH,,Kinder,LA,,337-738-2620,ALLEN,Estes LeDoux,1515 Lurton Ave.,,Kinder,LA,70648,5,337-738-2452,W,M,D,300,12/31/2010,1/1/2007,Mr. LeDoux +Mayor ,Town of Oberlin ,P. O. Box 370,,Oberlin,LA,,318-639-4333,ALLEN,"""Phil"" Beard",P.O. Box 709 St.,,Oberlin,LA,70655,5,337-639-2701,W,M,D,300,12/31/2010,1/1/2007,Mayor Beard +Mayor ,Village of Reeves ,P. O. Box 119,,Reeves,LA,,318-666-2613,ALLEN,Scott Walker,P.O. Box 73,,Reeves,LA,70658,5,337-666-2438,W,M,R,300,12/31/2010,1/1/2007,Mayor Walker +Chief of Police ,City of Oakdale ,P. O. Box 728,,Oakdale,LA,71463,318-335-3629,ALLEN,Scotty LaBorde,618 Fisher St.,,Oakdale,LA,71463,5,318-491-1941,W,M,,305,12/31/2012,1/1/2009,Chief LaBorde +Chief of Police ,Town of Elizabeth ,P. O. Box 457,,Elizabeth,LA,70638,318-634-5100,ALLEN,Shane Ware,P.O. Box 212,,Elizabeth,LA,70638,5,318-634-5964,W,M,D,305,12/31/2010,7/21/2008,Chief Ware +Chief of Police ,Town of Kinder ,P. O. Drawer AH,,Kinder,LA,70648,318-738-2620,ALLEN,Gary G. Pelican,P.O. Box 464,,Kinder,LA,70648,5,337-738-2090,W,M,D,305,12/31/2010,1/1/2007,Mr. Pelican +Chief of Police ,Town of Oberlin ,P. O. Box 370,,Oberlin,LA,70655,318-639-4333,ALLEN,Richard Young,P.O. Box 594,,Oberlin,LA,70655,5,337-639-2657,W,M,D,305,12/31/2010,1/1/2007,Mr. Young +Chief of Police ,Village of Reeves ,P. O. Box 119,,Reeves,LA,70658,337-666-2613,ALLEN,"""Buddy"" Estay",P.O. Box 84,,Reeves,LA,70658,5,337-666-2770,W,M,D,305,12/31/2010,1/1/2007,Chief Estay +Alderman at Large ,Town of Oberlin ,,,,LA,,,ALLEN,Troy Meaux,P. O. Box 946,,Oberlin,LA,70655,5,337-639-4780,W,M,,308,12/31/2010,1/1/2007, +Council Member ,"at Large, Town of Kinder ",P. O. Drawer AH,,Kinder,LA,70648,318-738-2620,ALLEN,Bennie E. Pelican,P. O. Box 82,,Kinder,LA,70648,5,337-305-5300,W,M,D,308,12/31/2010,1/1/2007, +Alderman ,"District 1, Town of Oberlin ",P. O. Box 370,,Oberlin,LA,70655,318-639-4333,ALLEN,Mark E. Manuel,P.O. Box 773,,Oberlin,LA,70655,5,337-639-2296,W,M,D,310,12/31/2010,1/1/2007,Mr. Manuel +Alderman ,"District 2, Town of Oberlin ",P. O. Box 370,,Oberlin,LA,70655,318-639-4333,ALLEN,"Robert ""Bob"" Vest",P.O. Box 216,,Oberlin,LA,70655,5,337-639-2461,W,M,D,310,12/31/2010,1/1/2007,Mr. Vest +Alderman ,"District 3, Town of Oberlin ",P. O. Box 370,,Oberlin,LA,70655,318-639-4333,ALLEN,"James ""Tee"" Ryder",P.O. Box 1132,,Oberlin,LA,70655,5,337-639-2124,W,M,R,310,12/31/2010,1/1/2007,Mr. Ryder +Alderman ,"District 4, Town of Oberlin ",P. O. Box 370,,Oberlin,LA,70655,318-639-4333,ALLEN,Janice D. Simon,P.O. Box 1092,,Oberlin,LA,70655,5,337-639-2317,B,F,D,310,12/31/2010,1/1/2007,Ms. Simon +Alderman ,Town of Elizabeth ,P. O. Box 457,,Elizabeth,LA,70638,318-634-5100,ALLEN,Nettie Clark,P.O. Box 28,,Elizabeth,LA,70638,5,318-634-7357,W,F,R,310,12/31/2010,1/1/2007,Mr. Clark +Alderman ,Town of Elizabeth ,P. O. Box 457,,Elizabeth,LA,70638,318-634-5100,ALLEN,Lydia Kingan,P.O. Box 336,,Elizabeth,LA,70638,5,318-634-5268,W,F,D,310,12/31/2010,11/27/2007,Ms. Kingan +Alderman ,Town of Elizabeth ,P. O. Box 457,,Elizabeth,LA,70638,318-634-5100,ALLEN,Michael Melder,P.O. Box 103,,Elizabeth,LA,70638,5,318-634-7272,W,M,R,310,12/31/2010,1/1/2007,Mr. Melder +Alderman ,Town of Elizabeth ,P. O. Box 457,,Elizabeth,LA,70638,318-634-5100,ALLEN,Shirley Smith,P. O. Box 194,,Elizabeth,LA,70638,5,318-634-5136,B,F,D,310,12/31/2010,1/1/2007,Ms. Smith +Alderman ,Town of Elizabeth ,P. O. Box 457,,Elizabeth,LA,70638,318-634-5100,ALLEN,Michael R. Sutton,P.O. Box 463,,Elizabeth,LA,70638,5,318-634-7166,W,M,R,310,12/31/2010,1/1/2007,Mr. Sutton +Alderman ,Village of Reeves ,P. O. Box 119,,Reeves,LA,70658,337-666-2613,ALLEN,Waylin P. Bertrand,P.O. Box 188,,Reeves,LA,70658,5,337-666-2638,W,M,D,310,12/31/2010,1/1/2007,Mr. Bertrand +Alderman ,Village of Reeves ,P. O. Box 119,,Reeves,LA,70658,337-666-2613,ALLEN,Janice Brown,P.O. Box 209,,Reeves,LA,70658,5,337-666-3312,W,F,R,310,12/31/2010,1/1/2007,Ms. Brown +Alderman ,Village of Reeves ,P. O. Box 119,,Reeves,LA,70658,337-666-2613,ALLEN,"""Jeanne"" Markway",P.O. Box 58,,Reeves,LA,70658,5,337-666-2500,W,F,D,310,12/31/2010,1/1/2007,Ms. Markway +Council Member ,"at Large, City of Oakdale ",P. O. Box 728,,Oakdale,LA,71463,318-335-3629,ALLEN,"George Ashy, II",P. O. Box 104,,Oakdale,LA,71463,5,318-335-2659,W,M,D,310,12/31/2012,1/1/2009,Mr. Ashy +Council Member ,"District 1, City of Oakdale ",P. O. Box 728,,Oakdale,LA,71463,318-335-3629,ALLEN,"""Gwen"" Alsburry",912 Holliday St.,,Oakdale,LA,71463,5,318-335-1721,B,F,D,310,12/31/2012,1/1/2009,Ms. Alsburry +Council Member ,"District 1, Town of Kinder ",P. O. Drawer AH,,Kinder,LA,70648,318-738-2620,ALLEN,Ferda Wykoff,P. O. Box 58,,Kinder,LA,70648,5,337-738-2835,B,M,D,310,12/31/2010,1/1/2007, +Council Member ,"District 2, City of Oakdale ",P. O. Box 728,,Oakdale,LA,71463,318-335-3629,ALLEN,John Matte,409 Meldoy Dr.,,Oakdale,LA,71463,5,318-335-2523,W,M,D,310,12/31/2012,1/1/2009,Mr. Matte +Council Member ,"District 2, Town of Kinder ",P. O. Drawer AH,,Kinder,LA,70648,318-738-2620,ALLEN,Wayland LaFargue,P. O. Box 46,,Kinder,LA,70648,5,337-738-5989,W,M,D,310,12/31/2010,1/1/2007, +Council Member ,"District 3, City of Oakdale ",P. O. Box 728,,Oakdale,LA,71463,318-335-3629,ALLEN,Robert Loman,108 Perry St.,,Oakdale,LA,71463,5,318-335-2856,W,M,D,310,12/31/2012,1/1/2009,Mr. Loman +Council Member ,"District 3, Town of Kinder ",P. O. Drawer AH,,Kinder,LA,70648,318-738-2620,ALLEN,Susan Doumite,P. O. Box 548,,Kinder,LA,70648,5,337-738-2068,W,F,R,310,12/31/2010,1/1/2007, +Council Member ,"District 4, City of Oakdale ",P. O. Box 728,,Oakdale,LA,71463,318-335-3629,ALLEN,Ralph Stapleton,1120 Scott Dr.,,Oakdale,LA,71463,5,318-335-0604,W,M,D,310,12/31/2012,1/1/2009,Mr. Stapleton +Council Member ,"District 4, Town of Kinder ",P. O. Drawer AH,,Kinder,LA,70648,318-738-2620,ALLEN,"""Angie"" Weatherford Van Norman",P. O. Box 1826,,Kinder,LA,70648,5,337-738-4441,W,F,R,310,12/31/2010,1/1/2007, +DPEC Member ,at Large ,,,,LA,,,ASCENSION,"""L.C."" Irvin",P.O. Box 353,,Darrow,LA,70725,5,225-473-9261,B,M,D,54,2/20/2012,2/20/2008,Mr. Irvin +DPEC Member ,at Large ,,,,LA,,,ASCENSION,"Edward ""Ed"" Price",2034 S. Robert Ave.,,Gonzales,LA,70737,5,225-647-4705,B,M,D,54,2/20/2012,2/20/2008,Mr. Price +DPEC Member ,District 1 ,,,,LA,,,ASCENSION,Oliver Joseph,1409 Millien Road,,Donaldsonville,LA,70346,5,225-473-9637,B,M,D,56,2/20/2012,2/20/2008,Mr. Joseph +DPEC Member ,District 2 ,,,,LA,,,ASCENSION,George Probst,312 Woodland Dr.,,Donaldsonville,LA,70346,5,225-474-4900,W,M,D,56,2/20/2012,2/20/2008,Mr. Probst +DPEC Member ,District 3 ,,,,LA,,,ASCENSION,Jesse Bartley,39034 Hwy. 22,,Darrow,LA,70725,5,225-473-4583,B,M,D,56,2/20/2012,2/20/2008,Mr. Bartley +DPEC Member ,District 4 ,,,,LA,,,ASCENSION,Larry H. Christy,15442 Airline Hwy.,,Prairieville,LA,70769,5,225-673-6627,B,M,D,56,2/20/2012,2/20/2008,Mr. Christy +DPEC Member ,District 5 ,,,,LA,,,ASCENSION,"""A.J."" Nickens",16153 Joe Sevario Rd.,,Prairieville,LA,70769,5,225-622-2458,W,M,D,56,2/20/2012,2/20/2008,Mr. Nickens +DPEC Member ,District 6 ,,,,LA,,,ASCENSION,,,,,,,0,,,,,56,,, +DPEC Member ,District 7 ,,,,LA,,,ASCENSION,,,,,,,0,,,,,56,,, +DPEC Member ,District 8 ,,,,LA,,,ASCENSION,,,,,,,0,,,,,56,,, +DPEC Member ,District 9 ,,,,LA,,,ASCENSION,Shirley Bourque Waguespack,41291 Cannon Rd.,,Gonzales,LA,70737,5,225-647-3004,W,F,D,56,2/20/2012,2/20/2008,Ms. Waguespack +DPEC Member ,District 10 ,,,,LA,,,ASCENSION,,,,,,,0,,,,,56,,, +DPEC Member ,District 11 ,,,,LA,,,ASCENSION,,,,,,,0,,,,,56,,, +RPEC Member ,at Large ,,,,LA,,,ASCENSION,"""Kathy"" Edmonston",43510 North Pine Crest St.,,Gonzales,LA,70737,5,225-622-2086,W,F,R,64,2/20/2012,2/20/2008, +RPEC Member ,at Large ,,,,LA,,,ASCENSION,"""Jeremy"" Epps",37348 Dutchtown Crossing,,Gonzales,LA,70737,5,225-673-6962,W,M,R,64,2/20/2012,2/20/2008,Mr. Epps +RPEC Member ,at Large ,,,,LA,,,ASCENSION,Cheryl Fontenot,P.O. Box 298,,Duplessis,LA,70728,5,225-644-5401,W,F,R,64,2/20/2012,2/20/2008, +RPEC Member ,at Large ,,,,LA,,,ASCENSION,Todd P. Gautreau,13103 Hanson Rd.,,Gonzales,LA,70737,5,225-644-6882,W,M,R,64,2/20/2012,2/20/2008,Mr. Gautreau +RPEC Member ,at Large ,,,,LA,,,ASCENSION,"Phillip ""P.J."" Valentine",14256 Parkview Dr.,,Prairieville,LA,70769,5,225-715-9068,W,M,R,64,2/20/2012,2/20/2008,Mr. Valentine +RPEC Member ,District 1 ,,,,LA,,,ASCENSION,Felix Sternfels,P. O. Box 608,,Donaldsonville,LA,70346,5,225-473-1882,W,M,R,66,2/20/2012,2/20/2008,Mr. Sternfels +RPEC Member ,District 2 ,,,,LA,,,ASCENSION,JoAn Brown,6090 Brewerton Estates Rd.,,Gonzales,LA,70737,5,225-647-4560,W,F,R,66,2/20/2012,2/20/2008,Ms. Brown +RPEC Member ,District 3 ,,,,LA,,,ASCENSION,"""Pie"" Lanoux",39045 Cornerview Rd.,,Gonzales,LA,70737,5,225-647-2750,W,F,R,66,2/20/2012,2/20/2008,Mr. Lanoux +RPEC Member ,District 4 ,,,,LA,,,ASCENSION,"""Pat"" Bell",P.O. Box 81,,Duplessis,LA,70728,5,225-571-3436,W,M,R,66,2/20/2012,2/20/2008,Mr. Bell +RPEC Member ,District 5 ,,,,LA,,,ASCENSION,"""Chip"" McCorkle",16254 Ole Homestead Ln.,,Prairieville,LA,70769,5,225-622-1687,W,M,R,66,2/20/2012,2/20/2008,Mr. McCorkle +RPEC Member ,District 6 ,,,,LA,,,ASCENSION,Rhett Bourgeois,9227 Hwy. 22,,St. Amant,LA,70774,5,225-675-6792,W,M,R,66,2/20/2012,2/20/2008, +RPEC Member ,District 7 ,,,,LA,,,ASCENSION,Chris Loar,17378 Lauren Dr.,,,LA,70769,5,225-677-5179,W,M,R,66,2/20/2012,2/20/2008,Mr. Loar +RPEC Member ,District 8 ,,,,LA,,,ASCENSION,Brad Walker,36086 Ridge Rd.,,Prairieville,LA,70769,5,225-673-2715,W,M,R,66,2/20/2012,2/20/2008,Mr. Walker +RPEC Member ,District 9 ,,,,LA,,,ASCENSION,,,,,,,0,,,,,66,,, +RPEC Member ,District 10 ,,,,LA,,,ASCENSION,Larry Buquoi,11117 Terrell Ave.,,Gonzales,LA,70737,5,225-677-7070,W,M,R,66,2/20/2012,2/20/2008,Mr. Buquoi +RPEC Member ,District 11 ,,,,LA,,,ASCENSION,Steven McGowan,42240 Conifer Dr.,,Gonzales,LA,70737,5,225-622-5276,W,M,R,66,2/20/2012,2/20/2008, +Judge ,Parish Court ,"828 S. Irma Blvd., Bldg. 2",,Gonzales,LA,70737,225-621-8504,ASCENSION,Marilyn M. Lambert,18436 Greenbriar Ave.,,Prairieville,LA,70769,5,225-673-8426,W,F,R,220,12/31/2012,1/1/2007,Judge Lambert +Sheriff ,,P. O. Box 268,,Donaldsonville,LA,70346,225-473-8671,ASCENSION,Jeffrey F. Wiley,P.O. Box 268,,Donaldsonville,LA,70346,5,225-644-5654,W,M,D,225,6/30/2012,7/1/2008,Sheriff Wiley +Clerk of Court ,,P. O. Box 192,,Donaldsonville,LA,70346,225-473-9866,ASCENSION,"Kermit ""Hart"" Bourque",815 E. Worthey St.,,Gonzales,LA,70737,5,225-647-2618,W,M,D,230,6/30/2012,7/1/2008,Mr. Bourque +Assessor ,,P. O. Box 544,,Donaldsonville,LA,70346,225-473-9239,ASCENSION,Renee Mire Michel,814 E. Cornerview,,Gonzales,LA,70737,5,225-644-8562,W,F,D,235,12/31/2012,1/1/2009,Ms. Michel +Coroner ,,"2647 Riverview Blvd., Ste. 100",,Gonzales,LA,70737,225-644-4743,ASCENSION,John F. Fraiche,15151 Highland Rd.,,Baton Rouge,LA,70810,5,225-754-7976,W,M,D,240,3/25/2012,3/24/2008,Mr. Fraiche +Parish President ,,208 E. Railrod St.,,Gonzales,LA,70737,225-621-8577,ASCENSION,"""Tommy"" Martinez",13367 Hwy. 431,,St. Amant,LA,70774,5,225-644-4473,W,M,D,243,1/2/2012,1/7/2008,Mr. Martinez +Council Member ,District 1 ,208 E. Railroad St.,,Gonzales,LA,,225-621-8577,ASCENSION,Oliver Joseph,1409 Millien Rd.,,Donaldsonville,LA,70346,5,225-473-9637,B,M,D,245,1/2/2012,1/7/2008,Mr. Joseph +Council Member ,District 2 ,208 E. Railroad St.,,Gonzales,LA,70737,225-621-8577,ASCENSION,Kent Schexnaydre,7140 Donaldson Dr.,,Gonzales,LA,70737,5,225-647-0455,W,M,D,245,1/2/2012,1/7/2008,Mr. Schexnaydre +Council Member ,District 3 ,208 E. Railroad St.,,Gonzales,LA,70737,225-621-8577,ASCENSION,Adrian Thompson,38533 Arrowhead Dr.,,Gonzales,LA,70737,5,225-647-1605,B,M,D,245,1/2/2012,1/7/2008,Mr. Thompson +Council Member ,District 4 ,208 E. Railroad St.,,Gonzales,LA,70737,225-621-8577,ASCENSION,"""Pat"" Bell, Sr.",P.O. Box 81,,Duplessis,LA,70728,5,225-673-6878,W,M,R,245,1/2/2012,1/7/2008,Mr. Bell +Council Member ,District 5 ,208 E. Railroad St.,,Gonzales,LA,70737,225-621-8577,ASCENSION,Dempsey Lambert,42105 Hwy. 933,,Prairieville,LA,70769,5,225-622-2703,W,M,D,245,1/2/2012,1/7/2008,Mr. Lambert +Council Member ,District 6 ,208 E. Railroad St.,,Gonzales,LA,70737,225-621-8577,ASCENSION,"Randy T. Clouatre, Sr.",12038 Arthur Clouatre Rd.,,St. Amant,LA,70774,5,225-647-4925,W,M,D,245,1/2/2012,1/7/2008,Mr. Clouatre +Council Member ,District 7 ,208 E. Railroad St.,,Gonzales,LA,70737,225-621-8577,ASCENSION,"""Chris"" Loar",17378 Lauren Dr.,,Prairieville,LA,70769,5,225-677-5179,W,M,R,245,1/2/2012,1/7/2008,Mr. Loar +Council Member ,District 8 ,208 E. Railroad St.,,Gonzales,LA,70737,225-621-8577,ASCENSION,"George Valentine, Jr.",13323 Hwy. 73,,Geismar,LA,70734,5,225-673-6973,W,M,R,245,1/2/2012,1/7/2008,Mr. Valentine +Council Member ,District 9 ,208 E. Railroad St.,,Gonzales,LA,70737,225-621-8577,ASCENSION,Todd Lambert,12202 Roddy Rd.,,Gonzales,LA,70737,5,225-644-6660,W,M,D,245,1/2/2012,1/7/2008,Mr. Lambert +Council Member ,District 10 ,208 E. Railroad St.,,Gonzales,LA,70737,225-621-8577,ASCENSION,Dennis Cullen,43201 No. John Templet Rd.,,Gonzales,LA,70737,5,225-644-6300,W,M,R,245,1/2/2012,1/7/2008,Mr. Cullen +Council Member ,District 11 ,208 E. Railroad St.,,Gonzales,LA,70737,225-621-8577,ASCENSION,Benny Johnson,40211 William Ficklin Rd.,,Gonzales,LA,70737,5,225-644-4107,W,M,,245,1/2/2012,1/7/2008,Mr. Johnson +Member of School Board ,District 1 ,P. O. Box 189,,Donaldsonville,LA,70346,225-473-7981,ASCENSION,Catherine Davis,612 W. Seventh St.,,Donaldsonville,LA,70346,5,225-473-3133,B,F,D,255,12/31/2010,1/1/2007,Ms. Davis +Member of School Board ,District 2 ,P. O. Box 189,,Donaldsonville,LA,70346,225-473-7981,ASCENSION,Jody Elisar,7297 Hwy. 44,,Gonzales,LA,70737,5,225-647-7655,W,M,D,255,12/31/2010,1/1/2007,Mr. Elisar +Member of School Board ,District 3 ,P. O. Box 189,,Donaldsonville,LA,70346,225-473-7981,ASCENSION,"Edward ""Ed"" Price",2034 S. Robert,,Gonzales,LA,70737,5,225-647-4705,B,M,D,255,12/31/2010,1/1/2007,Mr. Price +Member of School Board ,"District 4, Seat A ",P. O. Box 189,,Donaldsonville,LA,70346,225-473-7981,ASCENSION,Kerry Diez,12043 Cotton Patch Ln.,,Gonzales,LA,70737,5,225-673-6822,W,M,R,255,12/31/2010,1/1/2007,Ms. Diez +Member of School Board ,"District 4, Seat B ",P. O. Box 189,,Donaldsonville,LA,70346,225-473-7981,ASCENSION,John D. Murphy,37147 Perkins Rd.,,Prairieville,LA,70769,5,225-673-2602,W,M,R,255,12/31/2010,1/1/2007,Mr. Murphy +Member of School Board ,"District 5, Seat A ",P. O. Box 189,,Donaldsonville,LA,70346,225-473-7981,ASCENSION,"""A.J."" Nickens",16153 Joe Sevario Rd.,,Prairieville,LA,70769,5,225-622-2458,W,M,D,255,12/31/2010,1/1/2007,Mr. Nickens +Member of School Board ,"District 5, Seat B ",P. O. Box 189,,Donaldsonville,LA,70346,225-473-7981,ASCENSION,Taft C. Kleinpeter,38138 Willow Lake E. Ave.,,Prairieville,LA,70769,5,225-673-4040,W,M,R,255,12/31/2010,1/1/2007,Mr. Kleinpeter +Member of School Board ,"District 6, Seat A ",P. O. Box 189,,Donaldsonville,LA,70346,225-473-7981,ASCENSION,Steve A. Broussard,45340 John Sheets Rd.,,St. Amant,LA,70774,5,225-647-8276,W,M,D,255,12/31/2010,1/1/2007,Mr. Broussard +Member of School Board ,"District 6, Seat B ",P. O. Box 189,,Donaldsonville,LA,70346,225-473-7981,ASCENSION,Harold Jarreau,44089 S. Paula St.,,St. Amant,LA,70774,5,225-644-4802,W,M,,255,12/31/2010,1/1/2007,Mr. Jarreau +Member of School Board ,"District 7, Seat A ",P. O. Box 189,,Donaldsonville,LA,70346,225-473-7981,ASCENSION,"Troy J. Gautreau, Sr.",40337 Lelia Rd.,,Gonzales,LA,70737,5,225-644-1928,W,M,R,255,12/31/2010,1/1/2007,Mr. Gautreau +Member of School Board ,"District 7, Seat B ",P. O. Box 189,,Donaldsonville,LA,70346,225-473-7981,ASCENSION,"Patricia ""Pat"" Russo",42270 Weber City Rd.,,Gonzales,LA,70737,5,225-647-6625,W,F,D,255,12/31/2010,1/1/2007,Ms. Russo +Justice of the Peace ,1st Justice Court ,1004 Madison St.,,Donaldsonville,LA,70346,225-473-4407,ASCENSION,Andrew Falcon,1004 Madison St.,,Donaldsonville,LA,70346,5,225-473-4407,W,M,D,265,12/31/2014,1/1/2009,Mr. Falcon +Justice of the Peace ,2nd Justice Court ,39362 Shafter LeBlanc Rd.,,Gonzales,LA,70737,225-647-3753,ASCENSION,"Leroy J. Laiche, Jr.",18507 Andrew Jackson Ave.,,Prairieville,LA,70769,5,225-744-8800,W,M,R,265,12/31/2014,10/27/2009,Mr. Laiche +Justice of the Peace ,3rd Justice Court ,"11296 Hwy. 431, Ste. C",,St. Amant,LA,70774,225-644-1512,ASCENSION,John C. Hebert,44073 Gold Place Rd.,,St. Amant,LA,70774,5,225-647-7002,W,M,D,265,12/31/2014,1/1/2009, +Constable ,1st Justice Court ,2411 St. Simon Pl.,,Donaldsonville,LA,70346,225-473-3526,ASCENSION,"Andrew ""Banana"" LeBlanc",2411 St. Simon Pl.,,Donaldsonville,LA,70346,5,225-473-3526,W,M,D,267,12/31/2014,1/1/2009,Mr. LeBlanc +Constable ,2nd Justice Court ,1121 E. Fabian St.,,Gonzales,LA,70737,225-647-1306,ASCENSION,Danny P. Thibodeaux,P. O. Box 85,,Prairieville,LA,70769,5,225-673-8015,W,M,R,267,12/31/2014,1/1/2009,Mr. Thibodeaux +Constable ,3rd Justice Court ,12487 Agnes Marie Road,,St. Amant,LA,70774,225-644-3815,ASCENSION,"James E. ""Chief"" LeBlanc",12487 Agnes Marie Rd.,,St. Amant,LA,70774,5,225-644-3815,W,M,D,267,12/31/2014,1/1/2009,Mr. LeBlanc +Mayor ,City of Donaldsonville ,P. O. Box 470,,Donaldsonville,LA,,225-473-4247,ASCENSION,"Leroy Sullivan, Sr.",2219 East Bayou Rd.,,Donaldsonville,LA,70346,5,225-955-1368,B,M,D,300,12/31/2012,1/1/2009,Mayor Sullivan +Mayor ,City of Gonzales ,120 S. Irma Blvd.,,Gonzales,LA,,225-647-2841,ASCENSION,Barney Arceneaux,1745 E. Nelson,,Gonzales,LA,70737,5,225-647-5969,W,M,D,300,12/31/2012,1/1/2009,Mayor Arceneaux +Mayor ,Town of Sorrento ,P. O. Box 65,,Sorrento,LA,,225-675-5337,ASCENSION,Blake A. LeBlanc,43497 Poplar,,Sorrento,LA,70778,5,225-675-6703,W,M,D,300,6/30/2013,7/1/2009, +Chief of Police ,City of Gonzales ,120 S. Irma Blvd.,,Gonzales,LA,70737,225-647-2841,ASCENSION,Sherman Jackson,1324 S. Shirley Ave.,,Gonzales,LA,70737,5,225-644-8316,B,M,D,305,12/31/2012,1/1/2009,Chief Jackson +Chief of Police ,Town of Sorrento ,P. O. Box 65,,Sorrento,LA,70778,225-675-5337,ASCENSION,"Earl L. Theriot, Jr.",7502 Eva St.,,Sorrento,LA,70778,5,225-675-5772,W,M,D,305,6/30/2013,7/1/2009,Chief Theriot +Council Member ,"District 1, City of Donaldsonville ",P. O. Box 470,,Donaldsonville,LA,70346,225-473-4247,ASCENSION,"Anthony ""Tony"" Huey",411 W. Third St.,,Donaldsonville,LA,70346,5,225-806-1888,B,M,D,310,12/31/2012,1/1/2009,Mr. Huey +Council Member ,"District 2, City of Donaldsonville ",P. O. Box 470,,Donaldsonville,LA,70346,225-473-4247,ASCENSION,Raymond Aucoin,2200 E. Bayou Rd.,,Donaldsonville,LA,70346,5,225-717-2540,W,M,D,310,12/31/2012,1/1/2009,Mr. Aucoin +Council Member ,"District 3, City of Donaldsonville ",P. O. Box 470,,Donaldsonville,LA,70346,225-473-4247,ASCENSION,"Reginald Francis, Sr.",P. O. BOX 1582,,Donaldsonville,LA,70346,5,225-473-7220,B,M,D,310,12/31/2012,1/1/2009,Mr. Francis +Council Member ,"District 4, City of Donaldsonville ",P. O. Box 470,,Donaldsonville,LA,70346,225-473-4247,ASCENSION,"Charles R. Brown, Sr.",106 Anna St.,,Donaldsonville,LA,70346,5,225-473-2198,B,M,D,310,12/31/2012,1/1/2009,Mr. Brown +Council Member ,"District 5, City of Donaldsonville ",P. O. Box 470,,Donaldsonville,LA,70346,225-473-4247,ASCENSION,Emile John Spano,916 Iberville St.,,Donaldsonville,LA,70346,5,225-473-4959,W,M,D,310,12/31/2012,1/1/2009,Mr. Spano +Council Member ,"Division A, City of Gonzales ",120 S. Irma Blvd.,,Gonzales,LA,70737,225-647-2841,ASCENSION,"Kenneth ""Kenny"" Matassa",P. O. Box 426,,Gonzales,LA,70707,5,225-647-4601,W,M,D,310,12/31/2012,1/1/2009,Mr. Matassa +Council Member ,"Division B, City of Gonzales ",120 S. Irma Blvd.,,Gonzales,LA,70737,225-647-2841,ASCENSION,Kirk J. Boudreaux,1804 E. Bocage,,Gonzales,LA,70737,5,225-644-3969,W,M,D,310,12/31/2012,1/1/2009,Mr. Boudreaux +Council Member ,"Division C, City of Gonzales ",120 S. Irma Blvd.,,Gonzales,LA,70737,225-647-2841,ASCENSION,"Ronald J. ""Joe"" Waguespack",1621 E. Nelson St.,,Gonzales,LA,70737,5,225-647-4623,W,M,R,310,12/31/2012,1/1/2009,Mr. Waguespack +Council Member ,"Division D, City of Gonzales ",120 S. Irma Blvd.,,Gonzales,LA,70737,225-647-2841,ASCENSION,Terance L. Irvin,2414 S. Edwards,,Gonzales,LA,70737,5,225-647-7441,B,M,D,310,12/31/2012,1/1/2009,Mr. Irvin +Council Member ,"Division E, City of Gonzales ",120 S. Irma Blvd.,,Gonzales,LA,70737,225-647-2841,ASCENSION,John J. Cagnolatti,1127 S. Vista Ave.,,Gonzales,LA,70737,5,225-644-5273,W,M,R,310,12/31/2012,1/1/2009,Mr. Cagnolatti +Council Member ,Town of Sorrento ,P. O. Box 65,,Sorrento,LA,70778,225-675-5337,ASCENSION,John Braud,P.O. Box 297,,Sorrento,LA,70778,5,225-675-5972,W,M,,310,6/30/2013,7/1/2009,Mr. Braud +Council Member ,Town of Sorrento ,P. O. Box 65,,Sorrento,LA,70778,225-675-5337,ASCENSION,"Wilson Longanecker, Jr.",P.O. Box 295,,Sorrento,LA,70778,5,225-715-7665,W,M,D,310,6/30/2013,7/1/2009,Mr. Longanecker +Council Member ,Town of Sorrento ,P. O. Box 65,,Sorrento,LA,70778,225-675-5337,ASCENSION,"Marvin L. Martin, ",P. O. Box 71,,Sorrento,LA,70778,5,225-675-2699,B,M,D,310,6/30/2013,11/24/2009,Mr. Martin +Council Member ,Town of Sorrento ,P. O. Box 65,,Sorrento,LA,70778,225-675-5337,ASCENSION,"Lionel Melancon, Jr.",44345 Braud St.,,Sorrento,LA,70778,5,225-328-1393,W,M,D,310,6/30/2013,7/1/2009,Mr. Melancon +Council Member ,Town of Sorrento ,P. O. Box 65,,Sorrento,LA,70778,225-675-5337,ASCENSION,"Milton ""Needlenose"" Vicknair",8235 Villeneuve St.,,Sorrento,LA,70778,5,225-675-8538,W,M,D,310,6/30/2013,7/1/2009,Mr. Vicknair +DPEC Member ,at Large ,,,,LA,,,ASSUMPTION,,,,,,,0,,,,,54,,, +DPEC Member ,District 1 ,,,,LA,,,ASSUMPTION,,,,,,,0,,,,,56,,, +DPEC Member ,District 2 ,,,,LA,,,ASSUMPTION,,,,,,,0,,,,,56,,, +DPEC Member ,District 3 ,,,,LA,,,ASSUMPTION,,,,,,,0,,,,,56,,, +DPEC Member ,District 4 ,,,,LA,,,ASSUMPTION,,,,,,,0,,,,,56,,, +DPEC Member ,District 5 ,,,,LA,,,ASSUMPTION,"Spergeon Holly, Jr.",4113 Hwy. 1,,Napoleonville,LA,70390,5,985-369-7412,B,M,D,56,2/20/2012,2/20/2008,Mr. Holly +DPEC Member ,District 6 ,,,,LA,,,ASSUMPTION,,,,,,,0,,,,,56,,, +DPEC Member ,District 7 ,,,,LA,,,ASSUMPTION,,,,,,,0,,,,,56,,, +DPEC Member ,District 8 ,,,,LA,,,ASSUMPTION,,,,,,,0,,,,,56,,, +DPEC Member ,District 9 ,,,,LA,,,ASSUMPTION,,,,,,,0,,,,,56,,, +RPEC Member ,at Large ,,,,LA,,,ASSUMPTION,Collette Vizier,103 Lucky St.,,Plattenville,LA,70393,5,985-369-3724,W,F,R,64,2/20/2012,2/20/2008,Ms. Vizier +RPEC Member ,District 1 ,,,,LA,,,ASSUMPTION,,,,,,,0,,,,,66,,, +RPEC Member ,District 2 ,,,,LA,,,ASSUMPTION,,,,,,,0,,,,,66,,, +RPEC Member ,District 3 ,,,,LA,,,ASSUMPTION,,,,,,,0,,,,,66,,, +RPEC Member ,District 4 ,,,,LA,,,ASSUMPTION,,,,,,,0,,,,,66,,, +RPEC Member ,District 5 ,,,,LA,,,ASSUMPTION,,,,,,,0,,,,,66,,, +RPEC Member ,District 6 ,,,,LA,,,ASSUMPTION,,,,,,,0,,,,,66,,, +RPEC Member ,District 7 ,,,,LA,,,ASSUMPTION,,,,,,,0,,,,,66,,, +RPEC Member ,District 8 ,,,,LA,,,ASSUMPTION,,,,,,,0,,,,,66,,, +RPEC Member ,District 9 ,,,,LA,,,ASSUMPTION,,,,,,,0,,,,,66,,, +Sheriff ,,P. O. Box 69,,Napoleonville,LA,70390,225-369-7281,ASSUMPTION,"Michael ""Mike"" Waguespack",P.O. Box 69,,Napoleonville,LA,70390,5,985-369-6559,W,M,D,225,6/30/2012,7/1/2008,Sheriff Waguespack +Clerk of Court ,,P. O. Drawer 249,,Napoleonville,LA,70390,985-369-6653,ASSUMPTION,Darlene Landry,P.O. Drawer 249,,Napoleonville,LA,70390,5,985-369-2603,W,F,D,230,6/30/2012,7/1/2008,Ms. Landry +Assessor ,,P. O. Box 576,,Napoleonville,LA,70390,985-369-6385,ASSUMPTION,"Wayne ""Cat"" Blanchard",3623 Hwy. 308,,Napoleonville,LA,70390,5,985-369-6672,W,M,D,235,12/31/2012,1/1/2009,Mr. Blanchard +Coroner ,,P.O. Box 188,,Napoleonville,LA,70390,985-369-6485,ASSUMPTION,Celeste Chaudoir,P. O. Box 188,,Napoleonville,LA,70390,5,985-369-7159,W,F,D,240,3/25/2012,3/24/2008,Ms. Chaudoir +Police Juror ,Ward 1 ,P. O. Box 520,,Napoleonville,LA,,985-369-7435,ASSUMPTION,Patrick O. Lawless,139 Ideal St.,,Belle Rose,LA,70341,5,985-369-2074,B,M,D,245,1/8/2012,1/14/2008,Mr. Lawless +Police Juror ,Ward 2 ,P. O. Box 520,,Napoleonville,LA,70390,985-369-7435,ASSUMPTION,"Jeff ""Big Daddy"" Naquin",319 Brule Rd.,,Labadieville,LA,70372,5,985-526-8139,W,M,D,245,1/8/2012,1/14/2008,Mr. Naquin +Police Juror ,Ward 3 ,P. O. Box 520,,Napoleonville,LA,70390,985-369-7435,ASSUMPTION,Irving Comeaux,159 Pond Dr.,,Morgan City,LA,70380,5,985-631-2443,W,M,D,245,1/8/2012,1/14/2008,Mr. Comeaux +Police Juror ,Ward 4 ,P. O. Box 520,,Napoleonville,LA,70390,985-369-7435,ASSUMPTION,Patrick Johnson,3555 Hwy. 1,,Napoleonville,LA,70390,5,985-369-7550,B,M,D,245,1/8/2012,1/14/2008,Mr. Johnson +Police Juror ,Ward 5 ,P. O. Box 520,,Napoleonville,LA,70390,985-369-7435,ASSUMPTION,"""Marty"" Triche",P.O. Box 339,,Napoleonville,LA,70390,5,985-369-7320,W,M,D,245,1/8/2012,1/14/2008,Mr. Triche +Police Juror ,Ward 6 ,P. O. Box 520,,Napoleonville,LA,70390,985-369-7435,ASSUMPTION,"Calvin ""JC"" James",128 Jacobs St.,,Napoleonville,LA,70390,5,985-369-2843,B,M,D,245,1/8/2012,1/14/2008,Mr. James +Police Juror ,Ward 7 ,P. O. Box 520,,Napoleonville,LA,70390,985-369-7435,ASSUMPTION,Henry J. Dupre,P.O. Box 362,,Belle Rose,LA,70341,5,225-474-0254,W,M,D,245,1/8/2012,1/14/2008,Mr. Dupre +Police Juror ,Ward 8 ,P. O. Box 520,,Napoleonville,LA,70390,985-369-7435,ASSUMPTION,Booster Breaux,2631 Lee Dr.,,Pierre Part,LA,70339,5,985-252-6769,W,M,D,245,1/8/2012,1/14/2008,Mr. Breaux +Police Juror ,Ward 9 ,P. O. Box 520,,Napoleonville,LA,70390,985-369-7435,ASSUMPTION,Myron Matherne,129 Timothy St.,,Pierre Part,LA,70339,5,985-252-9504,W,M,D,245,1/8/2012,1/14/2008,Mr. Matherne +Member of School Board ,Ward 1 ,4901 Hwy. 308,,Napoleonville,LA,70390,985-369-7251,ASSUMPTION,Leonard Alcorn,P.O. Box 15,,Belle Rose,LA,70341,5,985-369-7727,B,M,D,255,12/31/2010,1/1/2007,Mr. Alcorn +Member of School Board ,Ward 2 ,4901 Hwy. 308,,Napoleonville,LA,70390,985-369-7251,ASSUMPTION,"Lee Meyer, Sr.",P.O. Box 268,,Napoleonville,LA,70390,5,985-369-2672,W,M,D,255,12/31/2010,1/1/2007,Mr. Meyer +Member of School Board ,Ward 3 ,4901 Hwy. 308,,Napoleonville,LA,70390,985-369-7251,ASSUMPTION,Andrea Barras,240 Flamingo Rd.,,Morgan City,LA,70380,5,985-631-2042,W,F,O,255,12/31/2010,1/1/2007,Ms. Barras +Member of School Board ,Ward 4 ,4901 Hwy. 308,,Napoleonville,LA,70390,985-369-7251,ASSUMPTION,Electa Fletcher Mickens,3242 Hwy. 1,,Napoleonville,LA,70390,5,985-526-8335,B,F,D,255,12/31/2010,1/1/2007,Ms. Mickens +Member of School Board ,Ward 5 ,4901 Hwy. 308,,Napoleonville,LA,70390,985-369-7251,ASSUMPTION,"Lawrence ""Larry"" Howell",4547 Hwy. 1,,Napoleonville,LA,70390,5,985-369-6758,W,M,D,255,12/31/2010,1/1/2007,Mr. Howell +Member of School Board ,Ward 6 ,4901 Hwy. 308,,Napoleonville,LA,70390,985-369-7251,ASSUMPTION,Ray Nicholas,223 Virginia St.,,Belle Rose,LA,70341,5,985-369-2151,B,M,D,255,12/31/2010,1/1/2007,Mr. Nicholas +Member of School Board ,Ward 7 ,4901 Hwy. 308,,Napoleonville,LA,70390,985-369-7251,ASSUMPTION,"John P. Beck, Sr.",P.O. Box 14,,Donaldsonville,LA,70346,5,225-473-7328,W,M,D,255,12/31/2010,1/1/2007,Mr. Beck +Member of School Board ,Ward 8 ,4901 Hwy. 308,,Napoleonville,LA,70390,985-369-7251,ASSUMPTION,"Jessica ""Kooney"" Ourso",102-A N. Curtis St.,,Pierre Part,LA,70339,5,985-252-6775,W,F,D,255,12/31/2010,1/1/2007,Ms. Ourso +Member of School Board ,Ward 9 ,4901 Hwy. 308,,Napoleonville,LA,70390,985-369-7251,ASSUMPTION,Doris Dugas,239 Mike St.,,Pierre Part,LA,70339,5,985-252-9371,W,F,D,255,12/31/2010,1/1/2007,Ms. Dugas +Justice of the Peace ,1st Justice of the Peace Ward ,5026 Hwy.308,,Napoleonville,LA,70390,985-369-2591,ASSUMPTION,Bryan P. Baldwin,5026 Hwy. 308,,Napoleonville,LA,70390,5,985-369-2591,W,M,D,265,12/31/2014,1/1/2009,Mr. Baldwin +Justice of the Peace ,2nd Justice of the Peace Ward ,117 Orchid St.,,Thibodaux,LA,70301,985-526-8694,ASSUMPTION,Roselyn Peltier,2425 Hwy. 308,,Tibodaux,LA,70301,5,985-526-6588,W,F,D,265,12/31/2014,1/2/2009,Ms. Peltier +Justice of the Peace ,3rd Justice of the Peace Ward ,P. O. Box 293,,Pierre Part,LA,70339,985-252-6010,ASSUMPTION,Bridget Marie Landry,2646 Hwy. 70 South,,Pierre Part,LA,70339,5,985-252-0064,W,F,D,265,12/31/2014,1/1/2009,Ms. Landry +Constable ,1st Justice of the Peace Ward ,P.O. Box 18,,Plattenville,LA,70393,985-369-7426,ASSUMPTION,Wayne Poche,P.O. Box 18,,Plattenville,LA,70393,5,985-369-7426,W,M,D,267,12/31/2014,1/1/2009,Mr. Poche +Constable ,2nd Justice of the Peace Ward ,3615 Hwy. 1,,Napoleonville,LA,70390,985-369-6645,ASSUMPTION,"Richard ""Roach"" Arcement",3615 Hwy. 1,,Napoleonville,LA,70390,5,985-369-6645,W,M,D,267,12/31/2014,1/1/2009,Mr. Arcement +Constable ,3rd Justice of the Peace Ward ,111 James St.,,Pierre Part,LA,70339,985-252-6767,ASSUMPTION,Jamie P. Ponville,2919 Hwy. 70 South,,Pierre Part,LA,70339,5,985-252-6528,W,M,D,267,12/31/2014,1/1/2009,Mr. Ponville +Mayor ,Village of Napoleonville ,P. O. Box 6,,Napoleonville,LA,,985-369-6365,ASSUMPTION,Ron Animashaun,P.O. Box 921,,Napoleonville,LA,70390,5,985-369-7706,B,M,D,300,12/31/2010,1/1/2007,Mr. Animashaun +Chief of Police ,Village of Napoleonville ,P. O. Box 6,,Napoleonville,LA,70390,985-369-6365,ASSUMPTION,"Lionel Bell, Sr.",P.O. Box 673,,Napoleonville,LA,70390,5,985-369-6276,B,M,D,305,12/31/2010,1/1/2007,Mr. Bell +Alderman ,Village of Napoleonville ,P. O. Box 6,,Napoleonville,LA,70390,985-369-6365,ASSUMPTION,Joyce Bell,P.O. Box 962,,Napoleonville,LA,70390,5,985-369-3178,B,F,D,310,12/31/2010,10/30/2007,Ms. Bell +Alderman ,Village of Napoleonville ,P. O. Box 6,,Napoleonville,LA,70390,985-369-6365,ASSUMPTION,Eugene Buggage,P.O. Box 847,,Napoleonville,LA,70390,5,985-369-6956,B,M,D,310,12/31/2010,1/1/2007,Mr. Buggage +Alderman ,Village of Napoleonville ,P. O. Box 6,,Napoleonville,LA,70390,985-369-6365,ASSUMPTION,"Floyd Truehill, Sr.",P.O. Box 631,,Napoleonville,LA,70390,5,985-369-2526,B,M,D,310,12/31/2010,1/1/2007,Mr. Truehill +DPEC Member ,at Large ,,,,LA,,,AVOYELLES,,,,,,,0,,,,,54,,, +DPEC Member ,District 1 ,,,,LA,,,AVOYELLES,,,,,,,0,,,,,56,,, +DPEC Member ,District 2 ,,,,LA,,,AVOYELLES,,,,,,,0,,,,,56,,, +DPEC Member ,District 3 ,,,,LA,,,AVOYELLES,,,,,,,0,,,,,56,,, +DPEC Member ,District 4 ,,,,LA,,,AVOYELLES,,,,,,,0,,,,,56,,, +DPEC Member ,District 5 ,,,,LA,,,AVOYELLES,,,,,,,0,,,,,56,,, +DPEC Member ,District 6 ,,,,LA,,,AVOYELLES,,,,,,,0,,,,,56,,, +DPEC Member ,District 7 ,,,,LA,,,AVOYELLES,,,,,,,0,,,,,56,,, +DPEC Member ,District 8 ,,,,LA,,,AVOYELLES,,,,,,,0,,,,,56,,, +DPEC Member ,District 9 ,,,,LA,,,AVOYELLES,,,,,,,0,,,,,56,,, +RPEC Member ,at Large ,,,,LA,,,AVOYELLES,"Jason Aymond, II",1281 Hwy. 1188,,Hessmer,LA,71341,5,,,,,64,,3/11/2009,Mr. Aymond +RPEC Member ,at Large ,,,,LA,,,AVOYELLES,Woodruff Brouillette,262 Chauffield Elmer Rd.,,Marksville,LA,71351,5,,,,,64,,3/11/2009,Ms. Brouillette +RPEC Member ,at Large ,,,,LA,,,AVOYELLES,Terry Cooley,3471 hwy 454,,Pineville,LA,71360,5,,,,,64,,3/11/2009,Ms. Cooley +RPEC Member ,at Large ,,,,LA,,,AVOYELLES,Elizabeth Dupuy,4606 Hwy. 107,,Marksville,LA,71351,5,,,,,64,,3/11/2009,Ms. Dupuy +RPEC Member ,at Large ,,,,LA,,,AVOYELLES,I. B. Lemoine,1909 Previt St.,,Mansura,LA,71350,5,,,,,64,,3/11/2009,Mr. Lemoine +RPEC Member ,District 1 ,,,,LA,,,AVOYELLES,Lance R. Dupuy,4606 Hwy. 107,,Marksville,LA,71351,5,,,,,66,,3/11/2009,Mr. Dupuy +RPEC Member ,District 2 ,,,,LA,,,AVOYELLES,"Kirby Roy, III",581 Little Corner,,Hessmer,LA,71341,5,,,,,66,,3/11/2009, +RPEC Member ,District 3 ,,,,LA,,,AVOYELLES,,,,,,,0,,,,,66,,, +RPEC Member ,District 4 ,,,,LA,,,AVOYELLES,Rayford Laborde,1039 Hwy. 1188,,Hessmer,LA,71341,5,,,,,66,,3/11/2009, +RPEC Member ,District 5 ,,,,LA,,,AVOYELLES,Dennis Bivens,292 Dr. T. Doos Rd.,,Mansura,LA,71350,5,,,,,66,,3/11/2009,Mr. Bivens +RPEC Member ,District 6 ,,,,LA,,,AVOYELLES,Van Kogis,4606 Hwy. 107,,Marksville,LA,71351,5,,,,,66,,3/11/2009, +RPEC Member ,District 7 ,,,,LA,,,AVOYELLES,Marguerite Constantine,851 Couvillion St.,,Moreauville,LA,71355,5,,,,,66,,3/11/2009,Ms. Constantine +RPEC Member ,District 8 ,,,,LA,,,AVOYELLES,,,,,,,0,,,,,66,,, +RPEC Member ,District 9 ,,,,LA,,,AVOYELLES,,,,,,,0,,,,,66,,, +Sheriff ,,675 Government St.,,Marksville,LA,71351,318-253-4000,AVOYELLES,Douglas Anderson,675 Government St.,,Marksville,LA,71351,5,318-941-2857,W,M,D,225,6/30/2012,7/1/2008, +Clerk of Court ,,P. O. Box 219,,Marksville,LA,71351,318-253-7523,AVOYELLES,"""Sammy"" Couvillon",P. O. Box 219,,Marksville,LA,71351,5,318-253-5631,W,M,D,230,6/30/2012,7/1/2008,Mr. Couvillion +Assessor ,,"312 N. Main St., Courthouse",,Marksville,LA,71351,318-253-4507,AVOYELLES,"""Emeric"" Dupuy",P.O. Box 484,,Cottonport,LA,71327,5,318-876-3437,W,M,D,235,12/31/2012,1/1/2009,Mr. Dupuy +Coroner ,,P.O. Box 1529,,Marksville,LA,71351,318-253-7077,AVOYELLES,L.J. Mayeux,P.O. Box 1529,,Marksville,LA,71351,5,318-253-5392,W,M,D,240,3/25/2012,3/24/2008,Mr. Mayeux +Police Juror,District 1,"312 N. Main St., Suite D",,Marksville,LA,71351,318-253-9208,AVOYELLES,Larry K. Sayes,157 Larry Sayes Rd.,,Vick,LA,71331,5,318-253-5608,W,M,D,245,1/8/2012,1/14/2008,Mr. Sayes +Police Juror ,District 2 ,"312 N. Main St., Suite D",,Marksville,LA,71351,318-253-9208,AVOYELLES,"""Mickey"" Romano",1238 Hwy. 1194,,Marksville,LA,71351,5,318-253-7700,W,M,D,245,1/8/2012,1/14/2008,Mr. Romano +Police Juror ,District 3 ,"312 N. Main St., Suite D",,Marksville,LA,71351,318-253-9208,AVOYELLES,Mark Borrel,532 North Washington St.,,Marksville,LA,71351,5,318-253-7128,W,M,D,245,1/8/2012,1/14/2008,Mr. Borrel +Police Juror ,District 4 ,"312 N. Main St., Suite D",,Marksville,LA,71351,318-253-9208,AVOYELLES,Louie Laborde,626 Willow Dr.,,Cottonport,LA,71327,5,318-876-2087,W,M,D,245,1/8/2012,1/14/2008,Mr. Laborde +Police Juror ,District 5 ,"312 N. Main St., Suite D",,Marksville,LA,71351,318-253-9208,AVOYELLES,"Anthony ""Twine"" Desselle",444 Lewis St.,,Marksville,LA,71351,5,318-253-8730,B,M,D,245,1/8/2012,1/14/2008,Mr. Desselle +Police Juror ,District 6 ,"312 N. Main St., Suite D",,Marksville,LA,71351,318-253-9208,AVOYELLES,Francis Keller,P.O. Box 374,,Bunkie,LA,71322,5,318-201-8499,B,M,D,245,1/8/2012,1/14/2008,Mr. Keller +Police Juror ,District 7 ,"312 N. Main St., Suite D",,Marksville,LA,71351,318-253-9208,AVOYELLES,Gary Plauche,P.O. Box 97,,Plaucheville,LA,71362,5,318-922-3178,W,M,D,245,1/8/2012,1/14/2008,Mr. Plauche +Police Juror ,District 8 ,"312 N. Main St., Suite D",,Marksville,LA,71351,318-253-9208,AVOYELLES,Wade Ducote,P.O. Box 351,,Bunkie,LA,71322,5,318-346-2128,W,M,D,245,1/8/2012,1/14/2008,Mr. Ducote +Police Juror ,District 9 ,"312 N. Main St., Suite D",,Marksville,LA,71351,318-253-9208,AVOYELLES,George L. Mayeaux,143 Pecan Grove Rd.,,Simmesport,LA,71369,5,318-941-5356,W,M,D,245,1/8/2012,1/14/2008,Mr. Mayeaux +City Judge ,"City Court, City of Bunkie ",P. O. Box 74,,Bunkie,LA,71322,318-346-2948,AVOYELLES,James H. Mixon,P.O. Box 83,,Bunkie,LA,71322,5,318-346-6616,W,M,D,250,12/31/2014,1/1/2009,Judge Mixon +City Judge ,"City Court, City of Marksville ","440 N. Main St., Suite 4",,Marksville,LA,71351,318-253-6423,AVOYELLES,"Angelo Piazza, III",P.O. Box 429,,Marksville,LA,71351,5,318-253-6423,W,M,D,250,12/31/2014,1/1/2009,Judge Piazza +City Marshal ,"City Court, City of Bunkie ",P. O. Box 74,,Bunkie,LA,71322,318-346-7250,AVOYELLES,Fred Carmouche,P. O. Box 1045,,Bunkie,LA,71322,5,318-447-1254,W,M,R,250,12/31/2014,1/1/2009,Marshal Carmouche +City Marshal ,"City Court, City of Marksville ","440 N. Main St., Suite 4",,Marksville,LA,71351,318-253-4481,AVOYELLES,Floyd Voinche,2951 Hwy. 1192,,Marksville,LA,71351,5,318-253-6188,W,M,D,250,12/31/2014,1/1/2009,Marshal Voinche +Member of School Board ,District 1 ,221 Tunica Dr. W.,,Marksville,LA,71351,318-240-0201,AVOYELLES,Freeman Ford,P.O. Box 128,,Marksville,LA,71351,5,318-253-8931,B,M,D,255,12/31/2010,1/1/2007,Mr. Ford +Member of School Board ,District 2 ,221 Tunica Dr. W.,,Marksville,LA,71351,318-240-0201,AVOYELLES,Lynn Deloach,P.O. Box 99,,Effie,LA,71331,5,318-253-8474,W,M,D,255,12/31/2010,1/1/2007,Mr. Deloach +Member of School Board ,District 3 ,221 Tunica Dr. W.,,Marksville,LA,71351,318-240-0201,AVOYELLES,"Carlos A. Mayeux, Jr.",P.O. Box 800,,Hamburg,LA,71339,5,318-985-2958,W,M,D,255,12/31/2010,1/1/2007,Mr. Mayeux +Member of School Board ,District 4 ,221 Tunica Dr. W.,,Marksville,LA,71351,318-240-0201,AVOYELLES,Ricky A. Juneau,3559 Hwy. 115,,Hessmer,LA,71341,5,318-563-8478,W,M,R,255,12/31/2010,1/1/2007,Mr. Juneau +Member of School Board ,District 5 ,221 Tunica Dr. W.,,Marksville,LA,71351,318-240-0201,AVOYELLES,Shelia Blackman Dupas,P.O. Box 205,,Mansura,LA,71350,5,318-964-2748,B,F,D,255,12/31/2010,1/1/2007,Mr. Dupas +Member of School Board ,District 6 ,221 Tunica Dr. W.,,Marksville,LA,71351,318-240-0201,AVOYELLES,Lizzie A. Ned,P.O. Box 352,,Bunkie,LA,71322,5,318-346-4372,B,F,D,255,12/31/2010,1/1/2007,Ms. Ned +Member of School Board ,District 7 ,221 Tunica Dr. W.,,Marksville,LA,71351,318-240-0201,AVOYELLES,"Jim ""Doc"" Guillory",P.O. Box 114,,Plaucheville,LA,71362,5,318-922-3722,W,M,R,255,12/31/2010,1/1/2007,Mr. Guillory +Member of School Board ,District 8 ,221 Tunica Dr. W.,,Marksville,LA,71351,318-240-0201,AVOYELLES,Van Kojis,P.O. Box 203,,Bunkie,LA,71322,5,318-346-7004,W,M,R,255,12/31/2010,1/1/2007,Mr. Kojis +Member of School Board ,District 9 ,221 Tunica Dr. W.,,Marksville,LA,71351,,AVOYELLES,John Lemoine,930 Tunica Dr.,,Marksville,LA,71351,5,318-253-7253,W,M,D,255,12/31/2010,1/1/2007,Mr. Lemoine +Justice of the Peace ,Justice of the Peace Ward 1 ,239 Hwy. 107,,,LA,71323,318-253-4707,AVOYELLES,"""Sam"" Piazza",2898 Effie Hwy.,,Deville,LA,71328,5,318-240-8660,W,M,D,265,12/31/2014,1/1/2009,Mr. Piazza +Justice of the Peace ,Justice of the Peace Ward 3 ,P. O. Box 663,,Mansura,LA,71350,318-964-2097,AVOYELLES,Sterling Hayes,2326 LeGlise St.,,Mansura,LA,71350,5,318-964-2097,B,M,D,265,12/31/2014,1/1/2009,Mr. Hayes +Justice of the Peace ,Justice of the Peace Ward 4 ,P. O. Box 185,,Hessmer,LA,71341,318-563-8346,AVOYELLES,Gerald Roy,P.O. Box 185,,Hessmer,LA,71341,5,318-563-8346,W,M,D,265,12/31/2014,1/1/2009,Mr. Roy +Justice of the Peace ,Justice of the Peace Ward 5 ,779 Hwy. 1194,,Marksville,LA,71351,318-253-6182,AVOYELLES,"Jimmy ""J.T."" Guillot",779 Hwy. 1194,,Marksville,LA,71351,5,318-253-6182,W,M,D,265,12/31/2014,1/1/2009,Mr. Guillot +Justice of the Peace ,Justice of the Peace Ward 6 ,791 Big Bend Rd.,,Moreauville,LA,71355,318-997-2129,AVOYELLES,"Eugenia ""Geane"" Desselle",791 Big Bend Rd.,,Moreauville,LA,71355,5,318-997-2129,W,F,D,265,12/31/2014,1/1/2009,Ms. Desselle +Justice of the Peace ,Justice of the Peace Ward 7 ,2254 Hwy. 105,,Simmesport,LA,71369,318-941-2843,AVOYELLES,"Roger Adams, Sr.",2254 Hwy. 105,,Simmesport,LA,71369,5,318-941-2469,B,M,D,265,12/31/2014,1/1/2009,Mr. Adams +Justice of the Peace ,Justice of the Peace Ward 8 ,P. O. Box 302,,Dupont,LA,71329,318-922-3785,AVOYELLES,Ronald A. McDonald,206 English Road,,Plaucheville,LA,71362,5,318-922-3746,W,M,R,265,12/31/2014,1/1/2009,Mr. McDonald +Justice of the Peace ,Justice of the Peace Ward 9 ,P. O. Box 210,,Cottonport,LA,71327,318-876-3498,AVOYELLES,Chris J. Lemoine,778 Choupique Ln.,,Cottonport,LA,71327,5,318-876-3480,W,M,D,265,12/31/2014,1/1/2009,Mr. Lemoine +Justice of the Peace ,Justice of the Peace Ward 11 ,897 S. Bayou Des Glaise Rd.,,Cottonport,LA,71327,,AVOYELLES,Robert J. Lemoine,897 S. Bayou DeGlaise,,Cottonport,LA,71327,5,318-985-2405,W,M,D,265,12/31/2014,1/1/2009,Mr. Lemoine +Constable ,Justice of the Peace Ward 1 ,1771 Hwy. 107,,Effie,LA,71331,318-253-5591,AVOYELLES,John M. Hathorn,1771 Hwy. 107,,Effie,LA,71331,5,318-253-5591,W,M,D,267,12/31/2014,1/1/2009,Mr. Hathorn +Constable ,Justice of the Peace Ward 3 ,2118 Regard St.,,Mansura,LA,71350,318-964-2433,AVOYELLES,Bert Lemoine,2118 Regard St.,,Mansura,LA,71350,5,318-964-2433,W,M,D,267,12/31/2014,1/1/2009,Mr. Lemoine +Constable ,Justice of the Peace Ward 4 ,369 Jacks Rd.,,Hessmer,LA,71341,318-563-4430,AVOYELLES,Marvin Roy,369 Jacks Rd.,,Hessmer,LA,71341,5,318-563-4430,W,M,D,267,12/31/2014,1/1/2009,Mr. Roy +Constable ,Justice of the Peace Ward 5 ,438 German Bayou Rd.,,Marksville,LA,71351,318-253-4781,AVOYELLES,Michele Guillot,795 Hwy. 1194,,Marksville,LA,71351,5,318-253-4242,W,F,D,267,12/31/2014,1/1/2009,Mr. Guilliot +Constable ,Justice of the Peace Ward 6 ,4751 N. Bayou Des Glaise,,Moreauville,LA,71355,318-447-1475,AVOYELLES,Ernest Desselle,761 Big Bend Rd.,,Moreauville,LA,71355,5,318-997-2689,W,M,D,267,12/31/2014,1/1/2009,Mr. Desselle +Constable ,Justice of the Peace Ward 7 ,P.O. Box 526,,Simmesport,LA,71369,318-941-2520,AVOYELLES,Sylvester Callihan,P.O. Box 373,,Simmesport,LA,71369,5,318-941-2560,B,M,D,267,12/31/2014,1/1/2009,Mr. Callihan +Constable ,Justice of the Peace Ward 8 ,1121 Hwy. 1181,,Plaucheville,LA,71362,318-922-3176,AVOYELLES,"Leon ""Ray"" Rabalais",1121 Hwy. 1181,,Plaucheville,LA,71362,5,318-922-3176,W,M,D,267,12/31/2014,1/1/2009,Mr. Rabalais +Constable ,Justice of the Peace Ward 9 ,3688 Hwy. 29,,Cottonport,LA,71327,318-876-2470,AVOYELLES,Jason Bergeron,146 Bergeron Ln.,,Cottonport,LA,71327,5,318-305-1394,W,M,D,267,12/31/2014,1/1/2009,Mr. Bergeron +Constable ,Justice of the Peace Ward 11 ,P.O. Box 244,,Moreauville,LA,71355,318-985-2183,AVOYELLES,Bert Bordelon,220 Dufour St.,,Moreauville,LA,71355,5,318-985-2183,W,M,D,267,12/31/2014,1/1/2009,Mr. Bordelon +Mayor ,City of Bunkie ,P. O. Box 630,,Bunkie,LA,,318-346-7663,AVOYELLES,"Gerard C. Moreau, Jr.",218 St. John St.,,Bunkie,LA,71322,5,318-346-7829,W,M,D,300,6/30/2010,7/1/2006,Mayor Moreau +Mayor ,City of Marksville ,427 N. Washington St.,,Marksville,LA,,318-253-9500,AVOYELLES,Richard Michel,P.O. Box 159,,Marksville,LA,71351,5,318-253-7547,W,M,D,300,6/30/2010,7/1/2006,Mayor Michel +Mayor ,Town of Cottonport ,P. O. Box 118,,Cottonport,LA,,318-876-3485,AVOYELLES,Cleveland Carmouche,P. O. Box 49,,Cottonport,LA,71327,5,318-876-2227,W,M,D,300,12/31/2012,1/1/2009,Mayor Carmouche +Mayor ,Town of Evergreen ,P. O. Box 85,,Evergreen,LA,,318-346-9844,AVOYELLES,John M. Armand,P.O. Box 291,,Evergreen,LA,71333,5,318-346-9181,W,M,R,300,12/31/2010,1/1/2007,Mr. Armand +Mayor ,Town of Mansura ,P. O. Box 157,,Mansura,LA,,318-964-2152,AVOYELLES,"Kenneth Pickett, Sr.",P.O. Box 214,,Mansura,LA,71350,5,318-964-2208,B,M,D,300,12/31/2010,1/1/2007,Mr. Pickett +Mayor ,Town of Simmesport ,P. O. Box 145,,Simmesport,LA,,318-941-2493,AVOYELLES,Eric John Rusk,P. O. Box 21,,Simmesport,LA,71369,5,318-941-5413,W,M,D,300,12/31/2012,1/1/2009,Mayor Rusk +Mayor ,Village of Hessmer ,P. O. Box 125,,Hessmer,LA,,318-563-4511,AVOYELLES,Lynn Bordelon,P.O. Box 52,,Hessmer,LA,71341,5,318-563-8376,W,M,R,300,12/31/2012,1/1/2009,Mayor +Mayor ,Village of Moreauville ,P. O. Box 57,,Moreauville,LA,,318-985-2338,AVOYELLES,Lionel Bordelon,234 Tassin St.,,Moreauville,LA,71355,5,318-985-2708,W,M,D,300,12/31/2010,1/1/2007,Mr. Bordelon +Mayor ,Village of Plaucheville ,P. O. Box 10,,Plaucheville,LA,,318-922-3111,AVOYELLES,Mona Rabalais,P. O. Box 85,,Plaucheville,LA,71362,5,318-922-3828,W,F,D,300,12/31/2012,1/1/2009,Mayor Rabalais +Chief of Police ,City of Bunkie ,P. O. Box 630,,Bunkie,LA,71322,318-346-7663,AVOYELLES,Mary L. Fanara,207 N. Briarwood Dr.,,Bunkie,LA,71322,5,318-346-6992,W,F,D,305,6/30/2010,7/1/2006,Chief Fanara +Chief of Police ,Town of Cottonport ,P. O. Box 118,,Cottonport,LA,71327,318-876-3485,AVOYELLES,Gerald Mayeux,P. O. Box 575,,Cottonport,LA,71327,5,318-876-2476,W,M,D,305,12/31/2012,1/1/2009,Chief Mayeux +Chief of Police ,Town of Mansura ,P. O. Box 157,,Mansura,LA,71350,318-964-2152,AVOYELLES,John Johnson,P.O. Box 732,,Mansura,LA,71350,5,318-964-5420,B,M,D,305,12/31/2010,1/1/2007,Mr. Johnson +Chief of Police ,Town of Simmesport ,P. O. Box 145,,Simmesport,LA,71369,318-941-2493,AVOYELLES,John L. Moreau,P. O. Box 954,,Simmesport,LA,71369,5,337-654-7222,W,M,D,305,12/31/2012,1/1/2009,Chief Moreau +Chief of Police ,Village of Hessmer ,P. O. Box 125,,Hessmer,LA,71341-0125 ,318-563-4511,AVOYELLES,Kenneth Smith,P. O. Box 396,,Hessmer,LA,71341,5,318-305-1979,W,M,D,305,12/31/2012,1/1/2009,Chief Smith +Marshal ,Town of Evergreen ,P. O. Box 85,,Evergreen,LA,71333,318-346-9014,AVOYELLES,David Blanchard,P.O. Box 283,,Evergreen,LA,71333,5,318-346-2537,W,M,R,305,12/31/2010,1/1/2007,Mr. Blanchard +Alderman at Large ,City of Bunkie ,P. O. Box 630,,Bunkie,LA,71322,318-346-7663,AVOYELLES,"Charles ""Chuck"" Descant",205 N. Gayle St.,,Bunkie,LA,71322,5,318-346-4386,W,M,D,308,6/30/2010,7/1/2006,Mr. Descant +Alderman at Large ,Town of Simmesport ,P. O. Box 145,,Simmesport,LA,71369,,AVOYELLES,Charles Austin,P.O. Box 934,,Simmesport,LA,71369,5,318-941-5858,W,M,D,308,12/31/2012,1/1/2009,Mr. Austin +Council Member at Large ,Town of Cottonport ,,,,LA,,,AVOYELLES,Curtis Francisco,P.O. Box 951,,Cottonport,LA,71327,5,318-876-2633,B,M,D,308,12/31/2012,1/1/2009,Mr. Francisco +Alderman ,"District 1, City of Bunkie ",P. O. Box 630,,Bunkie,LA,71322,318-346-7663,AVOYELLES,"Lemuel ""Lem"" Bassett",P.O. Box 75,,Bunkie,LA,71322,5,318-346-2656,B,M,D,310,6/30/2010,7/1/2006,Mr. Bassett +Alderman ,"District 1, City of Marksville ",427 N. Washington St.,,Marksville,LA,71351-2490,318-253-9500,AVOYELLES,Earl R. Adams,641 N. Preston St.,,Marksville,LA,71351,5,318-623-5145,W,M,D,310,6/30/2010,7/1/2006,Mr. Adams +Alderman ,"District 1, Town of Simmesport ",P. O. Box 145,,Simmesport,LA,71369,318-941-2493,AVOYELLES,Ted Turner,P. O. Box 353,,Simmesport,LA,71369,5,318-941-2269,W,M,D,310,12/31/2012,1/1/2009,Mr. Turner +Alderman ,"District 2, City of Bunkie ",P. O. Box 630,,Bunkie,LA,71322,318-346-7663,AVOYELLES,Craig W. Foster,P.O. Box 1314,,Bunkie,LA,71322,5,318-346-9346,B,M,D,310,6/30/2010,4/10/2007,Mr. Foster +Alderman ,"District 2, City of Bunkie ",P. O. Box 630,,Bunkie,LA,71322,318-346-7663,AVOYELLES,"Craig W. Foster, ",108 N. Elm St.,,Bunkie,LA,71322-1267,10,318-346-9346,B,M,D,310,,, +Alderman ,"District 2, City of Marksville ",427 N. Washington St.,,Marksville,LA,71351-2490,318-253-9500,AVOYELLES,Dale J. Bernard,353 Oak St.,,Marksville,LA,71351,5,318-253-7379,W,M,D,310,6/30/2010,7/1/2006,Mr. Bernard +Alderman ,"District 2, Town of Simmesport ",P. O. Box 145,,Simmesport,LA,71369,318-941-2493,AVOYELLES,Kenneth L. Marsh,P.O. Box 438,,Simmesport,LA,71369,5,318-941-2525,W,M,D,310,12/31/2012,1/1/2009,Mr. Marsh +Alderman ,"District 3, City of Bunkie ",P. O. Box 630,,Bunkie,LA,71322,318-346-7663,AVOYELLES,Travis J. Armand,515 Pershing Hwy.,,Bunkie,LA,71322,5,318-346-2993,W,M,D,310,6/30/2010,7/1/2006,Mr. Armand +Alderman ,"District 3, City of Marksville ",427 N. Washington St.,,Marksville,LA,71351-2490,318-253-9500,AVOYELLES,"Elliot ""Pete Komola"" Jordan",P.O. Box 1151,,Marksville,LA,71351,5,318-201-8299,B,M,D,310,6/30/2010,7/1/2006,Mr. Jordan +Alderman ,"District 3, Town of Simmesport ",P. O. Box 145,,Simmesport,LA,71369,318-941-2493,AVOYELLES,Myron Brown,P.O. Box 761,,Simmesport,LA,71369,5,318-941-2635,B,M,D,310,12/31/2012,1/1/2009,Mr. Brown +Alderman ,"District 4, City of Bunkie ",P. O. Box 630,,Bunkie,LA,71322,318-346-7663,AVOYELLES,Bruce L. Coulon,P.O. Box 57,,Bunkie,LA,71322,5,318-346-6975,W,M,D,310,6/30/2010,7/1/2006,Mr. Coulon +Alderman ,"District 4, City of Bunkie ",P. O. Box 630,,Bunkie,LA,71322,318-346-7663,AVOYELLES,"Clayton ""Rick"" Henderson, ",109 S. Sweetbriar Dr.,,Bunkie,LA,71322-1930,10,318-346-4747,W,M,R,310,,, +Alderman ,"District 4, City of Marksville ",427 N. Washington St.,,Marksville,LA,71351-2490,318-253-9500,AVOYELLES,Joyce P. Prier,613 Richelieu Parkway,,Marksville,LA,71351,5,318-253-7076,B,F,D,310,6/30/2010,7/1/2006,Ms. Prier +Alderman ,"District 4, Town of Simmesport ",P. O. Box 145,,Simmesport,LA,71369,318-941-2493,AVOYELLES,Manuel Kirk,P.O. Box 335,,Simmesport,LA,71369,5,318-941-5172,B,M,D,310,12/31/2012,1/1/2009,Mr. Kirk +Alderman ,"District 5, City of Marksville ",427 N. Washington St.,,Marksville,LA,71351-2490,318-253-9500,AVOYELLES,Richard Tassin,760 South Main St.,,Marksville,LA,71351,5,318-253-6803,W,M,D,310,6/30/2010,7/1/2006,Mr. Tassin +Alderman ,Town of Evergreen ,P. O. Box 85,,Evergreen,LA,71333,318-346-9014,AVOYELLES,Wanda Clark,P. O. Box 246,,Evergreen,LA,71333,5,318-346-4488,W,F,R,310,12/31/2010,1/1/2007,Ms. Clark +Alderman ,Town of Evergreen ,P. O. Box 85,,Evergreen,LA,71333,318-346-9014,AVOYELLES,Michelle Mayeux Dupuy,P.O. Box 363,,Evergreen,LA,71333,5,318-346-7378,W,F,D,310,12/31/2010,1/1/2007,Ms. Dupuy +Alderman ,Town of Evergreen ,P. O. Box 85,,Evergreen,LA,71333,318-346-9014,AVOYELLES,Kathy Joffrion,P.O. Box 246,,Evergreen,LA,71333,5,318-346-4488,W,F,R,310,12/31/2010,7/21/2008,Ms. Joffrion +Alderman ,Town of Evergreen ,P. O. Box 85,,Evergreen,LA,71333,318-346-9014,AVOYELLES,Heather Oliver Juneau,P.O. Box 175,,Evergreen,LA,71333,5,318-346-1555,W,F,D,310,12/31/2010,1/1/2007,Ms. Juneau +Alderman ,Town of Evergreen ,P. O. Box 85,,Evergreen,LA,71333,318-346-9014,AVOYELLES,"Kenneth Thompson, ",P.O. Box 85,,Evergreen,LA,71333,5,,,,,310,,2/8/2010,Mr. Thompson +Alderman ,Town of Mansura ,P. O. Box 157,,Mansura,LA,71350,318-964-2152,AVOYELLES,Judy Augustine Bazert,P.O. Box 281,,Mansura,LA,71350,5,318-964-2919,B,F,D,310,12/31/2010,1/1/2007,Ms. Bazert +Alderman ,Town of Mansura ,P. O. Box 157,,Mansura,LA,71350,318-964-2152,AVOYELLES,Julia R. Boston,P.O. Box 305,,Mansura,LA,71350,5,318-964-2630,B,F,D,310,12/31/2010,1/1/2007,Ms. Boston +Alderman ,Town of Mansura ,P. O. Box 157,,Mansura,LA,71350,318-964-2152,AVOYELLES,Connie D. Ducote,P.O. Box 25,,Mansura,LA,71350,5,318-964-2375,W,F,D,310,12/31/2010,1/1/2007,Ms. Ducote +Alderman ,Town of Mansura ,P. O. Box 157,,Mansura,LA,71350,318-964-2152,AVOYELLES,Gaon E. Escude,P.O. Box 204,,Mansura,LA,71350,5,318-964-2339,W,M,,310,12/31/2010,1/1/2007,Mr. Escude +Alderman ,Town of Mansura ,P. O. Box 157,,Mansura,LA,71350,318-964-2152,AVOYELLES,Floyd A. Murray,P.O. Box 2306,,Mansura,LA,71350,5,318-964-2590,B,M,D,310,12/31/2010,1/1/2007,Mr. Murray +Alderman ,Village of Hessmer ,P. O. Box 125,,Hessmer,LA,71341-0125 ,318-563-4511,AVOYELLES,Susan Ducote Jeansonne,P.O. Box 387,,Hessmer,LA,71341,5,318-563-4980,W,F,D,310,12/31/2012,1/1/2009,Ms. Jeansonne +Alderman ,Village of Hessmer ,P. O. Box 125,,Hessmer,LA,71341-0125 ,318-563-4511,AVOYELLES,Scott R. Kelly,P.O. BVox 27,,Hessmer,LA,71341,5,318-563-8962,W,M,D,310,12/31/2012,1/1/2009,Mr. Kelly +Alderman ,Village of Hessmer ,P. O. Box 125,,Hessmer,LA,71341-0125 ,318-563-4511,AVOYELLES,"Robert ""Bobby"" Roy",P.O. Box 326,,Hessmer,LA,71341,5,318-563-4238,W,M,D,310,12/31/2012,1/1/2009,Mr. Roy +Alderman ,Village of Moreauville ,P. O. Box 57,,Moreauville,LA,71355,318-985-2338,AVOYELLES,"""Reggie"" Ducote",P.O. Box 158,,Moreauville,LA,71355,5,318-985-2410,W,M,,310,12/31/2010,1/1/2007,Mr. Ducote +Alderman ,Village of Moreauville ,P. O. Box 57,,Moreauville,LA,71355,318-985-2338,AVOYELLES,"Kenneth Farbe, Jr.",314 Dufour St.,,Moreauville,LA,71355,5,318-985-3251,W,M,,310,12/31/2010,1/1/2007,Mr. Farbe +Alderman ,Village of Moreauville ,P. O. Box 57,,Moreauville,LA,71355,318-985-2338,AVOYELLES,"Oscar O.P. Goody, Jr.",P.O. Box 271,,Moreauville,LA,71355,5,318-985-2179,B,M,D,310,12/31/2010,1/1/2007,Mr. Goody +Alderman ,Village of Plaucheville ,P. O. Box 10,,Plaucheville,LA,71362,318-922-3111,AVOYELLES,Garry Carter,P. O. Box 117,,Plaucheville,LA,71362,5,318-922-3812,W,M,D,310,12/31/2012,1/1/2009,Mr. Carter +Alderman ,Village of Plaucheville ,P. O. Box 10,,Plaucheville,LA,71362,318-922-3111,AVOYELLES,Linda Landrneau Gagnard,P. O. Box 168,,Plaucheville,LA,71362,5,318-922-3588,W,F,D,310,12/31/2012,1/1/2009,Ms. Gagnard +Alderman ,Village of Plaucheville ,P. O. Box 10,,Plaucheville,LA,71362,318-922-3111,AVOYELLES,Aaron Lemoine,P.O. Box 31,,Plaucheville,LA,71362,5,318-922-3255,W,M,D,310,12/31/2012,1/1/2009,Mr. Lemoine +Council Member ,"District 1, Town of Cottonport ",P. O. Box 118,,Cottonport,LA,71327,318-876-3485,AVOYELLES,Margaret Jenkins,P. O. Box 40,,Cottonport,LA,71327,5,318-876-3355,B,F,D,310,12/31/2012,1/1/2009,Ms. Jenkins +Council Member ,"District 2, Town of Cottonport ",P. O. Box 118,,Cottonport,LA,71327,318-876-3485,AVOYELLES,Kenneth Friels,P.O. Box 1216,,Cottonport,LA,71327,5,318-305-3473,B,M,D,310,12/31/2012,1/1/2009,Mr. Friels +Council Member ,"District 3, Town of Cottonport ",P. O. Box 118,,Cottonport,LA,71327,318-876-3485,AVOYELLES,Luke Welch,127 Pierre Dr.,,Cottonport,LA,71327,5,318-876-2753,W,M,R,310,12/31/2012,1/1/2009,Mr. Welch +Council Member ,"District 4, Town of Cottonport ",P. O. Box 118,,Cottonport,LA,71327,318-876-3485,AVOYELLES,Brenda Moore Bazile,P. O. Box 1166,,Cottonport,LA,71327,5,318-876-2147,B,F,D,310,12/31/2012,1/1/2009,Ms. Bazile +DPEC Member ,at Large ,,,,LA,,,BEAUREGARD,"Walter Thomas ""Tommy"" Brown",415 Ward Line Rd.,,DeRidder,LA,70634,5,337-462-2240,W,M,D,54,2/20/2012,2/20/2008,Mr. Brown +DPEC Member ,at Large ,,,,LA,,,BEAUREGARD,William M. Coleman,545 Lost Bridge Rd.,,Longville,LA,70652,5,337-526-6154,W,M,D,54,2/20/2012,2/20/2008,Mr. Coleman +DPEC Member ,at Large ,,,,LA,,,BEAUREGARD,"Robert ""Bo"" Rice",326 Branch St.,,DeRidder,LA,70634,5,337-462-0316,B,M,D,54,2/20/2012,2/20/2008,Mr. Rice +DPEC Member ,at Large ,,,,LA,,,BEAUREGARD,Wilma L. Sowells Scott,609 E. North St.,,DeRidder,LA,70634,5,337-463-7287,B,F,D,54,2/20/2012,2/20/2008,Ms. Scott +DPEC Member ,at Large ,,,,LA,,,BEAUREGARD,Ann Jackson Steward,P.O. Box 385,,DeRidder,LA,70634,5,337-463-5519,B,F,D,54,2/20/2012,2/20/2008,Ms. Steward +DPEC Member ,District 1 ,,,,LA,,,BEAUREGARD,"""Tim"" Myers",2018 Hwy 110 E.,,Singer,LA,70660,5,337-463-3822,W,M,D,56,2/20/2012,2/20/2008,Mr. Myers +DPEC Member ,District 2 ,,,,LA,,,BEAUREGARD,"N. R. ""Rusty"" Williamson",P.O. Box 501,,Merryville,LA,70653,5,337-825-6390,W,M,D,56,2/20/2012,2/20/2008,Mr. Williamson +DPEC Member ,District 3A ,,,,LA,,,BEAUREGARD,Hayward Steele,202 S. Helen St.,,DeRidder,LA,70634,5,337-463-4655,B,M,D,56,2/20/2012,2/20/2008,Mr. Steele +DPEC Member ,District 3B ,,,,LA,,,BEAUREGARD,,,,,,,0,,,,,56,,, +DPEC Member ,District 3C ,,,,LA,,,BEAUREGARD,"Dwayne ""Tink"" Reeves",P.O Box 185,,Longville,LA,70652,5,337-725-6270,W,M,D,56,2/20/2012,2/20/2008,Mr. Reeves +DPEC Member ,District 3D ,,,,LA,,,BEAUREGARD,,,,,,,0,,,,,56,,, +DPEC Member ,District 3E ,,,,LA,,,BEAUREGARD,,,,,,,0,,,,,56,,, +DPEC Member ,District 4A ,,,,LA,,,BEAUREGARD,,,,,,,0,,,,,56,,, +DPEC Member ,District 4B ,,,,LA,,,BEAUREGARD,,,,,,,0,,,,,56,,, +DPEC Member ,District 5 ,,,,LA,,,BEAUREGARD,,,,,,,0,,,,,56,,, +RPEC Member ,at Large ,,,,LA,,,BEAUREGARD,David R. Lestage,206 Nolen St.,,DeRidder,LA,70634,5,337-462-2656,W,M,R,64,2/20/2012,2/20/2008,Mr. Lestage +RPEC Member ,at Large ,,,,LA,,,BEAUREGARD,James R. Lestage,2603 Robert E. Lee Dr.,,DeRidder,LA,70634,5,337-462-1135,W,M,R,64,2/20/2012,2/20/2008,Mr. Lestage +RPEC Member ,District 1 ,,,,LA,,,BEAUREGARD,,,,,,,0,,,,,66,,, +RPEC Member ,District 2 ,,,,LA,,,BEAUREGARD,,,,,,,0,,,,,66,,, +RPEC Member ,District 3A ,,,,LA,,,BEAUREGARD,,,,,,,0,,,,,66,,, +RPEC Member ,District 3B ,,,,LA,,,BEAUREGARD,,,,,,,0,,,,,66,,, +RPEC Member ,District 3C ,,,,LA,,,BEAUREGARD,,,,,,,0,,,,,66,,, +RPEC Member ,District 3D ,,,,LA,,,BEAUREGARD,,,,,,,0,,,,,66,,, +RPEC Member ,District 3E ,,,,LA,,,BEAUREGARD,,,,,,,0,,,,,66,,, +RPEC Member ,District 4A ,,,,LA,,,BEAUREGARD,,,,,,,0,,,,,66,,, +RPEC Member ,District 4B ,,,,LA,,,BEAUREGARD,,,,,,,0,,,,,66,,, +RPEC Member ,District 5 ,,,,LA,,,BEAUREGARD,,,,,,,0,,,,,66,,, +Sheriff ,,P. O. Box 370,,DeRidder,LA,70634,337-463-3281,BEAUREGARD,Ricky L. Moses,P. O. Box 370,,DeRidder,LA,70634,5,337-462-0141,W,M,D,225,6/30/2012,7/1/2008,Sheriff Moses +Clerk of Court ,,P. O. Box 100,,DeRidder,LA,70634,337-463-8595,BEAUREGARD,Brian S. Lestage,P.O. Box 100,,DeRidder,LA,70634,5,337-463-4630,W,M,R,230,6/30/2012,7/1/2008,Mr. Lestage +Assessor ,,P. O. Box 477,,DeRidder,LA,70634,337-463-8945,BEAUREGARD,Bobby Cudd,150 Brookside Rd.,,DeRidder,LA,70634,5,337-463-8351,W,M,D,235,12/31/2012,1/1/2009,Mr. Cudd +Coroner ,,412 S. Pine Street,,DeRidder,LA,70634,337-463-9890,BEAUREGARD,Flynn A. Taylor,1332 Blankenship Dr.,,DeRidder,LA,70634,5,337-462-2659,W,M,R,240,3/25/2012,3/24/2008,Mr. Taylor +Police Juror,District 1,P. O. Box 310,,DeRidder,LA,70634,337-463-7019,BEAUREGARD,"Gerald M. ""Mike"" McLeod",P.O. Box 141,,Singer,LA,70660,5,337-786-2099,W,M,D,245,1/8/2012,1/14/2008,Mr. McLeod +Police Juror ,District 2 ,P. O. Box 310,,DeRidder,LA,70634,337-463-7019,BEAUREGARD,"N.R. ""Rusty"" Williamson",P.O. Box 501,,Merryville,LA,70653-5216,10,337-825-6390,W,M,D,245,1/8/2012,1/14/2008,Mr. Williamson +Police Juror ,District 3A ,P. O. Box 310,,DeRidder,LA,70634,337-463-7019,BEAUREGARD,Carlos Archield,1139 Lucius Dr.,,DeRidder,LA,70634,5,337-463-6426,B,M,,245,1/8/2012,1/14/2008,Mr. Archield +Police Juror ,District 3B ,P. O. Box 310,,DeRidder,LA,70634,337-463-7019,BEAUREGARD,"""Teddy"" Welch",210 Teddy Welch Rd.,,DeRidder,LA,70634,5,337-328-7270,W,M,D,245,1/8/2012,1/14/2008,Mr. Welch +Police Juror ,District 3C ,P. O. Box 310,,DeRidder,LA,70634,337-463-7019,BEAUREGARD,Rex Brumley,132 Michael Rd.,,DeRidder,LA,70634,5,337-463-6669,W,M,D,245,1/8/2012,1/14/2008,Mr. Brumley +Police Juror ,District 3D ,P. O. Box 310,,DeRidder,LA,70634,337-463-7019,BEAUREGARD,Gary D. Crowe,P.O. Box 386,,DeRidder,LA,70634,5,337-463-7142,W,M,D,245,1/8/2012,1/14/2008,Mr. Crowe +Police Juror ,District 3E ,P. O. Box 310,,DeRidder,LA,70634,337-463-7019,BEAUREGARD,Jerry L. Shirley,225 S. Texas St.,,DeRidder,LA,70634,5,337-463-4616,W,M,R,245,1/8/2012,1/14/2008,Mr. Shirley +Police Juror ,District 4A ,P. O. Box 310,,DeRidder,LA,70634,337-463-7019,BEAUREGARD,Bradley Wayne Harris,1205 S.A. Cooley Rd.,,Longville,LA,70652,5,337-725-6707,W,M,O,245,1/8/2012,1/14/2008,Mr. Harris +Police Juror ,District 4B ,P. O. Box 310,,DeRidder,LA,70634,337-463-7019,BEAUREGARD,Llewellyn Smith,416 Thunder Valley Rd.,,DeRidder,LA,70634,5,337-463-7238,W,M,R,245,1/8/2012,1/14/2008,Mr. Smith +Police Juror ,District 5 ,P. O. Box 310,,DeRidder,LA,70634,337-463-7019,BEAUREGARD,Merlin Schales,138 Merlin Schales Rd.,,DeRidder,LA,70634,5,337-463-3775,W,M,D,245,1/8/2012,1/14/2008,Mr. Schales +Member of School Board ,District 1 ,P. O. Drawer 938,,DeRidder,LA,70634,337-463-5551,BEAUREGARD,"Russell W. Havens, Jr.",190 Lane Rd.,,Fields,LA,70653,5,337-786-3450,O,M,,255,12/31/2010,1/1/2007,Mr. Havens +Member of School Board ,District 2 ,P. O. Drawer 938,,DeRidder,LA,70634,337-463-5551,BEAUREGARD,Anthony B. Carlson,2340 Hwy. 389,,Merryville,LA,70653,5,337-825-8169,W,M,D,255,12/31/2010,1/1/2007,Mr. Carlson +Member of School Board ,District 3A ,P. O. Drawer 938,,DeRidder,LA,70634,337-463-5551,BEAUREGARD,Marvin Simmons,1005 Lake Court Dr.,,DeRidder,LA,70634,5,337-462-0747,B,M,D,255,12/31/2010,1/1/2007,Mr. Simmons +Member of School Board ,District 3B ,P. O. Drawer 938,,DeRidder,LA,70634,,BEAUREGARD,"""Jimmy"" Barrett",192 Jimmy Barrett Rd.,,Dry Creek,LA,70637,5,337-328-7131,W,M,D,255,12/31/2010,1/1/2007,Mr. Barrett +Member of School Board ,District 3C ,P. O. Drawer 938,,DeRidder,LA,70634,337-463-5551,BEAUREGARD,David Q. Vidrine,160 Kerry St.,,DeRidder,LA,70634,5,337-462-0991,W,M,R,255,12/31/2010,1/1/2007,Mr. Vidrine +Member of School Board ,District 3D ,P. O. Drawer 938,,DeRidder,LA,70634,337-463-5551,BEAUREGARD,"""Gene"" Maddox",1611 Chriscott Dr.,,DeRidder,LA,70634,5,337-463-6533,W,M,D,255,12/31/2010,1/1/2007,Mr. Maddox +Member of School Board ,District 3E ,P. O. Drawer 938,,DeRidder,LA,70634,337-463-5551,BEAUREGARD,Stuart Hayes,1006 Michael Dr.,,DeRidder,LA,70634,5,337-463-5795,W,M,R,255,12/31/2010,1/1/2007,Mr. Hayes +Member of School Board ,District 4A ,P. O. Drawer 938,,DeRidder,LA,70634,337-463-5551,BEAUREGARD,Darrin Manuel,P.O. Box 205,,Longville,LA,70652,5,337-725-6676,W,M,D,255,12/31/2010,1/1/2007,Mr. Manuel +Member of School Board ,District 4B ,P. O. Drawer 938,,DeRidder,LA,70634,337-463-5551,BEAUREGARD,Jerry E. Cooley,139 Chester Davis Rd.,,DeRidder,LA,70634,5,337-463-8525,W,M,D,255,12/31/2010,1/1/2007,Mr. Cooley +Member of School Board ,District 5 ,,,,LA,,337-463-5551,BEAUREGARD,Don Gray,310 Don Gray Rd.,,DeRidder,LA,70634,5,337-463-3559,W,M,D,255,12/31/2010,1/1/2007,Mr. Gray +Justice of the Peace ,Justice of the Peace District 1 ,290 Ray Brown Rd.,,Fields,LA,70653,337-743-6375,BEAUREGARD,Allen Ray Brown,290 Ray Brown Rd.,,Fields,LA,70653,5,337-743-6375,W,M,R,265,12/31/2014,1/1/2009,Mr. Brown +Justice of the Peace ,Justice of the Peace District 2 ,P. O. Box 501,,Merryville,LA,70653,337-825-6390,BEAUREGARD,"Connie E. ""Sissy"" Williamson",P.O. Box 501,,Merryville,LA,70653,5,337-825-6390,W,F,D,265,12/31/2014,1/1/2009,Ms. Williamson +Justice of the Peace ,Justice of the Peace District 4 ,961 Newt Hodges Rd.,,Ragley,LA,70657,337-725-3175,BEAUREGARD,Clyde H. Dennis,961 Newt Hodges Rd.,,Ragley,LA,70657,5,337-725-3175,W,M,R,265,12/31/2014,1/1/2009,Mr. Dennis +Justice of the Peace ,Justice of the Peace District 5 ,1477 Hwy. 1147,,DeRidder,LA,70634,337-463-2758,BEAUREGARD,"""Ruthie"" Huckaby",1477 Hwy. 1147,,DeRidder,LA,70634,5,337-463-2758,W,F,D,265,12/31/2014,1/1/2009,Mr. Huckaby +Constable ,Justice of the Peace District 1 ,P.O. Box 104,,Singer,LA,70660,337-463-2599,BEAUREGARD,"Alfred ""Al"" Doyle",P.O. Box 104,,Singer,LA,70660,5,337-463-2599,W,M,D,267,12/31/2014,1/1/2009,Mr. Doyle +Constable ,Justice of the Peace District 2 ,P.O. Box 148,,Merryville,LA,70653,337-825-6418,BEAUREGARD,Micheal Whitehead,P. O. Box 88,,Merryville,LA,70653,5,337-764-4697,W,M,,267,12/31/2014,1/1/2009,Mr. Whitehead +Constable ,Justice of the Peace District 4 ,306 Burnett Loop,,Longville,LA,70652,337-725-3667,BEAUREGARD,"""Tony"" Deville",306 Burnett Lp.,,Longville,LA,70652,5,337-725-3667,W,M,D,267,12/31/2014,1/1/2009,Mr. Deville +Constable ,Justice of the Peace District 5 ,4239 Hwy. 113,,Sugartown,LA,70662,337-328-7186,BEAUREGARD,Ray Dickens,4239 Hwy. 113,,Sugartown,LA,70662,5,337-328-7186,W,M,D,267,12/31/2014,1/1/2009,Mr. Dickens +Mayor ,Town of Merryville ,P. O. Box 607,,Merryville,LA,,337-825-8740,BEAUREGARD,Charles E. Hudson,P.O. Box 460,,Merryville,LA,70653,5,337-825-6512,W,M,D,300,6/30/2010,7/1/2006,Mr. Hudson +Mayor ,Town of Merryville ,P. O. Box 607,,Merryville,LA,,337-825-8740,BEAUREGARD,"Charles E. Hudson, ",7138 Hwy 110 W.,,Merryville,LA,70653,5,337-825-6512,W,M,D,300,,, +Chief of Police ,Town of Merryville ,P. O. Box 607,,Merryville,LA,70653,337-825-8740,BEAUREGARD,"James Longoria, ",3992 Watson St.,,Merryville,LA,70653-3341,10,337-375-4691,W,M,D,305,,, +Chief of Police ,Town of Merryville ,P. O. Box 607,,Merryville,LA,70653,337-825-8740,BEAUREGARD,James E. Longoria,3992 S. Watson St.,,Merryville,LA,70653,5,337-825-9599,W,M,D,305,6/30/2010,7/1/2006,Mr. Longoria +Alderman ,Town of Merryville ,P. O. Box 607,,Merryville,LA,70653,337-825-8740,BEAUREGARD,Cheryl Arnold,6026 Brown St.,,Merryville,LA,70653,5,337-825-8021,W,F,,310,6/30/2010,7/1/2006,Ms. Arnold +Alderman ,Town of Merryville ,P. O. Box 607,,Merryville,LA,70653,337-825-8740,BEAUREGARD,David Eaves,625 Spikes St.,,Merryville,LA,70653,5,337-396-7084,W,M,D,310,6/30/2010,7/1/2006,Mr. Eaves +Alderman ,Town of Merryville ,P. O. Box 607,,Merryville,LA,70653,337-825-8740,BEAUREGARD,Beaver Knighton,P.O. Box 397,,Merryville,LA,70653,5,337-825-8616,B,M,D,310,6/30/2010,7/1/2006,Mr. Knighton +Alderman ,Town of Merryville ,P. O. Box 607,,Merryville,LA,70653,337-825-8740,BEAUREGARD,Carolyn Rhodes,3027 Tyler St.,,Merryville,LA,70653,5,337-825-6309,W,F,D,310,6/30/2010,7/1/2006,Ms. Rhodes +Alderman ,Town of Merryville ,P. O. Box 607,,Merryville,LA,70653,337-825-8740,BEAUREGARD,Webb Stark,421 Walker St.,,Merryville,LA,70653,5,337-825-1241,W,M,D,310,6/30/2010,7/1/2006,Mr. Stark +DPEC Member ,at Large ,,,,LA,,,BIENVILLE,Roy Lilly,P.O. Box 730,,Gibsland,LA,71028,5,318-843-6650,W,M,D,54,2/20/2012,2/20/2008,Mr. Lilly +DPEC Member ,District 1 ,,,,LA,,,BIENVILLE,,,,,,,0,,,,,56,,, +DPEC Member ,District 2 ,,,,LA,,,BIENVILLE,,,,,,,0,,,,,56,,, +DPEC Member ,District 3 ,,,,LA,,,BIENVILLE,,,,,,,0,,,,,56,,, +DPEC Member ,District 4 ,,,,LA,,,BIENVILLE,,,,,,,0,,,,,56,,, +DPEC Member ,District 5 ,,,,LA,,,BIENVILLE,,,,,,,0,,,,,56,,, +DPEC Member ,District 6 ,,,,LA,,,BIENVILLE,,,,,,,0,,,,,56,,, +DPEC Member ,District 7 ,,,,LA,,,BIENVILLE,,,,,,,0,,,,,56,,, +RPEC Member ,at Large ,,,,LA,,,BIENVILLE,Kathy Conville Sims,210 Pinecrest Rd.,,Arcadia,LA,71001,5,318-263-9316,W,F,R,64,2/20/2012,2/20/2008,Ms. Sims +RPEC Member ,at Large ,,,,LA,,,BIENVILLE,Scott G. Yarnell,175 Page Rd.,,Castor,LA,71016-4262,10,318-544-9313,W,M,R,64,2/20/2012,2/20/2008,Mr. Yarnell +RPEC Member ,District 1 ,,,,LA,,,BIENVILLE,Kathy Sims,210 Pinecrest Rd.,,Arcadia,LA,71001,5,,,,,66,,4/7/2005,Ms. Sims +RPEC Member ,District 2 ,,,,LA,,,BIENVILLE,,,,,,,0,,,,,66,,, +RPEC Member ,District 3 ,,,,LA,,,BIENVILLE,,,,,,,0,,,,,66,,, +RPEC Member ,District 4 ,,,,LA,,,BIENVILLE,,,,,,,0,,,,,66,,, +RPEC Member ,District 5 ,,,,LA,,,BIENVILLE,,,,,,,0,,,,,66,,, +RPEC Member ,District 6 ,,,,LA,,,BIENVILLE,,,,,,,0,,,,,66,,, +RPEC Member ,District 7 ,,,,LA,,,BIENVILLE,,,,,,,0,,,,,66,,, +Sheriff ,,P. O. Box 328,,Arcadia,LA,71001,318-263-2215,BIENVILLE,John E. Ballance,P.O. Box 328,,Arcadia,LA,71001,5,318-263-2215,W,M,D,225,6/30/2012,7/1/2008,Sheriff Ballance +Clerk of Court ,,"100 Courthouse Dr., Rm. 100",,Arcadia,LA,71001,318-263-2123,BIENVILLE,"James W. ""Jim"" Martin","100 Courthouse Dr., Rm. 100",,Arcadia,LA,71001,5,318-263-2123,W,M,D,230,6/30/2012,7/1/2008,Mr. Martin +Assessor ,,2705 Beech St.,,Arcadia,LA,71001,318-263-2214,BIENVILLE,Jimmie D. Smith,1501 Myrtle St.,,Arcadia,LA,71001,5,318-263-9748,W,M,D,235,12/31/2012,1/1/2009,Mr. Smith +Coroner ,,"970 First St.,",,Arcadia,LA,71001,318-263-7434,BIENVILLE,"""Don"" Smith",1969 Hazel St.,,Arcadia,LA,71001,5,318-263-8389,W,M,D,240,3/25/2012,3/24/2008,Mr. Smith +Police Juror,District 1,P. O. Box 479,,Arcadia,LA,71001,318-263-2019,BIENVILLE,"""Bill"" Sims",2342 Beech St.,,Arcadia,LA,71001,5,318-263-2317,W,M,O,245,1/8/2012,1/14/2008,Mr. Sims +Police Juror ,District 2 ,P. O. Box 479,,Arcadia,LA,71001,318-263-2019,BIENVILLE,Patrick O. Jefferson,3056 Johnson St.,,Arcadia,LA,71001,5,318-263-8723,B,M,D,245,1/8/2012,1/14/2008,Mr. Jefferson +Police Juror ,District 3 ,P. O. Box 479,,Arcadia,LA,71001,318-263-2019,BIENVILLE,Lee Thomas,P.O. Box 579,,Gibsland,LA,71028,5,318-843-6368,B,M,D,245,1/8/2012,1/14/2008,Mr. Thomas +Police Juror ,District 4 ,P. O. Box 479,,Arcadia,LA,71001,318-263-2019,BIENVILLE,Gregory R. Wilson,1419 Pietsch Rd.,,Ringgold,LA,71068,5,318-894-3125,W,M,D,245,1/8/2012,1/14/2008,Mr. Wilson +Police Juror ,District 5 ,P. O. Box 479,,Arcadia,LA,71001,318-263-2019,BIENVILLE,"""Tony"" Lawson",3046 Hwy. 154,,Ringgold,LA,71068,5,318-894-3222,W,M,,245,1/8/2012,1/14/2008,Mr. Lawson +Police Juror ,District 6 ,P. O. Box 479,,Arcadia,LA,71001,318-263-2019,BIENVILLE,Mike McCarthy,133 Gerald McCarthy Rd.,,Castor,LA,71016,5,318-544-2345,W,M,D,245,1/8/2012,1/14/2008,Mr. McCarthy +Police Juror ,District 7 ,P. O. Box 479,,Arcadia,LA,71001,318-263-2019,BIENVILLE,Raymond Earl Malone,1702 Shady Grove Rd.,,Saline,LA,71070,5,318-259-2830,B,M,D,245,1/8/2012,1/14/2008,Mr. Malone +Member of School Board ,District 1 ,P. O. Box 418,,Arcadia,LA,71001,318-263-9416,BIENVILLE,Dan K. Loe,1715 First St.,,Arcadia,LA,71001,5,318-263-8922,W,M,D,255,12/31/2010,1/1/2007,Mr. Loe +Member of School Board ,District 2 ,P. O. Box 418,,Arcadia,LA,71001,318-263-9416,BIENVILLE,Esther Ballard Sullivan,P.O. Box 153,,Arcadia,LA,71001,5,318-263-2193,B,F,,255,12/31/2010,1/1/2007,Ms. Sullivan +Member of School Board ,District 3 ,P. O. Box 418,,Arcadia,LA,71001,318-263-9416,BIENVILLE,Anthony V. Jenkins,P.O. Box 618,,Gibsland,LA,71028,5,318-843-9911,,,,255,12/31/2010,1/1/2007,Mr. Jenkins +Member of School Board ,District 4 ,P. O. Box 418,,Arcadia,LA,71001,318-263-9416,BIENVILLE,Bonita Reliford,1408 Wyatt St.,,Ringgold,LA,71068,5,318-894-9594,B,F,D,255,12/31/2010,1/1/2007,Mr. Reliford +Member of School Board ,District 5 ,P. O. Box 418,,Arcadia,LA,71001,318-263-9416,BIENVILLE,Martha Grigg,582 Dallas Rd.,,Ringgold,LA,71068,5,318-894-9479,W,F,D,255,12/31/2010,1/1/2007,Mr. Grigg +Member of School Board ,District 6 ,P. O. Box 418,,Arcadia,LA,71001,318-263-9416,BIENVILLE,Kenneth Larry Knotts,P.O. Box 6,,Saline,LA,71070,5,318-576-3675,W,M,D,255,12/31/2010,1/1/2007,Mr. Knotts +Member of School Board ,District 7 ,P. O. Box 418,,Arcadia,LA,71001,318-263-9416,BIENVILLE,Richard Walker,129 Brice Rd.,,Bienville,LA,71008,5,318-263-2410,,,,255,12/31/2010,1/1/2007,Mr. Walker +Justice of the Peace ,Justice of the Peace District 1 ,P. O. Box 158,,Arcadia,LA,71001,318-263-8807,BIENVILLE,David E. Cook,1844 Maple St.,,Arcadia,LA,71001,5,318-263-3735,B,M,,265,12/31/2014,1/1/2009,Mr. Cook +Justice of the Peace ,Justice of the Peace District 2 ,P. O. Box 268,,Gibsland,LA,71028,318-843-9747,BIENVILLE,Reginald Shaw,P.O. Box 268,,Gibsland,LA,71028,5,318-268-0794,B,M,,265,12/31/2014,1/1/2009,Mr. Shaw +Justice of the Peace ,Justice of the Peace District 3 ,819 Thompson Rd.,,Castor,LA,71016,318-544-2427,BIENVILLE,Jackie B. Sullivan,2769 Foster Arbor Rd.,,Castor,LA,71016,5,318-544-2427,W,F,,265,12/31/2014,1/1/2009,Mr. Sullivan +Justice of the Peace ,Justice of the Peace District 4 ,P. O. Box 5068,,Jamestown,LA,71045,318-894-3309,BIENVILLE,Ryanie O. Evans,P.O. Box 5068,,Jamestown,LA,71045,5,318-894-3309,W,M,,265,12/31/2014,1/1/2009,Mr. Evans +Justice of the Peace ,Justice of the Peace District 5 ,12056 Hwy. 501,,Saline,LA,71070,318-259-8451,BIENVILLE,David W. McConathy,1355 Sand Hill Rd.,,Quitman,LA,71268,5,318-259-8254,W,M,D,265,12/31/2014,1/1/2009,Mr. McConathy +Constable ,Justice of the Peace Ward 1 ,P.O. Box 186,,Arcadia,LA,71001,318-263-8699,BIENVILLE,Craig A. Jenkins,3120 Johnson St.,,Arcadia,LA,71001,5,318-263-8648,B,M,D,267,12/31/2014,1/1/2009,Mr. Jenkins +Constable ,Justice of the Peace Ward 2 ,1694 Hwy. 794,,Gibsland,LA,71028,318-843-6367,BIENVILLE,Darryl Ryder,1694 Hwy. 794,,Gibsland,LA,71028,5,318-843-6367,B,M,D,267,12/31/2014,1/1/2009,Mr. Ryder +Constable ,Justice of the Peace Ward 3 ,819 Thompson Rd.,,Castor,LA,71016,318-544-2427,BIENVILLE,Jack D. Sullivan,2769 Foster Arbor Rd.,,Castor,LA,71016,5,318-544-2427,W,M,,267,12/31/2014,1/1/2009,Mr. Sullivan +Constable ,Justice of the Peace Ward 4 ,P.O. Box 445,,Ringgold,LA,71068,318-894-3020,BIENVILLE,"Eugene L. ""Rudy"" Basinger",P.O. Box 445,,Ringgold,LA,71068,5,318-894-3020,W,M,,267,12/31/2014,1/1/2009,Mr. Basinger +Constable ,Justice of the Peace Ward 5 ,27624 Hwy. 9,,Bienville,LA,71008,318-385-9926,BIENVILLE,R. Yale Poland,27624 Hwy. 9,,Bienville,LA,71008,5,318-385-9926,W,M,,267,12/31/2014,1/1/2009,Mr. Poland +Mayor ,Town of Arcadia ,P. O. Box 767,,Arcadia,LA,,318-263-8456,BIENVILLE,Eugene Smith,P.O. Box,,Arcadia,LA,71001,5,318-263-8616,W,M,D,300,12/31/2010,1/1/2007,Mr. Smith +Mayor ,Town of Gibsland ,P. O. Box 309,,Gibsland,LA,,318-843-6141,BIENVILLE,Patrick White,P.O. Box 732,,Gibsland,LA,71028,5,318-617-1902,W,M,R,300,12/31/2010,1/1/2007,Mr. White +Mayor ,Town of Mount Lebanon ,P.O. Box 588,,Mount Lebanon,LA,,318-843-6458,BIENVILLE,Herbert Thurmond Newman,P.O. Box 588,,Gibsland,LA,71028,5,318-843-6658,W,M,D,300,12/31/2010,1/1/2007,Mr. Newman +Mayor ,Town of Ringgold ,P. O. Box 565,,Ringgold,LA,,318-894-4699,BIENVILLE,Stephone Taylor,890 Military Rd.,,Ringgold,LA,71068,5,318-894-9838,B,M,D,300,12/31/2010,10/30/2007,Mayor Taylor +Mayor ,Village of Bienville ,P. O. Box 207,,Bienville,LA,,,BIENVILLE,Wesley Boddie,P.O. Box 109,,Bienville,LA,71008,5,318-385-7562,W,M,R,300,12/31/2010,1/1/2007,Mr. Boddie +Mayor ,Village of Bryceland ,100 Fire Station Rd. #7,,Bryceland,LA,,318-263-8981,BIENVILLE,"Donald ""Donnie"" Byrd, ",181 Blue Ridge Rd.,,Bryceland,LA,71008-2661,10,318-263-2439,W,M,N,300,,, +Mayor ,Village of Bryceland ,100 Fire Station Rd. #7,,Bryceland,LA,,318-263-8981,BIENVILLE,"""Donnie"" Byrd",P.O. Box 302,,Arcadia,LA,71001,5,318-263-2439,W,M,,300,6/30/2010,7/1/2006,Mayor Byrd +Mayor ,Village of Castor ,P. O. Box 216,,Castor,LA,,318-544-8718,BIENVILLE,Vicki S. Pickett,P.O. Box 206,,Castor,LA,71016,5,318-544-8723,W,F,R,300,12/31/2010,2/23/2009,Mayor Pickett +Mayor ,Village of Jamestown ,P. O. Box 5128,,Jamestown,LA,,318-894-3612,BIENVILLE,Ralph Todd,P. O. Box 5022,,Jamestown,LA,71045,5,318-894-9213,W,M,O,300,12/31/2012,1/1/2009,Mayor Todd +Mayor ,Village of Lucky ,13041 Hwy. 4,,Castor,LA,,318-576-3348,BIENVILLE,"James Haskin, Jr.",13041 Hwy. 4,,Castor,LA,71016,5,318-576-8848,B,M,,300,6/30/2012,7/1/2008,Mayor Haskin +Mayor ,Village of Saline ,P. O. Box 118,,Saline,LA,,318-576-3545,BIENVILLE,John Allison Thomas,P.O. Box 207,,Saline,LA,71070,5,318-576-8712,W,M,D,300,6/30/2012,7/1/2008,Mayor Thomas +Chief of Police ,Town of Arcadia ,P. O. Box 767,,Arcadia,LA,71001,318-263-8456,BIENVILLE,Victor W. Rogers,1395 Talbert St.,,Arcadia,LA,71001,5,318-263-8476,B,M,D,305,12/31/2010,1/1/2007,Mr. Rogers +Chief of Police ,Town of Gibsland ,P. O. Box 309,,Gibsland,LA,71028,318-843-6141,BIENVILLE,Michael D. Wright,P.O. Box 54,,Gibsland,LA,71028,5,318-843-3690,B,M,D,305,12/31/2010,1/1/2007,Mr. Wright +Chief of Police ,Town of Ringgold ,P. O. Box 565,,Ringgold,LA,71068,318-894-4699,BIENVILLE,Lawson Bradley,2918 Glover St.,,Ringgold,LA,71068,5,318-894-9504,B,M,D,305,12/31/2010,1/1/2007,Chief Bradley +Chief of Police ,Village of Lucky ,13132 Hwy. 4,,Castor,LA,71016,318-576-3348,BIENVILLE,"""O. D."" Patterson",414 Six Mile Rd.,,Bienville,LA,71008,5,318-576-3209,B,M,D,305,6/30/2012,7/1/2008,Chief Patterson +Chief of Police ,Village of Saline ,P. O. Box 118,,Saline,LA,71070,318-576-3545,BIENVILLE,Scott Thrasher,P.O. Box 202,,Saline,LA,71070,5,318-576-8799,W,M,,305,6/30/2012,7/1/2008,Chief Thrasher +Alderman ,Town of Gibsland ,P. O. Box 309,,Gibsland,LA,71028,318-843-6141,BIENVILLE,Dawson L. Anglin,P.O. Box 757,,Gibsland,LA,71028,5,318-843-9672,W,M,,310,12/31/2010,1/1/2007,Mr. Anglin +Alderman ,Town of Gibsland ,P. O. Box 309,,Gibsland,LA,71028,318-843-6141,BIENVILLE,Timmy L. Cato,P.O. Box 626,,Gibsland,LA,71028,5,318-843-6270,B,M,O,310,12/31/2010,4/10/2007,Mr. Cato +Alderman ,Town of Gibsland ,P. O. Box 309,,Gibsland,LA,71028,318-843-6141,BIENVILLE,"Ray Ivory, Sr.",P.O. Box 152,,Gibsland,LA,71028,5,318-843-1508,B,M,D,310,12/31/2010,1/1/2007,Mr. Ivory +Alderman ,Town of Gibsland ,P. O. Box 309,,Gibsland,LA,71028,318-843-6141,BIENVILLE,Marketris Q. Jones,P.O. Box 475,,Gibsland,LA,71028,5,318-843-3688,B,M,D,310,12/31/2010,1/1/2007,Mr. Jones +Alderman ,Town of Mount Lebanon ,P.O. Box 588,,Mount Lebanon,LA,71028-0588 ,318-843-6658,BIENVILLE,Ruby Grubbs,12760 Hwy. 154,,Gibsland,LA,71028,5,318-843-6844,W,F,O,310,12/31/2010,1/1/2007,Ms. Grubbs +Alderman ,Town of Mount Lebanon ,P.O. Box 588,,Mount Lebanon,LA,71028-0588 ,318-843-6658,BIENVILLE,Dee D. Jowers,119 Coffee Rd.,,Gibsland,LA,71028,5,318-843-6493,W,M,,310,12/31/2010,1/1/2007,Mr. Jowers +Alderman ,Town of Mount Lebanon ,P.O. Box 588,,Mount Lebanon,LA,71028-0588 ,318-843-6658,BIENVILLE,Jonathan A. Kidd,133 Stagecoach Trail,,Gibsland,LA,71028,5,318-843-6904,W,M,,310,12/31/2010,1/1/2007,Mr. Kidd +Alderman ,Town of Mount Lebanon ,P.O. Box 588,,Mount Lebanon,LA,71028-0588 ,318-843-6658,BIENVILLE,Ora Elizabeth H. Towns,175 Huckleberry Ln.,,Gibsland,LA,71028-4507,10,318-843-6255,W,F,R,310,12/31/2010,1/1/2007,Ms. Towns +Alderman ,Town of Mount Lebanon ,P.O. Box 588,,Mount Lebanon,LA,71028-0588 ,318-843-6658,BIENVILLE,Philip L. Towns,2398 Hwy. 517,,Gibsland,LA,71028,5,318-843-9275,W,M,R,310,12/31/2010,1/1/2007,Mr. Towns +Alderman ,Village of Bienville ,P. O. Box 207,,Bienville,LA,71008,318-385-7533,BIENVILLE,Effie Lee Brice,P.O. Box 12,,Bienville,LA,71008,5,318-385-7524,B,F,O,310,12/31/2010,1/1/2007,Mr. Brice +Alderman ,Village of Bienville ,P. O. Box 207,,Bienville,LA,71008,318-385-7533,BIENVILLE,James N. Kirkham,25341 Hwy. 9,,Bienville,LA,71008,5,318-385-7552,W,M,D,310,12/31/2010,1/1/2007,Mr. Kirkham +Alderman ,Village of Bienville ,P. O. Box 207,,Bienville,LA,71008,318-385-7533,BIENVILLE,"James B. Smith, Jr.",377 King St.,,Bienville,LA,71008,5,318-385-7953,W,M,,310,12/31/2010,1/1/2007,Mr. Smith +Alderman ,Village of Bryceland ,100 Fire Station Rd. #7,,Bryceland,LA,71008,318-263-2405,BIENVILLE,Scott Calhoun,440 Hwy. 517,,Gibsland,LA,71028,5,318-263-8441,W,M,,310,6/30/2010,7/1/2006,Mr. Calhoun +Alderman ,Village of Bryceland ,100 Fire Station Rd. #7,,Bryceland,LA,71008,318-263-2405,BIENVILLE,"John Crawford, ",376 Hwy. 517,,Gibsland,LA,71028-4652,10,318-263-9672,W,M,N,310,,, +Alderman ,Village of Bryceland ,100 Fire Station Rd. #7,,Bryceland,LA,71008,318-263-2405,BIENVILLE,John M. Crawford,376 Hwy. 517,,Gibsland,LA,71028,5,318-263-9672,W,M,,310,6/30/2010,7/1/2006,Mr. Crawford +Alderman ,Village of Bryceland ,100 Fire Station Rd. #7,,Bryceland,LA,71008,318-263-2405,BIENVILLE,James E. Moss,498 Shiloh Cemetery Rd.,,Gibsland,LA,71028,5,318-263-8262,W,M,,310,6/30/2010,7/1/2006,Mr. Moss +Alderman ,Village of Bryceland ,100 Fire Station Rd. #7,,Bryceland,LA,71008,318-263-2405,BIENVILLE,"James E. Moss, ",498 Shiloh Cemetery Rd.,,Gibsland,LA,71028-4656,10,318-263-8262,W,M,R,310,,, +Alderman ,Village of Bryceland ,100 Fire Station Rd. #7,,Bryceland,LA,71008,318-263-2405,BIENVILLE,"Don M. Travis, ",201 Taylor Road,,Gibsland,LA,71028-4705,10,318-263-2256,W,M,R,310,,, +Alderman ,Village of Castor ,P. O. Box 216,,Castor,LA,71016,318-544-8718,BIENVILLE,Ray A. Bess,P.O. Box,,Castor,LA,71016,5,318-544-8802,,,O,310,12/31/2010,1/1/2007,Mr. Bess +Alderman ,Village of Castor ,P. O. Box 216,,Castor,LA,71016,318-544-8718,BIENVILLE,Charles Harper,P.O. Box 123,,Castor,LA,71016,5,318-544-8646,W,M,O,310,12/31/2010,1/1/2007,Mr. Harper +Alderman ,Village of Castor ,P. O. Box 216,,Castor,LA,71016,318-544-8718,BIENVILLE,Beth Warren,P.O. Box 223,,Castor,LA,71016,5,318-544-9036,W,F,,310,12/31/2010,2/23/2009,Ms. Warren +Alderman ,Village of Jamestown ,P. O. Box 5128,,Jamestown,LA,71045,318-894-3612,BIENVILLE,Conley Ray Bare,146 Barehill Rd.,,Jamestown,LA,71045,5,318-894-8713,W,M,O,310,12/31/2012,1/1/2009,Mr. Bare +Alderman ,Village of Jamestown ,P. O. Box 5128,,Jamestown,LA,71045,318-894-3612,BIENVILLE,Michael J. Taylor,4127 E. Front St.,,Jamestown,LA,71045,5,318-894-2440,W,M,O,310,12/31/2012,1/1/2009,Mr. Taylor +Alderman ,Village of Jamestown ,P. O. Box 5128,,Jamestown,LA,71045,318-894-3612,BIENVILLE,James G. Wiggins,P.O. Box 5001,,Jamestown,LA,71045,5,318-894-2582,W,M,,310,12/31/2012,1/1/2009,Mr. Wiggins +Alderman ,Village of Lucky ,13132 Hwy. 4,,Castor,LA,71016,318-576-3348,BIENVILLE,Columbus J. Boston,P.O. Box 171,,Saline,LA,71070,5,318-576-3348,B,M,D,310,6/30/2012,7/1/2008,Mr. Boston +Alderman ,Village of Lucky ,13132 Hwy. 4,,Castor,LA,71016,318-576-3348,BIENVILLE,Raymond L. Calep,220 Brooks Loop,,Castor,LA,71016,5,318-576-3979,B,M,D,310,6/30/2012,7/1/2008,Mr. Calep +Alderman ,Village of Lucky ,13132 Hwy. 4,,Castor,LA,71016,318-576-3348,BIENVILLE,Donald Sanders,446 Six Mile Rd.,,Bienville,LA,71008,5,318-576-9042,B,M,,310,6/30/2012,7/21/2008,Mr. Sanders +Alderman ,Village of Saline ,P. O. Box 118,,Saline,LA,71070,318-576-3545,BIENVILLE,Brenda Matthews,P.O. Box 310,,Saline,LA,71070,5,318-576-8743,W,F,,310,6/30/2012,7/1/2008,Ms. Matthews +Alderman ,Village of Saline ,P. O. Box 118,,Saline,LA,71070,318-576-3545,BIENVILLE,Jimmie R. Rogers,P.O. Box 190,,Saline,LA,71070,5,318-576-3202,W,M,D,310,6/30/2012,7/1/2008,Mr. Rogers +Alderman ,Village of Saline ,P. O. Box 118,,Saline,LA,71070,318-576-3545,BIENVILLE,Dorothy J. Satcher,P.O. Box 105,,Saline,LA,71070,5,318-576-3272,B,F,D,310,6/30/2012,7/1/2008,Ms. Satcher +Alderman ,Village of Saline ,P. O. Box 118,,Saline,LA,71070,318-576-3545,BIENVILLE,"Robert ""R D"" Slayton",867 Bruce Dr.,,Saline,LA,71070,5,318-576-3880,W,M,,310,6/30/2012,7/1/2008,Mr. Slayton +Alderman ,Village of Saline ,P. O. Box 118,,Saline,LA,71070,318-576-3545,BIENVILLE,Amy Warren,1020 Natchitoches St.,,Saline,LA,71070,5,318-576-3543,W,F,O,310,6/30/2012,7/1/2008,Ms. Warren +Council Member ,"District 1, Town of Arcadia ",P. O. Box 767,,Arcadia,LA,71001,318-263-8456,BIENVILLE,Doreatha Nelson,697 Smith St.,,Arcadia,LA,71001,5,318-957-2574,B,F,D,310,12/31/2010,11/24/2009,Mr. Nelson +Council Member ,"District 2, Town of Arcadia ",P. O. Box 767,,Arcadia,LA,71001,318-263-8456,BIENVILLE,Maggie Roberson,2676 Carver St.,,Arcadia,LA,71001,5,318-263-2283,,,D,310,12/31/2010,1/1/2007,Ms. Robinson +Council Member ,"District 3, Town of Arcadia ",P. O. Box 767,,Arcadia,LA,71001,318-263-8456,BIENVILLE,Billy R. Cook,3240 Hazel,,Arcadia,LA,71001,5,318-263-8221,W,M,O,310,12/31/2010,1/1/2007,Mr. Cook +Council Member ,"District 4, Town of Arcadia ",P. O. Box 767,,Arcadia,LA,71001,318-263-8456,BIENVILLE,Mattie Lou Harris,692 Evangeline Dr.,,Arcadia,LA,71001,5,318-263-2140,B,F,,310,12/31/2010,1/1/2007,Ms. Harris +Council Member ,"District 5, Town of Arcadia ",P. O. Box 767,,Arcadia,LA,71001,318-263-8456,BIENVILLE,"""E.J."" Ratcliff",2198 Pine St.,,Arcadia,LA,71001,5,318-263-8180,W,M,R,310,12/31/2010,1/1/2007,Mr. Ratcliff +Councilman ,"District 1, Town of Ringgold ",P. O. Box 565,,Ringgold,LA,71068,318-894-4699,BIENVILLE,Johnny Lee Shepherd,P.O. Box 654,,Ringgold,LA,71068,5,318-894-9644,B,M,,310,12/31/2010,1/1/2007,Mr. Shepherd +Councilman ,"District 2, Town of Ringgold ",P. O. Box 565,,Ringgold,LA,71068,318-894-4699,BIENVILLE,Bobby Guin,4035 Susan St.,,Ringgold,LA,71068,5,318-894-7919,W,M,D,310,12/31/2010,1/1/2007,Mr. Guin +Councilman ,"District 3, Town of Ringgold ",P. O. Box 565,,Ringgold,LA,71068,318-894-4699,BIENVILLE,Larry J. Hays,P.O. Box 733,,Ringgold,LA,71068,5,318-894-4522,W,M,D,310,12/31/2010,1/1/2007,Mr. Hays +Councilman ,"District 4, Town of Ringgold ",P. O. Box 565,,Ringgold,LA,71068,318-894-4699,BIENVILLE,Keith C. Johnson,P.O. Box 867,,Ringgold,LA,71068,5,318-894-9414,B,M,D,310,12/31/2010,1/1/2007,Mr. Johnson +Councilman ,"District 5, Town of Ringgold ",P. O. Box 565,,Ringgold,LA,71068,318-894-4699,BIENVILLE,Alan D. Clayborn,1156 Mill St.,,Ringgold,LA,71068,5,318-894-9855,W,M,D,310,12/31/2010,1/1/2007,Mr. Clayborn +DPEC Member ,at Large ,,,,LA,,,BOSSIER,,,,,,,0,,,,,54,,, +DPEC Member ,District 1 ,,,,LA,,,BOSSIER,Mark S. Hill,P.O. Box 57,,Haughton,LA,71037-0057 ,12,318-949-3588,B,M,D,56,2/20/2012,2/20/2008,Mr. Hill +DPEC Member ,District 2 ,,,,LA,,,BOSSIER,,,,,,,0,,,,,56,,, +DPEC Member ,District 3 ,,,,LA,,,BOSSIER,,,,,,,0,,,,,56,,, +DPEC Member ,District 4 ,,,,LA,,,BOSSIER,,,,,,,0,,,,,56,,, +DPEC Member ,District 5 ,,,,LA,,,BOSSIER,"Rosemarie ""Rosie"" Salinas",139 Lakewood Point Dr.,,Bossier City,LA,71111-2073,10,318-747-9744,W,F,D,56,2/20/2012,2/20/2008,Ms. Salinas +DPEC Member ,District 6 ,,,,LA,,,BOSSIER,,,,,,,0,,,,,56,,, +DPEC Member ,District 7 ,,,,LA,,,BOSSIER,,,,,,,0,,,,,56,,, +DPEC Member ,District 8 ,,,,LA,,,BOSSIER,,,,,,,0,,,,,56,,, +DPEC Member ,District 9 ,,,,LA,,,BOSSIER,,,,,,,0,,,,,56,,, +DPEC Member ,District 10 ,,,,LA,,,BOSSIER,,,,,,,0,,,,,56,,, +DPEC Member ,District 11 ,,,,LA,,,BOSSIER,,,,,,,0,,,,,56,,, +DPEC Member ,District 12 ,,,,LA,,,BOSSIER,,,,,,,0,,,,,56,,, +RPEC Member ,at Large ,,,,LA,,,BOSSIER,Laura Adley,3411 Pine Haven Circle,,Haughton,LA,71037,5,318-949-4517,W,F,R,64,2/20/2012,2/20/2008,Ms. Adley +RPEC Member ,at Large ,,,,LA,,,BOSSIER,"""Jamie"" Burns",129 Lone Oak Dr.,,Benton,LA,71006,5,318-965-5671,W,M,R,64,2/20/2012,2/20/2008,Mr. Burns +RPEC Member ,at Large ,,,,LA,,,BOSSIER,Joan L. Carraway,P. O. Box 327,,Benton,LA,71006,5,318-326-5829,W,F,R,64,2/20/2012,2/20/2008,Ms. Carraway +RPEC Member ,at Large ,,,,LA,,,BOSSIER,Peyton Cole,2513 N Waverly Dr.,,Bossier City,LA,71111,5,318-742-8071,W,M,R,64,2/20/2012,2/20/2008,Mr. Cole +RPEC Member ,at Large ,,,,LA,,,BOSSIER,Bobby W. Edmiston,1001 Bay Ridge Dr.,,Benton,LA,71006-3464,10,318-965-4925,W,M,R,64,2/20/2012,2/20/2008,Mr. Edmiston +RPEC Member ,District 1 ,,,,LA,,,BOSSIER,James L. Frost,305 Spring Branch Rd.,,Elm Grove,LA,71051,5,318-987-4297,,,,66,,6/5/2008,Mr. Frost +RPEC Member ,District 2 ,,,,LA,,,BOSSIER,,,,,,,0,,,,,66,,, +RPEC Member ,District 3 ,,,,LA,,,BOSSIER,"""Mike"" Collier",521 Merritt Rd.,,Benton,LA,71006-4324,10,318-965-4321,W,M,R,66,2/20/2012,2/20/2008,Mr. Collier +RPEC Member ,District 4 ,,,,LA,,,BOSSIER,"""Cindy"" Johnston",205 Young Rd.,,Benton,LA,71006,5,318-326-5324,W,F,R,66,2/20/2012,2/20/2008,Ms. Johnston +RPEC Member ,District 5 ,,,,LA,,,BOSSIER,"Michael ""Mike"" Mosura",6014 Jason St.,,Bossier City,LA,71111-5744,10,318-742-3700,W,M,R,66,2/20/2012,2/20/2008,Mr. Monsura +RPEC Member ,District 6 ,,,,LA,,,BOSSIER,Anne Price,104 Cambridge Cir.,,Bossier City,LA,71111-2278,10,318-741-1572,W,F,R,66,2/20/2012,2/20/2008,Ms. Price +RPEC Member ,District 7 ,,,,LA,,,BOSSIER,,,,,,,0,,,,,66,,, +RPEC Member ,District 8 ,,,,LA,,,BOSSIER,J. Brad Cummings,2709 Old Minden rd.,,Bossier City,LA,71112,5,,,,,66,,6/25/2008, +RPEC Member ,District 9 ,,,,LA,,,BOSSIER,"Joseph ""Joe"" Gregorio",1100 Benton Rd.,,Bossier City,LA,71111-3608,10,318-747-0384,W,M,R,66,2/20/2012,2/20/2008,Mr. Gregorio +RPEC Member ,District 10 ,,,,LA,,,BOSSIER,,,,,,,0,,,,,66,,, +RPEC Member ,District 11 ,,,,LA,,,BOSSIER,,,,,,,0,,,,,66,,, +RPEC Member ,District 12 ,,,,LA,,,BOSSIER,Janie M. Kelley,1613 Caplis Sligo Rd.,,Bossier City,LA,71112-9859,10,318-747-2073,W,F,R,66,2/20/2012,2/20/2008,Ms. Kelley +Sheriff ,,P. O. Box 850,,Benton,LA,71006,318-965-3410,BOSSIER,Larry Deen,P.O. Box 850,,Benton,LA,71006,5,318-965-3409,W,M,R,225,6/30/2012,7/1/2008,Sheriff Dean +Clerk of Court ,,P. O. Box 430,,Benton,LA,71006-0746 ,318-965-2336,BOSSIER,"""Cindy"" Johnston",P. O. Box 430,,Benton,LA,71006-0746 ,11,318-326-5324,W,F,R,230,6/30/2012,7/1/2008,Ms. Johnston +Assessor ,,P. O. Box 325,,Benton,LA,71006-0325 ,318-965-2273,BOSSIER,Bobby W. Edmiston,1001 Bay Ridge Dr.,,Benton,LA,71006-3463,10,,W,M,R,235,12/31/2012,1/1/2009,Mr. Edmiston +Coroner ,,"3022 Old Minden Rd., Ste. 209",,Bossier City,LA,71112,318-549-3415,BOSSIER,John M. Chandler,P.O. Box 1386,,Benton,LA,71006,5,318-465-3505,W,M,R,240,3/25/2012,3/24/2008,Mr. Chandler +Police Juror,District 1,P. O. Box 70,,Benton,LA,71006,318-965-2329,BOSSIER,"Henry D. ""Hank"" Meachum",430 Shadywood Ln.,,Haughton,LA,71037-8949,10,,W,M,D,245,1/8/2012,1/14/2008,Mr. Meachum +Police Juror ,District 2 ,P. O. Box 70,,Benton,LA,71006,318-965-2329,BOSSIER,Glenn Benton,2325 Hidden Cove,,Haughton,LA,71037-9435,10,318-949-0851,W,M,D,245,1/8/2012,1/14/2008,Mr. Benton +Police Juror ,District 3 ,P. O. Box 70,,Benton,LA,71006,318-965-2329,BOSSIER,Wanda Bennett,309 Jacobs Pt.,,Benton,LA,71006-8445,10,318-965-2940,W,F,O,245,1/8/2012,1/14/2008,Ms. Bennett +Police Juror ,District 4 ,P. O. Box 70,,Benton,LA,71006,318-965-2329,BOSSIER,Winfred R. Johnston,258 Hwy. 537,,Plain Dealing,LA,71064-4502,10,318-326-4547,W,M,D,245,1/8/2012,1/14/2008,Mr. Johnston +Police Juror ,District 5 ,P. O. Box 70,,Benton,LA,71006,318-965-2329,BOSSIER,Barry Butler,1988 Swan Lake Rd.,,Bossier City,LA,71111-7104,10,318-747-2196,W,M,R,245,1/8/2012,1/14/2008,Mr. Butler +Police Juror ,District 6 ,P. O. Box 70,,Benton,LA,71006,318-965-2329,BOSSIER,"""Rick"" Avery",524 Wedgewood Dr.,,Bossier City,LA,71111-2290,10,318-747-4185,W,M,R,245,1/8/2012,1/14/2008,Mr. Avery +Police Juror ,District 7 ,P. O. Box 70,,Benton,LA,71006,318-965-2329,BOSSIER,"James ""Jimmy"" Cochran",2420 Douglas Dr.,,Bossier City,LA,71111-3448,10,318-742-8174,W,M,D,245,1/8/2012,1/14/2008,Mr. Cochran +Police Juror ,District 8 ,P. O. Box 70,,Benton,LA,71006,318-965-2329,BOSSIER,J. Brad Cummings,2709 Old Minden Rd.,,Bossier City,LA,71112-2313,10,318-746-7316,W,M,R,245,1/8/2012,1/14/2008,Mr. Cummings +Police Juror ,District 9 ,P. O. Box 70,,Benton,LA,71006,318-965-2329,BOSSIER,"William ""Bill"" Altimus",3002 June Ln.,,Bossier City,LA,71112-2810,10,318-742-7216,W,M,R,245,1/8/2012,1/14/2008,Mr. Altimus +Police Juror ,District 10 ,P. O. Box 70,,Benton,LA,71006,318-965-2329,BOSSIER,Jerome L. Darby,1212 Gibson Cir.,,Bossier City,LA,71112-3348,10,318-747-3489,B,M,O,245,1/8/2012,1/14/2008,Mr. Darby +Police Juror ,District 11 ,P. O. Box 70,,Benton,LA,71006,318-965-2329,BOSSIER,W. Wayne Hammack,4008 Wayne Ave.,,Bossier City,LA,71112-4031,10,318-746-6297,W,M,D,245,1/8/2012,1/14/2008,Mr. Hammack +Police Juror ,District 12 ,P. O. Box 70,,Benton,LA,71006,318-965-2329,BOSSIER,"Paul ""Mac"" Plummer",123 Oaklawn Dr.,,Bossier City,LA,71112,5,318-742-7489,W,M,R,245,1/8/2012,7/21/2008,Mr. Plummer +City Judge ,"City Court, City of Bossier City ",620 Benton Rd.,,Bossier City,LA,71111,318-741-8587,BOSSIER,"Thomas A. ""Tommy"" Wilson, Jr.",2215 Landau Ln.,,Bossier City,LA,71111,5,318-742-9404,W,M,R,250,12/31/2014,1/22/2009,Judge Wilson +City Marshal ,"City Court, City of Bossier City ",620 Benton Rd.,,Bossier City,LA,71111,318-741-8855,BOSSIER,Johnny Wyatt,2259 Landau Ln.,,Bossier City,LA,71111,5,318-747-6904,W,M,R,250,12/31/2014,1/1/2009,Judge Wyatt +Member of School Board ,District 1 ,P. O. Box 2000,,Benton,LA,71006,318-549-5000,BOSSIER,Jack E. Raley,P.O. Box 85,,Haughton,LA,71037,5,318-949-3675,W,M,R,255,12/31/2010,1/1/2007,Mr. Raley +Member of School Board ,District 2 ,P. O. Box 2000,,Benton,LA,71006,318-549-5000,BOSSIER,Brad Bockhaus,111 Harvest Ln.,,Haughton,LA,71037,5,318-949-6680,W,M,R,255,12/31/2010,10/14/2008,Mr. Bockhaus +Member of School Board ,District 3 ,P. O. Box 2000,,Benton,LA,71006,318-549-5000,BOSSIER,Allison Brigham,4960 Old Oak Dr.,,Benton,LA,71006,5,318-965-0590,W,F,R,255,12/31/2010,1/1/2007,Ms. Brigham +Member of School Board ,District 4 ,P. O. Box 2000,,Benton,LA,71006,318-549-5000,BOSSIER,Tammy Armer Smith,183 Willow Bend Rd.,,Benton,LA,71006,5,318-965-0477,W,F,D,255,12/31/2010,1/1/2007,Ms. Smith +Member of School Board ,District 5 ,P. O. Box 2000,,Benton,LA,71006,318-549-5000,BOSSIER,"Michael ""Mike"" Mosura",6014 Jason St.,,Bossier City,LA,71111,5,318-742-3700,W,M,R,255,12/31/2010,1/1/2007,Mr. Mosura +Member of School Board ,District 6 ,P. O. Box 2000,,Benton,LA,71006,318-549-5000,BOSSIER,"William ""Bill"" Kostelka",309 Audubon Ct.,,Bossier City,LA,71111-6329,10,318-747-2212,W,M,R,255,12/31/2010,1/1/2007,Mr. Kostelka +Member of School Board ,District 7 ,P. O. Box 2000,,Benton,LA,71006,318-549-5000,BOSSIER,J. W. Slack,2424 Douglas Dr.,,Bossier City,LA,71111-3448,10,318-746-5752,W,M,R,255,12/31/2010,1/1/2007,Mr. Slack +Member of School Board ,District 8 ,P. O. Box 2000,,Benton,LA,71006,318-549-5000,BOSSIER,Kenneth M. Wiggins,3201 Cloverdale Pl.,,Bossier City,LA,71111,5,318-742-0251,B,M,D,255,12/31/2010,1/1/2007,Mr. Wiggins +Member of School Board ,District 9 ,P. O. Box 2000,,Benton,LA,71006,318-549-5000,BOSSIER,Eddy Ray Presley,1816 Lee St.,,Bossier City,LA,71112-2024,10,318-746-7530,W,M,R,255,12/31/2010,1/1/2007,Mr. Presley +Member of School Board ,District 10 ,P. O. Box 2000,,Benton,LA,71006,318-549-5000,BOSSIER,"Julian ""Julius"" Darby",1130 Beverly St.,,Bossier City,LA,71112-3365,10,318-747-0818,O,M,O,255,12/31/2010,1/1/2007,Mr. Darby +Member of School Board ,District 11 ,P. O. Box 2000,,Benton,LA,71006,318-549-5000,BOSSIER,Lindell Webb,1830 Venus Dr.,,Bossier City,LA,71112-4359,10,318-746-0672,W,M,R,255,12/31/2010,1/1/2007,Mr. Webb +Member of School Board ,District 12 ,P. O. Box 2000,,Benton,LA,71006,318-549-5000,BOSSIER,Mack Knotts,5007 Kenilworth Dr.,,Bossier City,LA,71112,5,318-747-4166,W,M,R,255,12/31/2010,1/1/2007,Mr. Knotts +Justice of the Peace ,Justice of the Peace District 1 ,1416 Magnolia Ridge,,Bossier City,LA,71112-5042,318-746-4526,BOSSIER,"""Tom"" Carleton",1416 Magnolia Ridge,,Bossier City,LA,71112,5,318-746-4526,W,M,R,265,12/31/2014,1/1/2009,Mr. Carleton +Justice of the Peace ,Justice of the Peace District 3 ,270 Hwy. 537,,Plain Dealing,LA,71064,318-326-4384,BOSSIER,Clifford Cannon,171 Buckshot Rd.,,Plain Dealing,LA,71064,5,318-423-2368,W,M,,265,12/31/2014,1/1/2009,Mr. Cannon +Justice of the Peace ,Justice of the Peace District 3 ,270 Hwy. 537,,Plain Dealing,LA,71064,318-326-4384,BOSSIER,Jack Cook,P. O. Box 372,,Plain Dealing,LA,71064,5,318-326-4263,W,M,D,265,12/31/2014,1/1/2009,Mr. Cook +Justice of the Peace ,Justice of the Peace District 4 ,153 Salem Cemetery Road,,Plain Dealing,LA,71064,318-326-5120,BOSSIER,Julia A. Budwah,153 Salem Cemetery Rd.,,Plain Dealing,LA,71064,5,318-326-5120,W,F,D,265,12/31/2014,1/1/2009,Ms. Budwah +Justice of the Peace ,Justice of the Peace District 5 ,911 Old Plain Dealing Rd.,,Benton,LA,71006,318-965-0093,BOSSIER,Lorraine S. Ragsdale,101 Mildred St.,,Benton,LA,71006,5,318-965-0011,W,F,D,265,12/31/2014,1/1/2009,Ms. Ragsdale +Justice of the Peace ,Justice of the Peace District 6 ,P. O. Box 308,,Princeton,LA,71067,318-949-2581,BOSSIER,Charles Gray,P. O. Box 308,,Haughton,LA,71037,5,318-949-2581,W,M,D,265,12/31/2014,1/1/2009,Mr. Gray +Justice of the Peace ,Justice of the Peace District 6 ,P. O. Box 308,,Princeton,LA,71067,318-949-2581,BOSSIER,Cullen B. Keith,P. O. Box 11,,Princeton,LA,71067,5,318-949-3692,W,M,D,265,12/31/2014,1/1/2009,Mr. Keith +Constable ,Justice of the Peace District 1 ,5404 Hollyhock Ln.,,Bossier City,LA,71112-4922,318-742-2942,BOSSIER,Charles R. Logan,1507 Nottoway Pl.,,Bossier City,LA,71112,5,318-286-5542,,,D,267,12/31/2014,1/1/2009,Mr. Logan +Constable ,Justice of the Peace District 3 ,P.O. Box 323,,Plain Dealing,LA,71064,318-326-7477,BOSSIER,Eddie Chandler,P. O. Box 465,,Plain Dealing,LA,71064,5,318-326-5659,W,M,D,267,12/31/2014,1/1/2009,Mr. Chandler +Constable ,Justice of the Peace District 3 ,P.O. Box 323,,Plain Dealing,LA,71064,318-326-7477,BOSSIER,"Roy ""Tony"" Jenkins",P. O. Box 106,,Plain Dealing,LA,71064,5,318-326-5463,W,M,D,267,12/31/2014,1/1/2009,Mr. Jenkins +Constable ,Justice of the Peace District 4 ,155 Matlock Rd.,,Plain Dealing,LA,71064,318-326-4049,BOSSIER,"Ronald ""Ronnie"" Matlock",300 Dixon Cutoff Rd.,,Plain Dealing,LA,71064,5,318-326-4049,W,M,D,267,12/31/2014,1/1/2009,Mr. Matlock +Constable ,Justice of the Peace District 5 ,911 Old Plain Dealing Rd.,,Benton,LA,71006,318-965-0093,BOSSIER,"James E. ""Jim"" Frazier, Jr.",4618 Palmetto Rd.,,Benton,LA,71006,5,318-965-2532,W,M,D,267,12/31/2014,1/1/2009,Mr. Frazier +Constable ,Justice of the Peace District 6 ,P.O. Box 191,,Haughton,LA,71037,318-949-0322,BOSSIER,Kenneth Stephens,P. O. Box 191,,Haughton,LA,71037,5,319-949-0322,W,M,D,267,12/31/2014,1/1/2009,Mr. Stephens +Constable ,Justice of the Peace District 6 ,P.O. Box 191,,Haughton,LA,71037,318-949-0322,BOSSIER,"""Jeff"" Weems",6730 Hwy. 80,,Princeton,LA,71067,5,318-949-0862,,,R,267,12/31/2014,1/1/2009,Mr. Weems +Mayor ,City of Bossier City ,P. O. Box 5337,,Bossier City,LA,,318-741-8520,BOSSIER,"Lorenz ""Lo"" Walker",613 Enchanted Ln.,,Bossier City,LA,71111,5,318-742-7123,W,M,R,300,6/30/2013,7/1/2009,Mayor Walker +Mayor ,Town of Benton ,P. O. Box 1390,,Benton,LA,,318-965-2932,BOSSIER,Albert Doughty,P. O. Box 397,,Benton,LA,71006,5,318-965-0247,W,M,D,300,12/31/2012,1/2/2009,Mayor Doughty +Mayor ,Town of Haughton ,P. O. Box 729,,Haughton,LA,,318-949-9401,BOSSIER,"Carlton ""Pee-Wee"" Anderson",415 W. McKinley Ave.,,Haughton,LA,71037,5,318-949-9194,W,M,D,300,12/31/2012,1/1/2009,Mayor Anderson +Mayor ,Town of Plain Dealing ,P. O. Box 426,,Plain Dealing,LA,,318-326-4234,BOSSIER,Dale Barnette,P. O. Box 215,,Plain Dealing,LA,71064,5,318-326-5502,W,M,D,300,12/31/2010,1/1/2009,Mayor Barnette +Chief of Police ,Town of Benton ,P. O. Box 1390,,Benton,LA,71006,318-965-2932,BOSSIER,Charles Pilkinton,111 Pine St.,,Benton,LA,71006,5,318-965-2678,W,M,R,305,12/31/2012,1/1/2009,Chief Pilkinton +Chief of Police ,Town of Haughton ,P. O. Box 729,,Haughton,LA,71037,318-949-9401,BOSSIER,Rodney Farrington,P. O. Box 432,,Haughton,LA,71037,5,318-949-4854,W,M,R,305,12/31/2012,1/1/2009,Chief Farrington +Marshal ,Town of Plain Dealing ,P. O. Box 426,,Plain Dealing,LA,71064,318-326-4234,BOSSIER,Richard Stanford,P. O. Box 212,,Plain Dealing,LA,71064,5,318-326-5821,W,M,D,305,12/31/2010,1/1/2009,Marshal Stanford +Councilman at Large ,City of Bossier City ,P. O. Box 5337,,Bossier City,LA,71171-5337,318-741-8520,BOSSIER,Timothy Larkin,221 Evangeline Walk,,Bossier City,LA,71111,5,318-425-2300,W,M,R,308,6/30/2013,7/1/2009,Mr. Larkin +Councilman at Large ,City of Bossier City ,P. O. Box 5337,,Bossier City,LA,71171-5337,318-741-8520,BOSSIER,"David A. Montgomery, Jr.",130 Stonebridge Blvd.,,Bossier City,LA,71111,5,318-747-9886,W,M,R,308,6/30/2013,7/1/2009,Mr. Montgomery +Alderman ,"District 1, Town of Plain Dealing ",P. O. Box 426,,Plain Dealing,LA,71064,318-326-4234,BOSSIER,Charlotte Giles Hamiter,P. O. Box 90,,Plain Dealing,LA,71064,5,318-326-5705,W,F,D,310,12/31/2010,1/1/2009,Ms. Hamiter +Alderman ,"District 1, Town of Plain Dealing ",P. O. Box 426,,Plain Dealing,LA,71064,318-326-4234,BOSSIER,Linda Hamiter,617 Hickory Dr.,,Plain Dealing,LA,71064,5,318-326-4117,W,F,D,310,12/31/2010,1/1/2009,Ms. Hamiter +Alderman ,"District 2, Town of Plain Dealing ",P. O. Box 426,,Plain Dealing,LA,71064,318-326-4234,BOSSIER,Marilyn Gray Bordelon,P. O. Box 426,,Plain Dealing,LA,71064,5,318-326-5039,W,F,D,310,12/31/2010,1/1/2009,Ms. Bordelon +Alderman ,"District 3, Town of Plain Dealing ",P. O. Box 426,,Plain Dealing,LA,71064,318-326-4234,BOSSIER,Kenneth W. Stiles,4093 Old Plain Dealing Rd.,,Plain Dealing,LA,71064,5,318-465-0014,W,M,R,310,12/31/2010,1/1/2009,Mr. Stiles +Alderman ,"District 4, Town of Plain Dealing ",P. O. Box 426,,Plain Dealing,LA,71064,318-326-4234,BOSSIER,Terry J. Richardson,610 W. Palmetto Ave.,,Plain Dealing,LA,71064,5,318-326-4113,W,M,R,310,12/31/2010,1/1/2009,Mr. Richardson +Alderman ,"District 1, Town of Benton ",P. O. Box 1390,,Benton,LA,71006,318-965-2932,BOSSIER,Richard A. Jackson,805 Louis Ave.,,Benton,LA,71006,5,318-965-0741,B,M,D,310,12/31/2012,1/1/2009,Mr. Jackson +Alderman ,"District 2, Town of Benton ",P. O. Box 1390,,Benton,LA,71006,318-965-2932,BOSSIER,Linda Gates,529 Oak Ridge Dr.,,Benton,LA,71006,5,318-965-1333,,,D,310,12/31/2012,1/1/2009,Ms. Gates +Alderman ,"District 3, Town of Benton ",P. O. Box 1390,,Benton,LA,71006,318-965-2932,BOSSIER,"Ronald ""Ronnie"" Jones",P. O. 623,,Benton,LA,71006,5,318-965-0026,W,M,D,310,12/31/2012,1/1/2009,Mr. Jones +Alderman ,"District 4, Town of Benton ",P. O. Box 1390,,Benton,LA,71006,318-965-2932,BOSSIER,James Friday,105 Oak Ridge Dr.,,Benton,LA,71006,5,318-965-4912,W,M,R,310,12/31/2012,1/1/2009,Mr. Friday +Alderman ,"District 5, Town of Benton ",P. O. Box 1390,,Benton,LA,71006,318-965-2932,BOSSIER,"""Tommy"" Hill",P. O. Box 83,,Benton,LA,71006,5,318-965-2759,W,M,D,310,12/31/2012,10/27/2009,Mr. Hill +Alderman ,Town of Haughton ,P. O. Box 729,,Haughton,LA,71037,318-949-9401,BOSSIER,Doris J. Grappe,P. O. Box 302,,Haughton,LA,71037,5,318-949-0018,W,F,D,310,12/31/2012,1/1/2009,Mr. Grappe +Alderman ,Town of Haughton ,P. O. Box 729,,Haughton,LA,71037,318-949-9401,BOSSIER,Mike Hollis,718 W. McKinley Ave.,,Haughton,LA,71037,5,318-949-8683,W,M,D,310,12/31/2012,1/1/2009,Mr. Hollis +Alderman ,Town of Haughton ,P. O. Box 729,,Haughton,LA,71037,318-949-9401,BOSSIER,Martha McGee,420 Camp Zion Rd.,,Haughton,LA,71037,5,318-949-0224,W,F,R,310,12/31/2012,1/1/2009,Ms. McGee +Alderman ,Town of Haughton ,P. O. Box 729,,Haughton,LA,71037,318-949-9401,BOSSIER,Larry D. Small,7438 Hwy. 157,,Haughton,LA,71037,5,,,,,310,,9/17/2009,Mr. Small +Alderman ,Town of Haughton ,P. O. Box 729,,Haughton,LA,71037,318-949-9401,BOSSIER,Elbert Winfield,307 Galilee St.,,Haughton,LA,71037,5,318-949-8676,B,M,D,310,12/31/2012,1/1/2009,Mr. Winfield +Councilman ,"District 1, City of Bossier City ",P. O. Box 5337,,Bossier City,LA,71171-5337,318-741-8520,BOSSIER,Scott P. Irwin,113 Savannah Place Cr.,,Bossier City,LA,71112,5,318-742-2190,W,M,R,310,6/30/2013,7/1/2009,Mr. Irwin +Councilman ,"District 2, City of Bossier City ",P. O. Box 5337,,Bossier City,LA,71171-5337,318-741-8520,BOSSIER,"Jeffery D. ""Jeff"" Darby",3322 Kingsford Pl.,,Bossier City,LA,71112,5,318-742-6908,B,M,O,310,6/30/2013,7/1/2009,Mr. Darby +Councilman ,"District 3, City of Bossier City ",P. O. Box 5337,,Bossier City,LA,71171-5337,318-741-8520,BOSSIER,"Don ""Bubba"" Williams",1026 Princeton Ave.,,Bossier City,LA,71112,5,318-747-5320,W,M,D,310,6/30/2013,7/1/2009,Mr. Williams +Councilman ,"District 4, City of Bossier City ",P. O. Box 5337,,Bossier City,LA,71171-5337,318-823-2128,BOSSIER,David Jones,2506 Abbey Ct.,,Bossier City,LA,71111,5,318-752-1944,W,M,R,310,6/30/2013,7/1/2009,Mr. Jones +Councilman ,"District 5, City of Bossier City ",P. O. Box 5337,,Bossier City,LA,71171-5337,318-823-2128,BOSSIER,"James ""Chubby"" Knight",2322 Douglas Dr.,,Bossier City,LA,71111,5,318-572-8624,W,M,R,310,6/30/2013,7/1/2009,Mr. Knight +DPEC Member ,at Large ,,,,LA,,,CADDO,Artis Ray Cash,119 Waters Edge Dr.,,Shreveport,LA,71106-7775,10,318-798-3124,B,,D,54,2/20/2012,2/20/2008,Mr. Cash +DPEC Member ,at Large ,,,,LA,,,CADDO,Larry Ferdinand,3436 Galaxy Ln.,,Shreveport,LA,71119-5002,10,318-636-1555,B,,D,54,2/20/2012,2/20/2008,Mr. Ferdinand +DPEC Member ,at Large ,,,,LA,,,CADDO,"David W. Hylan, Jr.",843 Gladstone Blvd.,,Shreveport,LA,71104-4201,10,318-865-4007,W,M,D,54,2/20/2012,2/20/2008,Mr. Hylan +DPEC Member ,at Large ,,,,LA,,,CADDO,"""Don"" Miller",239 Ockley Dr.,,Shreveport,LA,71105-3024,10,318-222-9417,W,M,D,54,2/20/2012,2/20/2008,Mr. Miller +DPEC Member ,District 1 ,,,,LA,,,CADDO,,,,,,,0,,,,,56,,, +DPEC Member ,District 2 ,,,,LA,,,CADDO,,,,,,,0,,,,,56,,, +DPEC Member ,District 3 ,,,,LA,,,CADDO,June Phillips,3761 Bobbitt Pl.,,Shreveport,LA,71107-3801,10,318-221-5957,B,F,D,56,2/20/2012,2/20/2008,Ms. Phillips +DPEC Member ,District 4 ,,,,LA,,,CADDO,Kirk Green,546 Dalzell St.,,Shreveport,LA,71104,5,214-733-6889,W,M,D,56,2/20/2012,2/20/2008,Mr. Green +DPEC Member ,District 5 ,,,,LA,,,CADDO,Lillian Priest,2613 Parham Dr.,,Shreveport,LA,71109-3015,10,318-635-8335,B,F,D,56,2/20/2012,2/20/2008,Ms. Priest +DPEC Member ,District 6 ,,,,LA,,,CADDO,Steve G. Kirkikis,310 Orleans Dr.,,Shreveport,LA,71106-6224,10,318-861-1582,,,D,56,2/20/2012,2/20/2008,Mr. Kirkikis +DPEC Member ,District 7 ,,,,LA,,,CADDO,,,,,,,0,,,,,56,,, +DPEC Member ,District 8 ,,,,LA,,,CADDO,"""Mike"" Sullivan",132 Carroll St.,,Shreveport,LA,71105-4235,10,318-861-7333,W,M,D,56,2/20/2012,2/20/2008,Mr. Sullivan +DPEC Member ,District 9 ,,,,LA,,,CADDO,Nita Steele,P.O. Box 52691,,Shreveport,LA,71135-2691,10,318-797-5604,B,F,D,56,2/20/2012,2/20/2008,Ms. Steele +DPEC Member ,District 10 ,,,,LA,,,CADDO,,,,,,,0,,,,,56,,, +DPEC Member ,District 11 ,,,,LA,,,CADDO,"Robert ""Bob"" Brown",10127 Freedoms Way,,Keithville,LA,71047-8950,10,318-458-6566,W,M,D,56,2/20/2012,2/20/2008,Mr. Brown +DPEC Member ,District 12 ,,,,LA,,,CADDO,,,,,,,0,,,,,56,,, +RPEC Member ,at Large ,,,,LA,,,CADDO,"Edward M. Brossette, ",529 Stephenson St.,,Shreveport,LA,71104,5,,,,,64,,1/13/2010,Mr. Brossette +RPEC Member ,at Large ,,,,LA,,,CADDO,Harold O. Coates,6117 Lovers Ln.,,Shreveport,LA,71105,5,318-868-1212,,,,64,,6/11/2008,Mr. Coates +RPEC Member ,at Large ,,,,LA,,,CADDO,"""Betsy"" Malone",3801 Greenway Pl.,,Shreveport,LA,71105-2015,10,318-868-3464,W,F,R,64,2/20/2012,2/20/2008, +RPEC Member ,at Large ,,,,LA,,,CADDO,"""Jay"" Murrell",4640 Fern Ave.,,Shreveport,LA,71105-3118,10,318-868-8379,,,R,64,2/20/2012,2/20/2008,Mr. Murrell +RPEC Member ,at Large ,,,,LA,,,CADDO,Barry Rachal,P. O. Box 5545,,Shreveport,LA,71135,5,318-797-6184,O,M,R,64,2/20/2012,2/20/2008, +RPEC Member ,District 1 ,,,,LA,,,CADDO,"""Kim"" Brun",6835 Dixie Shreveport Rd.,,Shreveport,LA,71107-8425,10,318-673-8367,W,F,R,66,2/20/2012,2/20/2008,Ms. Brun +RPEC Member ,District 2 ,,,,LA,,,CADDO,Mike Romanos,3845 N. Market St.,,Shreveport,LA,71107-3146,10,318-425-1597,,,R,66,2/20/2012,2/20/2008,Mr. Romanos +RPEC Member ,District 3 ,,,,LA,,,CADDO,Creighton Light,612 Wesley Ave.,,Shreveport,LA,71107-3923,10,,W,M,R,66,2/20/2012,2/20/2008,Mr. Light +RPEC Member ,District 3 ,,,,LA,,,CADDO,Creighton Light,612 Wesley St.,,Shreveport,LA,71107,5,,,,,66,,, +RPEC Member ,District 4 ,,,,LA,,,CADDO,"""Jay"" Gallagher",1103 Blvd. St.,,Shreveport,LA,71104-2030,10,318-221-0456,W,M,R,66,2/20/2012,2/20/2008,Mr. Gallagher +RPEC Member ,District 5 ,,,,LA,,,CADDO,Claude L. White,2825 Regent St.,,Shreveport,LA,71109,5,318-635-7563,,,,66,,6/11/2008,Mr. White +RPEC Member ,District 6 ,,,,LA,,,CADDO,"Austin G. Robertson, Jr.",5 Beaux Rivages Dr.,,Shreveport,LA,71106-6806,10,318-222-8367,W,M,R,66,2/20/2012,2/20/2008,Mr. Robertson +RPEC Member ,District 7 ,,,,LA,,,CADDO,"""Don"" Hollis",4002 Curtis Ln.,,Shreveport,LA,71109-5016,10,318-773-4349,,,R,66,2/20/2012,2/20/2008,Mr. Hollis +RPEC Member ,District 8 ,,,,LA,,,CADDO,Louis R. Avallone,P. O. Box 5072,,Shreveport,LA,71135,5,318-470-2122,W,M,R,66,2/20/2012,2/20/2008,Mr. Acallone +RPEC Member ,District 9 ,,,,LA,,,CADDO,Jimmy C. Allen,7333 Camelback Dr.,,Shreveport,LA,71105-5007,10,318-797-4761,W,M,R,66,2/20/2012,2/20/2008,Mr. Allen +RPEC Member ,District 10 ,,,,LA,,,CADDO,"Stepphen C. Gibson, ",9402 Barid Rd,,Shreveport,LA,71118,5,318-688-0742,,,,66,,1/13/2010, +RPEC Member ,District 11 ,,,,LA,,,CADDO,Alan W. Koloc,2056 Sand Crest Dr.,,Shreveport,LA,71118,5,,,,,66,,6/11/2008,Mr. Koloc +RPEC Member ,District 12 ,,,,LA,,,CADDO,,,,,,,0,,,,,66,,, +Judge ,"Juvenile Court, Elec. Sect. 1C ",1835 Spring St.,,Shreveport,LA,71101,318-226-6757,CADDO,Shonda Stone,P. O. Box 5294,,Shreveport,LA,71135,5,318-213-8300,B,F,D,220,12/31/2014,1/1/2009,Judge Stone +Judge ,"Juvenile Court, Elec. Sect. 2B ",1835 Spring St.,,Shreveport,LA,71101,318-226-6755,CADDO,Paul Young,9907 Oak Haven Dr.,,Shreveport,LA,71106-8223,10,318-797-5919,,,D,220,12/31/2014,1/1/2009,Judge Young +Judge ,"Juvenile Court, Elec. Sect. 3A ",1835 Spring St.,,Shreveport,LA,71101,318-226-6755,CADDO,David Matlock,420 Pennsylvania Ave.,,Shreveport,LA,71105-3136,10,318-861-4277,,,R,220,12/31/2014,1/1/2009,Judge Matlock +Sheriff ,,"501 Texas St., Rm. 101",,Shreveport,LA,71101-5410,318-681-0687,CADDO,Stephen W. Prator,"501 Texas St., Rm. 101",,Shreveport,LA,71101-5410,10,318-797-1977,W,M,R,225,6/30/2012,7/1/2008,Sheriff Prator +Clerk of Court ,,"501 Texas St., Rm. 103",,Shreveport,LA,71101,318-226-6780,CADDO,Gary Loftin,"501 Texas St., Rm. 103",,Shreveport,LA,71101,5,318-226-6793,W,M,D,230,6/30/2012,7/1/2008,Mr. Loftin +Assessor ,,"501 Texas St., Rm. 102, Cthse.",,Shreveport,LA,71101,318-226-6711,CADDO,"Charles R. Henington, Jr.",1723 Bayou Dr.,,Shreveport,LA,71105-3401,10,318-865-8188,W,M,D,235,12/31/2012,1/2/2009,Mr. Henington +Coroner ,,1704 Market St.,,Shreveport,LA,71101,318-226-6881,CADDO,Todd G. Thoma,124 Baltic Dr.,,Shreveport,LA,71115-2903,10,318-524-3011,W,M,R,240,3/25/2012,3/24/2008,Mr. Thoma +Parish Commission Member ,District 1 ,"505 Travis St., Ste. 110",,Shreveport,LA,,318-226-6596,CADDO,"""Doug"" Dominick",712 S. Cypress St.,,Vivian,LA,71082-3206,10,318-375-2356,W,M,R,245,1/9/2012,1/14/2008,Mr. Dominick +Parish Commission Member ,District 2 ,"505 Travis St., Ste. 110",,Shreveport,LA,71101-5409,318-226-6596,CADDO,Rose Wilson McCulloch,2509 Kemp Ln.,,Shreveport,LA,71107-6020,10,318-227-0803,,,D,245,1/9/2012,1/14/2008,McCulloch +Parish Commission Member ,District 3 ,"505 Travis St., Ste. 110",,Shreveport,LA,71101-5409,318-226-6596,CADDO,"Carl A. Pierson, Sr.",2106 Wyoming Cir.,,Shreveport,LA,71101-2140,10,318-222-0132,,,D,245,1/9/2012,1/14/2008,Mr. Pierson +Parish Commission Member ,District 4 ,"505 Travis St., Ste. 110",,Shreveport,LA,71101-5409,318-226-6596,CADDO,Matthew Linn,P.O. Box 44373,,Shreveport,LA,71134-4373,10,318-402-1132,,,R,245,1/9/2012,1/14/2008,Mr. Linn +Parish Commission Member ,District 5 ,"505 Travis St., Ste. 110",,Shreveport,LA,71101-5409,318-226-6596,CADDO,"""Sam"" Jenkins",2419 Kings Hwy.,,Shreveport,LA,71103,5,318-636-4266,B,M,D,245,1/9/2012,1/14/2008,Mr. Jenkins +Parish Commission Member ,District 6 ,"505 Travis St., Ste. 110",,Shreveport,LA,71101-5409,318-226-6596,CADDO,Lindora Baker,451 E 78th St.,,Shreveport,LA,71106-5009,10,318-868-8340,B,F,D,245,1/9/2012,2/23/2009,Ms. Baker +Parish Commission Member ,District 7 ,"505 Travis St., Ste. 110",,Shreveport,LA,71101-5409,318-226-6596,CADDO,Stephanie Lynch,P.O. Box 38891,,Shreveport,LA,71133,5,318-218-5612,B,F,D,245,1/9/2012,1/14/2008,Ms. Lynch +Parish Commission Member ,District 8 ,"505 Travis St., Ste. 110",,Shreveport,LA,71101-5409,318-226-6596,CADDO,John Escude',303 Glen Erica St.,,Shreveport,LA,71106-6001,10,318-861-1131,W,M,R,245,1/9/2012,1/14/2008,Mr. Escude' +Parish Commission Member ,District 9 ,"505 Travis St., Ste. 110",,Shreveport,LA,71101-5409,318-226-6596,CADDO,"Michael ""Mike"" Thibodeaux",7712 Millicent Way,,Shreveport,LA,71105-5602,10,318-797-6511,W,M,R,245,1/9/2012,1/14/2008,Mr. Thibodeaux +Parish Commission Member ,District 10 ,"505 Travis St., Ste. 110",,Shreveport,LA,71101-5409,318-226-6596,CADDO,David F. Cox,2633 Lyles Ln.,,Shreveport,LA,71118-2623,10,318-687-3127,W,M,R,245,1/9/2012,1/14/2008,Mr. Cox +Parish Commission Member ,District 11 ,"505 Travis St., Ste. 110",,Shreveport,LA,71101-5409,318-226-6596,CADDO,"""Jim"" Smith",2039 Evergreen Dr.,,Shreveport,LA,71118,5,318-469-1945,,M,,245,1/9/2012,1/14/2008,Mr. Smith +Parish Commission Member ,District 12 ,"505 Travis st., Ste. 110",,Shreveport,LA,71101-5409,318-226-6596,CADDO,"""Ken"" Epperson",3822 Treat Dr.,,Shreveport,LA,71119-6908,10,318-773-2654,B,,D,245,1/9/2012,1/14/2008,Mr. Epperson +Member of School Board ,District 1 ,1961 Midway St.,,Shreveport,LA,71108,318-603-6509,CADDO,"""Steve"" Riall",8033 Old Mooringsport Rd.,,Shreveport,LA,71107,5,318-929-2065,W,,R,255,12/31/2010,4/14/2009,Mr. Riall +Member of School Board ,District 2 ,1961 Midway St.,,Shreveport,LA,71108,318-603-6509,CADDO,Eursla Dickerson Hardy,106 Holcomb Dr.,,Shreveport,LA,71103-2026,10,318-424-0673,B,F,D,255,12/31/2010,1/1/2007,Ms. Hardy +Member of School Board ,District 3 ,1961 Midway St.,,Shreveport,LA,71108,318-603-6509,CADDO,Willie D. Burton,417 Indian Tr.,,Shreveport,LA,71107-5417,10,318-422-5035,B,M,D,255,12/31/2010,1/1/2007,Mr. Burton +Member of School Board ,District 4 ,1961 Midway St.,,Shreveport,LA,71108,318-603-6509,CADDO,Charlotte Crawley,4741 Thornhill Ave.,,Shreveport,LA,71106-1523,10,318-865-0704,W,F,D,255,12/31/2010,1/1/2007,Ms. Crawley +Member of School Board ,District 5 ,1961 Midway St.,,Shreveport,LA,71108,318-603-6509,CADDO,Lola B. May,2828 Judson St.,,Shreveport,LA,71109-3614,10,318-222-6519,,,D,255,12/31/2010,1/1/2007,Ms. May +Member of School Board ,District 6 ,1961 Midway St.,,Shreveport,LA,71108,318-603-6509,CADDO,Tammy Phelps,622 Hoover Dr.,,Shreveport,LA,71106-5133,10,318-869-7656,,,D,255,12/31/2010,1/1/2007,Ms. Phelps +Member of School Board ,District 7 ,1961 Midway St.,,Shreveport,LA,71108,318-603-6509,CADDO,Lillian Priest,P.O. Box 1583,,Shreveport,LA,71165,5,318-635-8335,B,F,D,255,12/31/2010,1/1/2007,Ms. Priest +Member of School Board ,District 8 ,1961 Midway St.,,Shreveport,LA,71108,318-603-6509,CADDO,Bonita H. Crawford,295 Patton Ave.,,Shreveport,LA,71105-3040,10,318-868-3684,W,F,R,255,12/31/2010,1/1/2007,Mr. Crawford +Member of School Board ,District 9 ,1961 Midway St.,,Shreveport,LA,71108,318-603-6509,CADDO,Barry Rachal,523 Rock Hollow Dr.,,Shreveport,LA,71115-2501,10,318-797-6184,O,M,R,255,12/31/2010,1/1/2007,Mr. Rachal +Member of School Board ,District 10 ,1961 Midway St.,,Shreveport,LA,71108,318-603-6509,CADDO,Larry Ramsey,9006 Marlow Dr.,,Shreveport,LA,71118-2723,10,318-686-7611,W,M,R,255,12/31/2010,1/1/2007,Mr. Ramsey +Member of School Board ,District 11 ,1961 Midway St.,,Shreveport,LA,71108,318-603-6509,CADDO,"""Ginger"" Armstrong",9800 Chase Way,,Shreveport,LA,71118-4624,10,318-688-0676,W,F,R,255,12/31/2010,1/1/2007,Ms. Armstrong +Member of School Board ,District 12 ,1961 Midway St.,,Shreveport,LA,71108,318-603-6509,CADDO,Dottie Bell,7881 Jefferson Paige Rd.,,Shreveport,LA,71119-8866,10,318-635-4667,B,,D,255,12/31/2010,1/1/2007,Ms. Bell +Justice of the Peace ,Justice of the Peace Ward 1 ,P. O. Box 104,,Belcher,LA,71004,318-378-4504,CADDO,Barbara Douget,146 Church St.,,Belcher,LA,71004,5,318-378-4530,W,F,R,265,12/31/2014,1/1/2009,Ms. Doucet +Justice of the Peace ,"Justice of the Peace Ward 2, Oil City Dist. ",9369 Gay Ln.,,Oil City,LA,71061-9704,318-995-0403,CADDO,Ruth W. Johnston,9369 Gay Ln.,,Oil City,LA,71061-9704,10,318-995-0403,W,F,D,265,12/31/2014,1/1/2009,Ms. Johnston +Justice of the Peace ,"Justice of the Peace Ward 2, Vivian District ",14626 Old Atlanta Rd.,,Vivian,LA,71082-8563,318-375-3158,CADDO,Joe Caldwell,14626 Old Atlanta Rd.,,Vivian,LA,71082-8563,10,318-375-3158,,,D,265,12/31/2014,1/1/2009,Mr. Caldwell +Justice of the Peace ,"Justice of the Peace Ward 3, Blanchard Dist. ",P. O. Box 564,,Blanchard,LA,71009,318-929-4830,CADDO,,,,,,,0,,,,,265,,, +Justice of the Peace ,"Justice of the Peace Ward 3, Mooringsport D. ",9250 N. LA Hwy. 169,,Mooringsport,LA,71060-8620,318-996-7068,CADDO,"M. E. ""Gene"" Nichols, Sr.",7759 Sundown Dr.,,Mooringsport,LA,71060-8733,10,318-996-7992,,,R,265,12/31/2014,1/1/2009,Mr. Nichols +Justice of the Peace ,Justice of the Peace Ward 5 ,8353 Tanya Dr.,,Greenwood,LA,71033-3338,318-938-1896,CADDO,"""Tom"" Bryson",8353 Tanya Dr.,,Greenwood,LA,71033,5,318-938-1896,W,M,R,265,12/31/2014,1/1/2009,Mr. Bryson +Justice of the Peace ,Justice of the Peace Ward 6 ,3811 Christy Dr.,,Shreveport,LA,71129-9740,318-925-2286,CADDO,Glenda Ennis Britton,3811 Christy Dr.,,Shreveport,LA,71129-9740,10,318-925-2286,W,F,D,265,12/31/2014,1/1/2009,Ms. Britton +Justice of the Peace ,Justice of the Peace Ward 7 ,P. O. Box 6772,,Shreveport,LA,71136,318-687-5319,CADDO,Susan Waddell,3221 Green Terrace Rd.,,Shreveport,LA,71118,5,318-458-4834,W,F,R,265,12/31/2014,1/1/2009,Ms. Waddell +Justice of the Peace ,Justice of the Peace Ward 8 ,10543 Norris Ferry Rd.,,Shrevport,LA,71106-8331,318-797-4014,CADDO,Gregory M. Taylor,5057 Dixie Garden Dr.,,Shreveport,LA,71105,5,318-869-4267,W,M,R,265,12/31/2014,9/3/2009,Mr. Taylor +Justice of the Peace ,Justice of the Peace Ward 9 ,17665 Munnerlyn Chapel Rd.,,Ida,LA,71044,318-284-3528,CADDO,Dale A. Hopper,17665 Munnerlyn Chapel Rd.,,Ida,LA,71044,5,318-284-3528,W,M,D,265,12/31/2014,1/1/2009,Mr. Hopper +Constable ,Justice of the Peace Ward 1 ,8543 Sac Fox,,Shreveport,LA,71107-9118,318-797-1673,CADDO,Paul Sapp,P. O. Box 143,,Gilliam,LA,71029,5,318-296-4441,W,M,,267,12/31/2014,1/1/2009,Mr. Sapp +Constable ,"Justice of the Peace Ward 2, Oil City Dist. ",P.O. Box 519,,Oil City,LA,71061,318-994-6329,CADDO,H. P. Johnston,9369 Gay Ln.,,Oil City,LA,71061,5,318-995-0403,W,M,D,267,12/31/2014,1/1/2009,Mr. Johnston +Constable ,"Justice of the Peace Ward 2, Vivian Dist. ",P.O. Box 812,,Oil City,LA,71061,318-955-6438,CADDO,Tommy E. Poindexter,P. O. Box 812,,Oil City,LA,71061,5,318-995-6438,W,M,R,267,12/31/2014,1/1/2009,Mr. Poindexter +Constable ,"Justice of the Peace Ward 3, Blanchard Dist. ",P.O. Box 1394,,Blanchard,LA,71009,318-929-4612,CADDO,"""Mike"" Lowery",6916 N. Colony Dr.,,Shreveport,LA,71107-9552,10,318-929-3720,W,M,R,267,12/31/2014,1/1/2009,Mr. Lowery +Constable ,"Justice of the Peace Ward 3, Mooringsport D. ",P.O. Box 475,,Mooringsport,LA,71060,318-996-7523,CADDO,Dale G. Nix,P. O. Box 475,,Mooringsport,LA,71060-0475 ,11,318-996-7523,W,M,R,267,12/31/2014,1/1/2009,Mr. Nix +Constable ,Justice of the Peace Ward 5 ,"504 Travis St., Ste. 110",,Shreveport,LA,71101-5409,,CADDO,David O. Anderson,"7400 Glen Leaf Rd., Lot 137",,Shreveport,LA,71129-3716,10,318-688-3998,W,M,R,267,12/31/2014,1/1/2009,Mr. Anderson +Constable ,Justice of the Peace Ward 6 ,11795 Sparks Davis Rd.,,Keithville,LA,71047-7551,318-925-2719,CADDO,"T. A. ""Tom"" Hyer",11795 Sparks Davis Rd.,,Keithville,LA,71047-7551,10,318-925-2719,W,M,R,267,12/31/2014,1/1/2009,Mr. Hyer +Constable ,Justice of the Peace Ward 7 ,P.O. Box 92,,Keithville,LA,71047,318-925-2209,CADDO,John McGrew,917 Barron Rd.,,Keithville,LA,71047-7317,10,318-925-2209,W,M,R,267,12/31/2014,1/1/2009,Mr. McGrew +Constable ,Justice of the Peace Ward 8 ,10543 Norris Ferry Rd.,,Shreveport,LA,71106-8331,318-797-4014,CADDO,Eric Hatfield,P. O. Box 65054,,Shreveport,LA,71136,5,318-866-9577,W,M,R,267,12/31/2014,1/1/2009,Mr. Hatfield +Constable ,Justice of the Peace Ward 9 ,P.O. Box 193,,Hosston,LA,71043-0193 ,318-287-3976,CADDO,J. Perry Hart,P. O. Box 312,,Rodessa,LA,71069-0312 ,11,318-223-4302,W,M,R,267,12/31/2014,1/1/2009,Mr. Hart +Mayor ,Town of Blanchard ,P. O. Box 428,,Blanchard,LA,,318-929-7593,CADDO,"Johnny ""Bubba"" Digilormo",P.O. Box 1051,,Blanchard,LA,71009-1051,10,318-929-2020,W,,R,300,12/31/2010,1/1/2007,Mr. Digilormo +Mayor ,Town of Greenwood ,P. O. Box 195,,Greenwood,LA,,318-938-7261,CADDO,David L. Hanson,8387 Woodstock Dr.,,Greenwood,LA,71033,5,318-938-7647,W,,O,300,6/30/2012,7/1/2008,Mayor Hanson +Mayor ,Town of Mooringsport ,P. O. Box 9,,Mooringsport,LA,,318-996-7661,CADDO,Lynn R. Porter,402 Christian St.,,Mooringsport,LA,71060-8787,10,318-996-6071,W,F,R,300,12/31/2010,1/1/2007,Ms. Porter +Mayor ,Town of Oil City ,P. O. Box 520,,Oil City,LA,,318-995-6681,CADDO,"Charles ""Chip"" Dickey, Jr.",P. O. Box 373,,Oil City,LA,71061-0373 ,11,318-995-6243,W,M,O,300,12/31/2012,1/1/2009,Mayor Dickey +Mayor ,Town of Vivian ,112 W. Alabama,,Vivian,LA,,318-375-3856,CADDO,Stephen G. Taylor,1001 N. Pine St.,,Vivian,LA,71082,5,318-375-3239,W,M,,300,12/31/2010,1/1/2007,Mayor Taylor +Mayor ,Village of Belcher ,P. O. Box 206,,Belcher,LA,,318-378-4206,CADDO,Jennifer C. Fant,P.O. Box 251,,Belcher,LA,71004-3802,10,318-378-4206,W,F,R,300,12/31/2010,1/1/2007,Ms. Fant +Mayor ,Village of Gilliam ,P. O. Box 129,,Gilliam,LA,,318-296-4393,CADDO,Helen Adger,P.O. Box 247,,Gilliam,LA,71029-8761,10,318-296-4393,W,F,D,300,12/31/2010,1/1/2007,Mr. Adger +Mayor ,Village of Hosston ,P. O. Box 206,,Hosston,LA,,318-287-3225,CADDO,Dennis White,P. O. Box 356,,Hosston,LA,71043,5,318-287-3566,W,,O,300,12/31/2012,1/1/2009,Mayor White +Mayor ,Village of Ida ,P.O. Box 299,,Ida,LA,,318-284-3231,CADDO,"Clyde H. ""Smokie"" Maddox, Sr.",P. O. Box 268,,Ida,LA,71044,5,318-284-3496,W,M,R,300,12/31/2012,1/1/2009,Mayor Maddox +Mayor ,Village of Rodessa ,P. O. Box 336,,Rodessa,LA,,318-223-4211,CADDO,Paul W. Lockard,9939 Standard Oil Rd.,,Rodessa,LA,71069,5,318-464-1476,W,M,O,300,12/31/2012,1/1/2009,Mayor Lockard +Chief of Police ,Town of Blanchard ,P. O. Box 428,,Blanchard,LA,71009,318-929-7593,CADDO,Gary Presswood,P.O. Box 398,,Blanchard,LA,71109-0398 ,11,318-929-7955,W,M,D,305,12/31/2010,1/1/2007,Mr. Presswood +Chief of Police ,Town of Mooringsport ,P. O. Box 9,,Mooringsport,LA,71060,318-996-7661,CADDO,"Dale G. Nix, Jr.",P. O. Box 595,,Mooringsport,LA,71061,5,318-996-0801,W,M,R,305,12/31/2010,1/1/2007, +Chief of Police ,Town of Vivian ,112 W. Alabama,,Vivian,LA,71082,318-375-3856,CADDO,Sam Curry,10110 Upper State Line Rd.,,Vivian,LA,71082-9162,10,318-375-3827,W,M,D,305,12/31/2010,1/1/2007,Chief Curry +Chief of Police ,Village of Belcher ,P. O. Box 206,,Belcher,LA,71004,318-378-4206,CADDO,Tommy G. Hatcher,407 Self Rd.,,Belcher,LA,71004,5,318-378-4240,W,M,R,305,12/31/2010,1/1/2007, +Chief of Police ,Village of Gilliam ,P. O. Box 129,,Gilliam,LA,71029-0129 ,318-296-4393,CADDO,Deldecarleo M. Walker,P.O. Box 233,,Gilliam,LA,71029,5,318-402-3255,B,M,D,305,12/31/2010,1/1/2007,Mr. Walker +Chief of Police ,Village of Hosston ,P. O. Box 206,,Hosston,LA,71043,318-287-3225,CADDO,"""Whit"" Giles",P. O. Box 193,,Hosston,LA,71043-0193 ,11,318-287-3976,W,,O,305,12/31/2012,1/1/2009,Chief Giles +Chief of Police ,Village of Ida ,P.O. Box 299,,Ida,LA,71044,318-284-3231,CADDO,"David C. Austin, Jr.",P. O. Box 178,,Ida,LA,71044,5,318-284-3291,W,M,O,305,12/31/2012,1/1/2009,Chief Austin +Alderman at Large ,Town of Greenwood ,P. O. Box 195,,Greenwood,LA,71033,318-938-7261,CADDO,"Frank Stawasz, Jr.",8347 Kelly Ln.,,Greenwood,LA,71033-3348,10,318-938-1767,W,M,R,308,6/30/2012,7/1/2008,Mr. Stawasz +Alderman at Large ,Town of Vivian ,112 W. Alabama,,Vivian,LA,71082,318-375-3856,CADDO,"""Randy"" Slagle",308 W. Alabama Ave.,,Vivian,LA,71082-2606,10,318-375-3148,W,F,O,308,12/31/2010,1/1/2007,Mr. Slagle +Council Member at Large ,Town of Mooringsport ,P. O. Box 9,,Mooringsport,LA,71060,318-996-7661,CADDO,"Robert ""Bob"" Guth",P. O. Box 544,,Mooringsport,LA,71060,5,318-996-7253,W,M,O,308,12/31/2010,1/1/2007, +Council Member at Large ,Town of Mooringsport ,P. O. Box 9,,Mooringsport,LA,71060,318-996-7661,CADDO,William Moore,P. O. Box 313,,Mooringsport,LA,71060-0313 ,11,318-996-7289,W,M,R,308,12/31/2010,1/1/2007, +Alderman ,"District 1, Town of Oil City ",P. O. Box 520,,Oil City,LA,71061,318-995-6681,CADDO,Michael R. Hensley,"403 Walnut St., Apt. 29",,Oil City,LA,71060,5,318-995-6413,W,M,O,310,12/31/2012,1/1/2009,Mr. Hensley +Alderman ,"District 2, Town of Oil City ",P. O. Box 520,,Oil City,LA,71061,318-995-6681,CADDO,"""Donnie"" Jackson",P. O. Box 664,,Oil City,LA,71061-0664 ,11,318-995-0037,B,M,D,310,12/31/2012,1/1/2009,Mr. Jackson +Alderman ,"District 3, Town of Oil City ",P. O. Box 520,,Oil City,LA,71061,318-995-6681,CADDO,James T. Sims,P. O. Box 302,,Oil City,LA,71061-0302 ,11,318-995-5396,B,,D,310,12/31/2012,1/1/2009,Mr. Sims +Alderman ,"District 4, Town of Oil City ",P. O. Box 520,,Oil City,LA,71061,318-995-6681,CADDO,Sharon Emmons,P. O. Box 584,,Oil City,LA,71061-0584 ,11,318-995-7356,W,F,D,310,12/31/2012,1/1/2009,Ms. Emmons +Alderman ,"District 5, Town of Oil City ",P. O. Box 520,,Oil City,LA,71061,318-995-6681,CADDO,"James Clifton, Sr.",P. O. Box 451,,Oil City,LA,71061-0451 ,11,318-995-7325,W,M,D,310,12/31/2012,1/1/2009,Mr. Clifton +Alderman ,"District 1, Town of Greenwood ",P. O. Box 195,,Greenwood,LA,71033,318-938-7261,CADDO,Gary Cook,4908 Scott Dr.,,Greenwood,LA,71033-2315,10,318-938-7677,W,M,R,310,6/30/2012,7/1/2008,Mr. Cook +Alderman ,"District 2, Town of Greenwood ",P. O. Box 195,,Greenwood,LA,71033,318-938-7261,CADDO,Heidi NaQuin,7110 Waterwood Dr.,,Greenwood,LA,71033,5,318-938-9643,W,F,R,310,6/30/2012,8/24/2009,Ms. NaQuin +Alderman ,"District 3, Town of Greenwood ",P. O. Box 195,,Greenwood,LA,71033,318-938-7261,CADDO,Jewel Jaudon,7063 Winburn Dr.,,Greenwood,LA,71033-3215,10,318-938-9646,W,F,D,310,6/30/2012,7/1/2008,Ms. Jaudon +Alderman ,"District 4, Town of Greenwood ",P. O. Box 195,,Greenwood,LA,71033,318-938-7261,CADDO,"""Brad"" Edwardes",7425 Waterwood Dr.,,Greenwood,LA,71033-3370,10,318-938-9777,W,M,R,310,6/30/2012,7/1/2008,Mr. Edwardes +Alderman ,Town of Blanchard ,P. O. Box 428,,Blanchard,LA,71009,318-929-7593,CADDO,Nathan A. Ashby,P.O. Box 762,,Blanchard,LA,71009-0762 ,11,318-929-7368,W,M,,310,12/31/2010,1/1/2007,Mr. Ashby +Alderman ,Town of Blanchard ,P. O. Box 428,,Blanchard,LA,71009,318-929-7593,CADDO,Allison A. Jones,8339 Brookington Dr.,,Shreveport,LA,71107-8606,10,318-929-7360,W,F,D,310,12/31/2010,1/1/2007,Ms. Jones +Alderman ,Town of Blanchard ,P. O. Box 428,,Blanchard,LA,71009,318-929-7593,CADDO,Patsy A. Lee,P.O. Box 867,,Blanchard,LA,71109,5,318-929-4518,W,F,R,310,12/31/2010,1/1/2007,Ms. Lee +Alderman ,Town of Blanchard ,P. O. Box 428,,Blanchard,LA,71009,318-929-7593,CADDO,"Ross V. Prewett, III",4774 Fairway Hills Ave.,,Shreveport,LA,71107,5,318-929-9272,W,M,R,310,12/31/2010,1/1/2007,Mr. Prewett +Alderman ,Town of Blanchard ,P. O. Box 428,,Blanchard,LA,71009,318-929-7593,CADDO,"""Jimmy"" Whittington",4974 Beechwood Hills Dr.,,Shreveport,LA,71107-3440,10,318-929-1455,W,M,R,310,12/31/2010,1/1/2007,Mr. Whittington +Alderman ,Village of Belcher ,P. O. Box 206,,Belcher,LA,71004,318-378-4206,CADDO,"""Sandy"" Duncan",P. O. Box 155,,Belcher,LA,71004-0155 ,11,318-378-4342,W,F,D,310,12/31/2010,1/1/2007, +Alderman ,Village of Belcher ,P. O. Box 206,,Belcher,LA,71004,318-378-4206,CADDO,"Kathleen ""Kathy"" Jackson",P. O. Box 69,,Belcher,LA,71004-0069 ,12,318-378-4345,W,F,R,310,12/31/2010,1/1/2007, +Alderman ,Village of Belcher ,P. O. Box 206,,Belcher,LA,71004,318-378-4206,CADDO,David Strahan,P.O. Box 124,,Belcher,LA,71004,5,318-378-4376,W,M,D,310,12/31/2010,1/1/2007,Mr. Strahan +Alderman ,Village of Gilliam ,P. O. Box 129,,Gilliam,LA,71029-0129 ,318-296-4393,CADDO,Marilyn S. Adcock,P.O. Box 304,,Gilliam,LA,71029-8787,10,318-296-4204,W,F,D,310,12/31/2010,1/1/2007,Ms. Adcock +Alderman ,Village of Gilliam ,P. O. Box 129,,Gilliam,LA,71029-0129 ,318-296-4393,CADDO,Joyce Glass,P.O. Box 352,,Gilliam,LA,71029-8761,10,318-296-4250,W,,D,310,12/31/2010,1/1/2007,Ms. Glass +Alderman ,Village of Gilliam ,P. O. Box 129,,Gilliam,LA,71029-0129 ,318-296-4393,CADDO,Karen Logan,P.O. Box 159,,Gilliam,LA,71029-8762,10,318-296-4303,W,F,D,310,12/31/2010,1/1/2007,Ms. Logan +Alderman ,Village of Hosston ,P. O. Box 206,,Hosston,LA,71043,318-287-3225,CADDO,"Claude J. Clay, ",14775 Odom Rd.,,Hosston,LA,71043,5,318-464-1978,W,M,D,310,,2/15/2010, +Alderman ,Village of Hosston ,P. O. Box 206,,Hosston,LA,71043,318-287-3225,CADDO,Claude James Clay,P.O. Box 410,,Hosston,LA,71043,5,318-287-3975,,,,310,,11/2/2009,Mr. Clay +Alderman ,Village of Hosston ,P. O. Box 206,,Hosston,LA,71043,318-287-3225,CADDO,"Betty ""Susie"" Giles",P. O. Box 193,,Hosston,LA,71043-0193 ,11,318-287-3976,W,F,,310,12/31/2012,1/1/2009,Ms. Giles +Alderman ,Village of Hosston ,P. O. Box 206,,Hosston,LA,71043,318-287-3225,CADDO,Lydia Stewart,6830 Terri St.,,Hosston,LA,71043,5,318-287-3972,W,,R,310,12/31/2012,1/1/2009,Ms. Stewart +Alderman ,Village of Ida ,P.O. Box 299,,Ida,LA,71044,318-284-3231,CADDO,"Betty ""Biddie"" Dial",P. O. Box 183,,Ida,LA,71044-0183 ,11,318-284-3325,W,,D,310,12/31/2012,1/1/2009,Ms. Dial +Alderman ,Village of Ida ,P.O. Box 299,,Ida,LA,71044,318-284-3231,CADDO,"""Kenny"" Shaw",18687 Carolina Ave.,,Ida,LA,71044-8601,10,318-284-3820,W,M,,310,12/31/2012,1/1/2009,Mr. Shaw +Alderman ,Village of Ida ,P.O. Box 299,,Ida,LA,71044,318-284-3231,CADDO,Louis Thomas,P. O. Box 55,,Ida,LA,71044,5,318-284-3550,W,M,,310,12/31/2012,1/1/2009,Mr. Thomas +Alderman ,Village of Rodessa ,P. O. Box 336,,Rodessa,LA,71069,318-223-4211,CADDO,Nathan Bradshaw,P. O. Box 411,,Rodessa,LA,71069,5,318-223-4236,W,M,R,310,12/31/2012,1/1/2009,Mr. Bradshaw +Alderman ,Village of Rodessa ,P. O. Box 336,,Rodessa,LA,71069,318-223-4211,CADDO,David Lee Norman,P. O. Box 264,,Rodessa,LA,71069-0264 ,11,318-223-4632,B,M,,310,12/31/2012,1/1/2009,Mr. Norman +Alderman ,Village of Rodessa ,P. O. Box 336,,Rodessa,LA,71069,318-223-4211,CADDO,"""Rick"" Quillin",P. O. Box 193,,Rodessa,LA,71069-0193 ,11,318-223-4387,W,,O,310,12/31/2012,1/1/2009,Mr. Quillin +Alderman ,"Ward 1, Town of Vivian ",112 W. Alabama,,Vivian,LA,71082,318-375-3856,CADDO,"John ""Pete"" Shepard",305 E. Mary Ann St.,,Vivian,LA,71082-2129,10,318-375-5948,B,,D,310,12/31/2010,1/1/2007,Mr. Shepherd +Alderman ,"Ward 2, Town of Vivian ",112 W. Alabama,,Vivian,LA,71082,318-375-3856,CADDO,Johnny A. Cook,716 W. Georgia Ave.,,Vivian,LA,71082-3002,10,318-375-5050,W,M,R,310,12/31/2010,1/1/2007,Mr. Cook +Alderman ,"Ward 3, Town of Vivian ",112 W. Alabama,,Vivian,LA,71082,318-375-3856,CADDO,Steve B. Wilson,710 S. Spruce St.,,Vivian,LA,71082,5,318-375-3407,W,M,D,310,12/31/2010,1/1/2007,Mr. Wilson +Alderman ,"Ward 4, Town of Vivian ",112 W. Alabama,,Vivian,LA,71082,318-375-3856,CADDO,Raymond Earl Williams,421 Memory Ln.,,Vivian,LA,71082-3524,10,318-375-5730,B,M,D,310,12/31/2010,1/1/2007,Mr. Williams +Council Member ,"District 1, Town of Mooringsport ",P. O. Box 9,,Mooringsport,LA,71060,318-996-7661,CADDO,Joseph C. Hawkins,103 Jennings St.,,Mooringsport,LA,71060,5,318-617-9379,W,,R,310,12/31/2010,1/1/2007,Mr. Hawkins +Council Member ,"District 2, Town of Mooringsport ",P. O. Box 9,,Mooringsport,LA,71060,318-996-7661,CADDO,Larry Klepac,405 Evelyn St.,,Mooringsport,LA,71060-9756,10,318-518-2228,W,M,O,310,12/31/2010,1/1/2007,Mr. Klepac +Council Member ,"District 3, Town of Mooringsport ",P. O. Box 9,,Mooringsport,LA,71060,318-996-7661,CADDO,Cathy B. Cogley,P.O. Box 514,,Mooringsport,LA,71060-9792,10,318-218-9605,W,F,D,310,12/31/2010,1/1/2007,Ms. Cogley +DPEC Member ,at Large ,,,,LA,,,CALCASIEU,Sue Ball,721 Blackman St.,,Lake Charles,LA,70605,5,337-475-2233,W,F,D,54,2/20/2012,2/20/2008,Ms. Ball +DPEC Member ,at Large ,,,,LA,,,CALCASIEU,Frank Hyatt,P.O. Box 228,,Lake Charles,LA,70602,5,337-499-8000,W,M,D,54,2/20/2012,2/20/2008,Mr. Hyatt +DPEC Member ,at Large ,,,,LA,,,CALCASIEU,Craig Martin,2718 Readwood Dr.,,Sulphur,LA,70663,5,337-527-3994,W,M,D,54,2/20/2012,2/20/2008,Mr. Martin +DPEC Member ,at Large ,,,,LA,,,CALCASIEU,O. Lynn Speight,1214 Bayouwood Dr.,,Lake Charles,LA,70605,5,337-474-1661,W,F,D,54,2/20/2012,2/20/2008,Ms. Speight +DPEC Member ,at Large ,,,,LA,,,CALCASIEU,"""Mike"" Wright",3505 Lake St.,,Lake Charles,LA,70605,5,337-439-6930,W,M,D,54,2/20/2012,2/20/2008,Mr. Wright +DPEC Member ,District 1 ,,,,LA,,,CALCASIEU,Marilyn Cox,583 Santa Anna Dr.,,Lake Charles,LA,70611,5,337-855-6766,W,F,D,56,2/20/2012,2/20/2008,Ms. Cox +DPEC Member ,District 2 ,,,,LA,,,CALCASIEU,"""Winnie"" Fowler",1011 N. Simmons St.,,Lake Charles,LA,70601,5,337-439-5312,B,F,D,56,2/20/2012,2/20/2008,Ms. Fowler +DPEC Member ,District 3 ,,,,LA,,,CALCASIEU,Robert Lynch,312 Goss Rd.,,Westlake,LA,70669,5,337-497-1630,W,M,D,56,2/20/2012,2/20/2008,Mr. Lynch +DPEC Member ,District 4 ,,,,LA,,,CALCASIEU,Otis Walker,2309 11th St.,,Lake Charles,LA,70601,5,337-302-7072,B,M,D,56,2/20/2012,2/20/2008,Mr. Walker +DPEC Member ,District 5 ,,,,LA,,,CALCASIEU,Michael McHale,1528 Kirkman,,Lake Charles,LA,70601,5,337-990-0093,W,M,D,56,2/20/2012,2/20/2008,Mr. McHale +DPEC Member ,District 6 ,,,,LA,,,CALCASIEU,Dorothy Durrett Romero,959 Terry Ln.,,Lake Charles,LA,70605,5,337-478-1413,W,F,D,56,2/20/2012,2/20/2008,Ms. Romero +DPEC Member ,District 7 ,,,,LA,,,CALCASIEU,Yvonne P. LeMay,220 Vanessa Ave.,,Lake Charles,LA,70605,5,337-477-0971,W,F,D,56,2/20/2012,2/20/2008,Ms. LeMay +DPEC Member ,District 8 ,,,,LA,,,CALCASIEU,Mary Leach Werner,2420 Oak Alley Dr.,,Lake Charles,LA,70605,5,337-477-7320,W,F,D,56,2/20/2012,2/20/2008,Ms. Werner +DPEC Member ,District 9 ,,,,LA,,,CALCASIEU,Alvin Stevens,P.O. Box 2270,,Lake Charles,LA,70602,5,337-477-5842,B,M,D,56,2/20/2012,2/20/2008,Mr. Stevens +DPEC Member ,District 10 ,,,,LA,,,CALCASIEU,Eugene Bouquet,P.O. Box 1512,,Lake Charles,LA,70602,5,337-433-9900,W,M,D,56,2/20/2012,2/20/2008,Mr. Bouquet +DPEC Member ,District 11 ,,,,LA,,,CALCASIEU,"""Terry"" Fowler",3731 Paul White Rd.,,Lake Charles,LA,70611,5,337-855-3360,W,M,D,56,2/20/2012,2/20/2008,Mr. Fowler +DPEC Member ,District 12 ,,,,LA,,,CALCASIEU,,,,,,,0,,,,,56,,, +DPEC Member ,District 13 ,,,,LA,,,CALCASIEU,"Charles ""Chuck"" Bennett",127 Roberta Dr.,,Sulphur,LA,70663,5,337-528-9452,W,M,D,56,2/20/2012,2/20/2008,Mr. Bennett +DPEC Member ,District 14 ,,,,LA,,,CALCASIEU,Lance Thibodeaux,525 Evans Rd.,,Sulphur,LA,70663,5,337-263-3839,W,M,D,56,2/20/2012,2/20/2008, +DPEC Member ,District 15 ,,,,LA,,,CALCASIEU,,,,,,,0,,,,,56,,, +RPEC Member ,at Large ,,,,LA,,,CALCASIEU,Darryl DeMaris,1244 S. Bayouwood Dr.,,Lake Charles,LA,70605,5,337-475-0319,,,R,64,2/20/2012,2/20/2008,Mr. Demaris +RPEC Member ,at Large ,,,,LA,,,CALCASIEU,Charles A. Enright,401 University Dr.,,Lake Charles,LA,70605,5,337-477-0335,W,M,R,64,2/20/2012,2/20/2008,Mr. Enright +RPEC Member ,at Large ,,,,LA,,,CALCASIEU,David Johnston,1244 S. Bayouwood Dr.,,Lake Charles,LA,70605,5,443-285-9111,,M,R,64,2/20/2012,2/20/2008,Mr. Johnston +RPEC Member ,District 1 ,,,,LA,,,CALCASIEU,,,,,,,0,,,,,66,,, +RPEC Member ,District 2 ,,,,LA,,,CALCASIEU,,,,,,,0,,,,,66,,, +RPEC Member ,District 3 ,,,,LA,,,CALCASIEU,,,,,,,0,,,,,66,,, +RPEC Member ,District 4 ,,,,LA,,,CALCASIEU,,,,,,,0,,,,,66,,, +RPEC Member ,District 5 ,,,,LA,,,CALCASIEU,,,,,,,0,,,,,66,,, +RPEC Member ,District 6 ,,,,LA,,,CALCASIEU,,,,,,,0,,,,,66,,, +RPEC Member ,District 7 ,,,,LA,,,CALCASIEU,John Hoffpauir,4323 Hearth St.,,Lake Charles,LA,70605-4433,10,337-474-9644,W,M,R,66,2/20/2012,2/20/2008,Mr. Hoffpauir +RPEC Member ,District 8 ,,,,LA,,,CALCASIEU,Jo Ann Colligan,2829 N. Locke Point,,Lake Charles,LA,70605,5,337-884-8080,W,F,R,66,2/20/2012,2/20/2008,Ms. Colligan +RPEC Member ,District 9 ,,,,LA,,,CALCASIEU,,,,,,,0,,,,,66,,, +RPEC Member ,District 10 ,,,,LA,,,CALCASIEU,,,,,,,0,,,,,66,,, +RPEC Member ,District 11 ,,,,LA,,,CALCASIEU,"""Tim"" Jones",1831 N. Claiborne St.,,Sulphur,LA,70663,5,337-528-1168,B,M,R,66,2/20/2012,2/20/2008,Mr. Jones +RPEC Member ,District 12 ,,,,LA,,,CALCASIEU,Shaina Farque,7285 Choupique Rd.,,Sulphur,LA,70665,5,337-583-4530,W,F,R,66,2/20/2012,2/20/2008,Ms. Farque +RPEC Member ,District 13 ,,,,LA,,,CALCASIEU,,,,,,,0,,,,,66,,, +RPEC Member ,District 14 ,,,,LA,,,CALCASIEU,,,,,,,0,,,,,66,,, +RPEC Member ,District 15 ,,,,LA,,,CALCASIEU,,,,,,,0,,,,,66,,, +Sheriff ,,P. O. Box 3722,,Lake Charles,LA,70602,337-491-3715,CALCASIEU,"""Tony"" Mancuso",P. O. Box 3722,,Lake Charles,LA,70602,5,337-477-0790,W,M,D,225,6/30/2012,7/1/2008,Sheriff Mancuso +Clerk of Court ,,P. O. Box 1030,,Lake Charles,LA,70602,337-437-3550,CALCASIEU,Lynn Jones,P.O. Box 1030,,Lake Charles,LA,70602,5,337-436-7864,W,M,D,230,6/30/2012,7/1/2008,Mr. Jones +Assessor ,,P. O. Box 1346,,Lake Charles,LA,70602,337-721-3000,CALCASIEU,"Richard Joseph Cole, Jr.",515 Hickok St.,,Sulphur,LA,70663,5,337-721-3005,W,M,D,235,12/31/2012,1/1/2009,Mr. Cole +Coroner ,,707-BE. Prien Lake Rd.,,Lake Charles,LA,70601,337-477-7537,CALCASIEU,Terry Welke,707-B E. Prien Lake Rd.,,Lake Charles,LA,70601,5,337-477-7537,W,M,,240,3/25/2012,3/24/2008,Mr. Welke +Police Juror ,District 1 ,P. O. Drawer 3287,,Lake Charles,LA,,337-721-3500,CALCASIEU,Shannon Spell,413 Elder Dr.,,Lake Charles,LA,70611,5,337-217-0209,W,M,R,245,1/8/2012,1/14/2008,Ms. Spell +Police Juror ,District 2 ,P. O. Drawer 3287,,Lake Charles,LA,70602-3287,337-721-3500,CALCASIEU,Calvin Collins,2035 Woodring St.,,Lake Charles,LA,70601,5,337-436-8068,B,M,D,245,1/8/2012,1/14/2008,Mr. Collins +Police Juror ,District 3 ,P. O. Drawer 3287,,Lake Charles,LA,70602-3287,337-721-3500,CALCASIEU,"Elizabeth Conway ""Tbet"" Griffin",903 North Jake,,Lake Charles,LA,70601,5,337-436-2779,B,F,D,245,1/8/2012,1/14/2008,Ms. Griffin +Police Juror ,District 4 ,P. O. Drawer 3287,,Lake Charles,LA,70602-3287,337-721-3500,CALCASIEU,Claude A. Syas,2506 13th St.,,Lake Charles,LA,70601,5,337-474-9641,B,M,D,245,1/8/2012,1/14/2008,Mr. Syas +Police Juror ,District 5 ,P. O. Drawer 3287,,Lake Charles,LA,70602-3287,337-721-3500,CALCASIEU,Charles S. Mackey,1215 Ninth St.,,Lake Charles,LA,70601,5,337-433-5877,W,M,R,245,1/8/2012,1/14/2008,Mr. Mackey +Police Juror ,District 6 ,P. O. Drawer 3287,,Lake Charles,LA,70602-3287,337-721-3500,CALCASIEU,Dennis Scott,P.O. Box 7463,,Lake Charles,LA,70605,5,337-475-1023,W,M,R,245,1/8/2012,1/14/2008,Mr. Scott +Police Juror ,District 7 ,P. O. Drawer 3287,,Lake Charles,LA,70602-3287,337-721-3500,CALCASIEU,Chris Landry,4336 Oaklawn Dr.,,Lake Charles,LA,70605,5,337-478-4020,W,M,D,245,1/8/2012,1/14/2008,Mr. Landry +Police Juror ,District 8 ,P. O. Drawer 3287,,Lake Charles,LA,70602-3287,337-721-3500,CALCASIEU,Guy Brame,1908 Linden Ln.,,Lake Charles,LA,70605,5,337-474-7155,W,M,R,245,1/8/2012,1/14/2008,Mr. Brame +Police Juror ,District 9 ,P. O. Drawer 3287,,Lake Charles,LA,70602-3287,337-721-3500,CALCASIEU,Kevin Guidry,4045 Briarfield Ln.,,Lake Charles,LA,70607,5,337-477-4367,B,M,D,245,1/8/2012,1/14/2008,Mr. Guidry +Police Juror ,District 10 ,P. O. Drawer 3287,,Lake Charles,LA,70602-3287,337-721-3500,CALCASIEU,"""Tony"" Stelly",P. O. Box 439 Rd.,,Iowa,LA,70647,5,337-582-3295,,,D,245,1/8/2012,1/14/2008,Mr. Stelly +Police Juror ,District 11 ,P. O. Drawer 3287,,Lake Charles,LA,70602-3287,337-721-3500,CALCASIEU,"""Sandy"" Treme",920 N. Overton St.,,DeQuincy,LA,70633,5,337-786-8496,W,F,D,245,1/8/2012,1/14/2008,Mr. Treme +Police Juror ,District 12 ,P. O. Drawer 3287,,Lake Charles,LA,70602-3287,337-721-3500,CALCASIEU,Ellis Hassien,4349 Pete Seay Rd.,,Sulphur,LA,70665,5,337-583-8272,W,M,R,245,1/8/2012,1/14/2008,Mr. Hassien +Police Juror ,District 13 ,P. O. Drawer 3287,,Lake Charles,LA,70602-3287,337-721-3500,CALCASIEU,Francis Andrepont,1302 Fatima,,Sulphur,LA,70663,5,337-527-5644,W,M,D,245,1/8/2012,1/14/2008,Mr. Andrepont +Police Juror ,District 14 ,P. O. Drawer 3287,,Lake Charles,LA,70602-3287,337-721-3500,CALCASIEU,"""Hal"" McMillin",1423 N. Beech St.,,Westlake,LA,70669,5,337-433-1140,W,M,D,245,1/8/2012,1/14/2008,Mr. McMillin +Police Juror ,District 15 ,P. O. Drawer 3287,,Lake Charles,LA,70602-3287,337-721-3500,CALCASIEU,"""Les"" Farnum",312 Oakley Dr.,,Sulphur,LA,70663,5,337-625-8569,W,M,D,245,1/8/2012,1/14/2008,Mr. Farnum +City Judge ,"City Court, City of Sulphur ",802 S. Huntington St.,,Sulphur,LA,70663,337-527-7006,CALCASIEU,"""Charlie"" Schrumpf",420 Tamarack St.,,Sulphur,LA,70663,5,337-528-3532,W,M,D,250,12/31/2014,1/1/2009,Judge Schrumpf +City Judge ,"City Court, Division A, City of Lake Charles ",P. O. Box 1664,,Lake Charles,LA,70602,337-491-1305,CALCASIEU,Thomas P. Quirk,6917 Windmill Ln.,,Lake Charles,LA,70605,5,337-491-1305,W,M,D,250,12/31/2014,1/1/2009,Judge Quirk +City Judge ,"City Court, Division B, City of Lake Charles ",P. O. Box 1664,,Lake Charles,LA,70602,337-491-1305,CALCASIEU,John S. Hood,3006 Bayou Bend Rd.,,Lake Charles,LA,70605,5,337-515-6706,W,M,D,250,12/31/2014,1/1/2009,Judge Hood +City Marshal ,"City Court, City of Lake Charles ",P. O. Box 1664,,Lake Charles,LA,70602,337-491-1304,CALCASIEU,"""Joey"" Alcede",6 River Ln.,,Lake Charles,LA,70605,5,337-478-8878,W,M,D,250,12/31/2014,1/1/2009,Marshal Alcede +City Marshal ,"City Court, City of Sulphur ",802 S. Huntington St.,,Sulphur,LA,70663,337-527-7006,CALCASIEU,"""Billy"" Guidry",1110 Taylor St.,,Sulphur,LA,70663,5,337-527-8552,W,M,D,250,12/31/2014,1/1/2009,Marshal Guidry +Member of School Board ,District 1 ,1724 Kirkman St.,,Lake Charles,LA,70601,337-491-1600,CALCASIEU,"R. L. Webb, Jr.",6751 Joe Spears Rd.,,Iowa,LA,70647,5,337-436-2903,W,M,D,255,12/31/2010,1/1/2007,Mr. Webb +Member of School Board ,District 2 ,1724 Kirkman St.,,Lake Charles,LA,70601,337-491-1600,CALCASIEU,"Fredman ""Fred"" Hardy",2824 Donatiel St.,,Lake Charles,LA,70601,5,337-433-6988,B,M,D,255,12/31/2010,1/1/2007,Mr. Hardy +Member of School Board ,District 3 ,1724 Kirkman St.,,Lake Charles,LA,70601,337-491-1600,CALCASIEU,Clara F. Duhon,614 Oleo St.,,Lake Charles,LA,70601,5,337-439-6905,B,F,D,255,12/31/2010,1/1/2007,Mr. Duhon +Member of School Board ,District 4 ,1724 Kirkman St.,,Lake Charles,LA,70601,337-491-1600,CALCASIEU,"""Annette"" Ballard",2460 Talouse Ln.,,Lake Charles,LA,70605,5,337-477-6345,W,F,D,255,12/31/2010,1/1/2007,Ms. Ballard +Member of School Board ,District 5 ,1724 Kirkman St.,,Lake Charles,LA,70601,337-491-1600,CALCASIEU,Dale Bernard,1028 Iberville,,Lake Charles,LA,70607,5,337-477-3961,W,M,D,255,12/31/2010,1/1/2007,Mr. Bernard +Member of School Board ,District 6 ,1724 Kirkman St.,,Lake Charles,LA,70601,337-491-1600,CALCASIEU,"""Bill"" Jongbloed",2505 Karen Ln.,,Lake Charles,LA,70605,5,337-478-4909,W,M,R,255,12/31/2010,1/1/2007,Mr. Jongbloed +Member of School Board ,District 7 ,1724 Kirkman St.,,Lake Charles,LA,70601,337-491-1600,CALCASIEU,"Mack Dellafosse, Jr.",1917 19th St.,,Lake Charles,LA,70601,5,337-477-6019,B,M,D,255,12/31/2010,1/1/2007,Mr. Dellafosse +Member of School Board ,District 8 ,1724 Kirkman St.,,Lake Charles,LA,70601,337-491-1600,CALCASIEU,"James W. ""Jimmy"" Pitre",4500 Highland Dr.,,Lake Charles,LA,70605,5,337-477-3032,W,M,R,255,12/31/2010,1/1/2007,Mr. Pitre +Member of School Board ,District 9 ,1724 Kirkman St.,,Lake Charles,LA,70601,337-491-1600,CALCASIEU,"Randall ""Randy"" Burleigh",1711 Hollis Rd.,,Westlake,LA,70669,5,337-439-8416,W,M,D,255,12/31/2010,1/1/2007,Mr. Burleigh +Member of School Board ,District 10 ,1724 Kirkman St.,,Lake Charles,LA,70601,337-491-1600,CALCASIEU,"James ""Jim"" Karr",P.O. Box 716,,DeQuincy,LA,70633,5,337-786-2568,W,M,D,255,12/31/2010,1/1/2007,Mr. Karr +Member of School Board ,District 11 ,1724 Kirkman St.,,Lake Charles,LA,70601,337-491-1600,CALCASIEU,Chad Guidry,975 Miss Daisy Dr.,,Sulphur,LA,70665,5,337-558-6056,W,M,R,255,12/31/2010,1/1/2007,Mr. Guidry +Member of School Board ,District 12 ,1724 Kirkman St.,,Lake Charles,LA,70601,337-491-1600,CALCASIEU,Joe Andrepont,1317 Bernadette Dr.,,Sulphur,LA,70663,5,337-527-3652,W,M,D,255,12/31/2010,1/1/2007,Mr. Andrepont +Member of School Board ,District 13 ,1724 Kirkman St.,,Lake Charles,LA,70601,337-491-1600,CALCASIEU,"William ""Billy"" Breaux",1305 Peach Tree Rd.,,Sulphur,LA,70663,5,337-625-9861,W,M,R,255,12/31/2010,1/1/2007,Mr. Breaux +Member of School Board ,District 14 ,1724 Kirkman St.,,Lake Charles,LA,70601,337-491-1600,CALCASIEU,Elray Victorian,2722 Walden Dr.,,Lake Charles,LA,70607,5,337-474-3664,B,M,D,255,12/31/2010,1/1/2007,Mr. Victorian +Member of School Board ,District 15 ,1724 Kirkman St.,,Lake Charles,LA,70601,337-491-1600,CALCASIEU,Bryan LaRocque,1814 Hollow Cove Ln.,,Lake Charles,LA,70611,5,337-855-9598,W,M,R,255,12/31/2010,1/1/2007,Mr. LaRocque +Justice of the Peace ,Justice of the Peace Ward 1 ,1318 Idlebrook Dr.,,Lake Charles,LA,70611,337-855-3496,CALCASIEU,Ashton Richard,1135 W. Bristol Dr.,,Lake Charles,LA,70611,5,337-855-3496,W,M,R,265,12/31/2014,1/1/2009,Mr. Richard +Justice of the Peace ,Justice of the Peace Ward 2 ,P. O. Box 4,,Hayes,LA,70646,337-622-3417,CALCASIEU,Percy Aucoin,P. O. Box 4,,Hayes,LA,70646,5,337-622-3417,W,M,D,265,12/31/2014,1/1/2009,Mr. Aucoin +Justice of the Peace ,Justice of the Peace Ward 5 ,4954-B Alligator Park Rd.,,Starks,LA,70661,337-743-5318,CALCASIEU,Gerald A. Fountain,4954 B Alligator Park Rd.,,Starks,LA,70661,5,337-743-5318,W,M,D,265,12/31/2014,1/1/2009,Mr. Fountain +Justice of the Peace ,Justice of the Peace Ward 6 ,1001 Myrtle St.,,DeQuincy,LA,70633,337-786-4000,CALCASIEU,"Thomas ""Tom"" Threet",P. O. Box 1002,,DeQuincy,LA,70633,5,337-274-0820,W,M,R,265,12/31/2014,1/1/2009,Mr. Threet +Justice of the Peace ,Justice of the Peace Ward 7 ,2259 Custer Dr.,,Vinton,LA,70668,337-589-7844,CALCASIEU,Danny Landry,2259 Custer Dr.,,Vinton,LA,70668,5,337-589-7844,W,M,D,265,12/31/2014,1/1/2009,Mr. Landry +Justice of the Peace ,Justice of the Peace Ward 8 ,6581 Jerry Hebert Rd.,,Lake Charles,LA,70615,337-582-3180,CALCASIEU,"Norman ""Butch"" Ryan",4267 Hecker Rd.,,Iowa,LA,70647,5,337-582-3324,W,M,D,265,12/31/2014,1/1/2009,Mr. Ryan +Constable ,Justice of the Peace Ward 1 ,1207 Cheyenne Dr.,,Lake Charles,LA,70611,337-855-4065,CALCASIEU,Louis Michiels,1207 Cheyenne Dr.,,Lake Charles,LA,70611,5,337-855-4065,W,M,R,267,12/31/2014,1/1/2009,Mr. Michiels +Constable ,Justice of the Peace Ward 2 ,P.O. Box 89,,Hayes,LA,70646,337-622-3423,CALCASIEU,"Roland ""Perch"" Bertrand",P. O. Box 89,,Hayes,LA,70646,5,337-622-3423,W,M,D,267,12/31/2014,1/1/2009,Mr. Bertrand +Constable ,Justice of the Peace Ward 5 ,1184 Greenmoore Rd.,,Starks,LA,70661,337-743-6201,CALCASIEU,Arnold L. Smith,1184 Green Moore Rd.,,Starks,LA,70661,5,337-703-6201,W,M,D,267,12/31/2014,1/1/2009,Mr. Smith +Constable ,Justice of the Peace Ward 6 ,1292 Stephen Rd.,,DeQuincy,LA,70633,337-786-2589,CALCASIEU,Rickey Brummett,P. O. Box 1125,,DeQuincy,LA,70633,5,337-786-6061,W,M,D,267,12/31/2014,1/1/2009,Mr. Brummett +Constable ,Justice of the Peace Ward 7 ,1618 West St.,,Vinton,LA,70668,337-589-0036,CALCASIEU,Wayne Doucette,1517 Eddy St.,,Vinton,LA,70668,5,337-589-3275,W,M,D,267,12/31/2014,1/1/2009,Mr. Doucette +Constable ,Justice of the Peace Ward 8 ,6606 Jerry Hebert Rd.,,Lake Charles,LA,70615,337-582-3411,CALCASIEU,Orgy J. Broussard,6606 Jerry Hebert Rd.,,Lake Charles,LA,70615,5,337-582-3411,W,M,D,267,12/31/2014,1/1/2009,Mr. Broussard +Mayor ,City of DeQuincy ,P. O. Box 968,,DeQuincy,LA,,337-786-8241,CALCASIEU,"""Lawrence"" Henagan",116 Chavis Sq.,,DeQuincy,LA,70633,5,337-786-2292,W,M,D,300,12/31/2010,1/1/2007,Mr. Henagan +Mayor ,City of Lake Charles ,P. O. Box 900,,Lake Charles,LA,,337-491-1201,CALCASIEU,"""Randy"" Roach",161 E. Greenway St.,,Lake Charles,LA,70605,5,337-478-7763,W,M,D,300,6/30/2013,7/1/2009,Mayor Roach +Mayor ,City of Sulphur ,P. O. Box 1309,,Sulphur,LA,,337-527-4500,CALCASIEU,"""Ron"" LeLeux",333 Picard Rd.,,Sulphur,LA,70663,5,337-527-7886,W,M,D,300,5/18/2010,5/16/2006,Mayor LeLeux +Mayor ,City of Westlake ,P. O. Drawer 700,,Westlake,LA,,337-433-0691,CALCASIEU,"""Danny"" Cupit",916 Live Oak St.,,Westlake,LA,70669,5,337-433-4478,W,M,D,300,12/31/2010,2/19/2007,Mayor Cupit +Mayor ,Town of Iowa ,P. O. Box 1707,,Iowa,LA,,337-582-3535,CALCASIEU,C. J. Scheufens,P.O. Box 335,,Iowa,LA,70647,5,337-582-6691,W,M,D,300,12/31/2010,1/1/2007,Mayor Scheufens +Mayor ,Town of Vinton ,1200 Horridge St.,,Vinton,LA,,337-589-7453,CALCASIEU,Kenneth O. Stinson,1403 Horridge St.,,Vinton,LA,70668,5,337-589-3962,W,M,D,300,6/30/2013,7/1/2009,Mayor Stinson +Chief of Police ,City of Westlake ,P. O. Box 700,,Westlake,LA,70669,337-433-0691,CALCASIEU,Jeremy Cryer,421 McKinley St.,,Westlake,LA,70669,5,337-497-0708,W,M,O,305,12/31/2010,1/1/2007,Chief Cryer +Chief of Police ,Town of Iowa ,P. O. Box 1707,,Iowa,LA,70647,337-582-3535,CALCASIEU,"Howard ""Keith"" Vincent",P.O. Box 955,,Iowa,LA,70647,5,337-582-7681,W,M,D,305,12/31/2010,1/1/2007,Mr. Vincent +Chief of Police ,Town of Vinton ,1200 Horridge St.,,Vinton,LA,70668,337-589-7453,CALCASIEU,Ricky Fox,1903 Fontenot St.,,Vinton,LA,70668,5,337-589-7197,W,M,D,305,6/30/2013,7/1/2009,Chief Fox +Councilman at Large ,City of DeQuincy ,P. O. Box 968,,DeQuincy,LA,70633,337-786-8241,CALCASIEU,Denise Maddox,115 Boise St.,,Dequincy,LA,70633,5,337-786-4378,W,F,D,308,12/31/2010,1/1/2007,Ms. Maddox +Council Member ,"District A, Town of Iowa ",P. O. Box 1707,,Iowa,LA,70647,337-582-3535,CALCASIEU,"Jerry R. ""Lap"" Lapearous",P.O. Box 172,,Iowa,LA,70647,5,337-582-3648,W,M,D,310,12/31/2010,1/1/2007,Mr. Lapearous +Council Member ,"District B, Town of Iowa ",P. O. Box 1707,,Iowa,LA,70647,337-582-3535,CALCASIEU,Larry Hardy,100 Harper St.,,Iowa,LA,70647,5,337-582-6665,W,M,R,310,12/31/2010,1/1/2007,Mr. Hardy +Council Member ,"District C, Town of Iowa ",P. O. Box 1707,,Iowa,LA,70647,337-582-3535,CALCASIEU,Calvin Caesar,P.O. Box 190,,Iowa,LA,70647,5,337-263-0563,B,M,D,310,12/31/2010,1/1/2007,Mr. Ceasar +Council Member ,"District D, Town of Iowa ",P. O. Box 1707,,Iowa,LA,70647,337-582-3535,CALCASIEU,"Thomas ""Tommy"" Talbot",P.O. Box 834,,Iowa,LA,70647,5,337-582-3267,W,M,D,310,12/31/2010,1/1/2007,Mr. Talbot +Council Member ,"District E, Town of Iowa ",P. O. Box 1707,,Iowa,LA,70647,337-582-3535,CALCASIEU,Gerald Guidry,P.O. Box 259,,Iowa,LA,70647,5,337-582-3217,W,M,D,310,12/31/2010,1/1/2007,Mr. Guidry +Council Member ,"Division A, City of Westlake ",P. O. Box 700,,Westlake,LA,70669,337-433-0691,CALCASIEU,John M. Cradure,1308 E. Holly Hill Circle,,Westlake,LA,70669,5,337-497-0634,W,M,D,310,12/31/2010,1/1/2007, +Council Member ,"Division B, City of Westlake ",,,,LA,,,CALCASIEU,Lori Peterson,P.O. Box 623,,Westlake,LA,70669,5,337-433-6836,W,F,R,310,12/31/2010,5/15/2007,Ms. Peterson +Council Member ,"Division C, City of Westlake ",,,,LA,,,CALCASIEU,"""Wally"" Anderson",1316 W. Holly Circle,,Westlake,LA,70669,5,337-436-2632,W,M,D,310,12/31/2010,1/1/2007,Mr. Anderson +Council Member ,"Division D, City of Westlake ",,,,LA,,,CALCASIEU,"""Dan"" Racca",1324 Hilma St.,,Westlake,LA,70669,5,337-439-8519,W,M,D,310,12/31/2010,1/1/2007,Mr. Racca +Council Member ,"Division E, City of Westlake ",,,,LA,,,CALCASIEU,"""Bob"" Hardey",2115 Linda Dr.,,Westlake,LA,70669,5,337-436-8961,W,M,D,310,12/31/2010,1/1/2007,Mr. Hardey +Councilman ,"District 1, City of DeQuincy ",P. O. Box 968,,DeQuincy,LA,70633,337-786-8241,CALCASIEU,Lynne Treme,P.O. Box 450,,DeQuincy,LA,70633,5,337-786-4807,W,F,D,310,12/31/2010,1/1/2007,Mr. Treme +Councilman ,"District 1, City of Sulphur ",P. O. Box 1309,,Sulphur,LA,70664-1309,337-527-4500,CALCASIEU,"""Dru"" Beglis Ellender",1100 E Carlton,,Sulphur,LA,70663,5,337-528-2468,W,F,D,310,5/18/2010,5/16/2006,Ms. Ellender +Councilman ,"District 1, City of Sulphur ",P. O. Box 1309,,Sulphur,LA,70664-1309,337-527-4500,CALCASIEU,"Drusilla ""Dru"" Ellender, ",1100 E. Carlton St.,,Sulphur,LA,70663-1324,10,337-528-2468,W,F,D,310,,, +Councilman ,"District 2, City of DeQuincy ",P. O. Box 968,,DeQuincy,LA,70633,337-786-8241,CALCASIEU,W. Tracey Brown,119 Boise St.,,Dequincy,LA,70633,5,337-786-5529,W,M,D,310,12/31/2010,1/1/2007,Mr. Brown +Councilman ,"District 2, City of Sulphur ",P. O. Box 1309,,Sulphur,LA,70664-1309,337-527-4500,CALCASIEU,"Michael ""Mike"" Koonce",403 Navarre,,Sulphur,LA,70663,5,337-527-7429,W,M,D,310,5/18/2010,5/16/2006,Mr. Koonce +Councilman ,"District 2, City of Sulphur ",P. O. Box 1309,,Sulphur,LA,70664-1309,337-527-4500,CALCASIEU,"Michael ""Mike"" Koonce, ",403 Navarre St.,,Sulphur,LA,70663-6641,10,337-540-1272,W,M,D,310,,, +Councilman ,"District 3, City of DeQuincy ",P. O. Box 968,,DeQuincy,LA,70633,337-786-8241,CALCASIEU,Judy Landry,P.O. Box 843,,Dequincy,LA,70633,5,337-786-7197,W,F,D,310,12/31/2010,1/1/2007,Ms. Landry +Councilman ,"District 3, City of Sulphur ",P. O. Box 1309,,Sulphur,LA,70664-1309,337-527-4500,CALCASIEU,"""Chris"" Duncan",1509 Melanie,,Sulphur,LA,70664,5,337-527-1033,W,M,R,310,5/18/2010,5/16/2006,Mr. Duncan +Councilman ,"District 4, City of DeQuincy ",P. O. Box 968,,DeQuincy,LA,70633,337-786-8241,CALCASIEU,Andrea Coleman,222 Jefferson St.,,DeQuincy,LA,70633,5,337-786-4532,B,F,D,310,12/31/2010,1/1/2007,Ms. Coleman +Councilman ,"District 4, City of Sulphur ",P. O. Box 1309,,Sulphur,LA,70664-1309,337-527-4500,CALCASIEU,"Joseph ""Randy"" Favre, ",2011 Marge Ln.,,Sulphur,LA,70663-5223,10,337-625-2558,W,M,R,310,,, +Councilman ,"District 4, City of Sulphur ",P. O. Box 1309,,Sulphur,LA,70664-1309,337-527-4500,CALCASIEU,Nancy Clifton Tower,520 N. Lebanon St.,,Sulphur,LA,70663,5,337-625-7379,W,F,R,310,5/18/2010,5/16/2006,Ms. Tower +Councilman ,"District 5, City of Sulphur ",P. O. Box 1309,,Sulphur,LA,70664-1309,337-527-4500,CALCASIEU,Stuart Moss,14 Mulberry,,Lake Charles,LA,70602,5,337-625-5006,W,M,D,310,5/18/2010,5/16/2006,Mr. Moss +Councilman ,"District 5, City of Sulphur ",P. O. Box 1309,,Sulphur,LA,70664-1309,337-527-4500,CALCASIEU,"Stuart Moss, ",11 Mayflower St.,,Sulphur,LA,70663-5515,10,337-625-5006,W,M,D,310,,, +Councilman ,"District A, City of Lake Charles ",P. O. Box 900,,Lake Charles,LA,70602-0900 ,337-491-1201,CALCASIEU,"Marshall Simien, Jr.",2131 Fitzenreiter Rd.,,Lake Charles,LA,70601,5,337-436-7895,B,M,D,310,6/30/2013,7/1/2009,Mr. Simien +Councilman ,"District B, City of Lake Charles ",P. O. Box 900,,Lake Charles,LA,70602-0900 ,337-491-1201,CALCASIEU,Luvertha August,2010 E. Mill St.,,Lake Charles,LA,70601,5,337-439-5135,B,F,D,310,6/30/2013,7/1/2009,Ms. August +Councilman ,"District C, City of Lake Charles ",P. O. Box 900,,Lake Charles,LA,70602-0900 ,337-491-1201,CALCASIEU,Rodney Geyen,1531 Sixth Ave.,,Lake Charles,LA,70601,5,337-433-4018,B,M,D,310,6/30/2013,7/1/2009,Mr. Geyen +Councilman ,"District D, City of Lake Charles ",P. O. Box 900,,Lake Charles,LA,70602-0900 ,337-491-1201,CALCASIEU,John Ieyoub,2018 Charvais Dr.,,Lake Charles,LA,70601,5,337-433-1733,W,M,R,310,6/30/2013,7/1/2009,Mr. Ieyoub +Councilman ,"District E, City of Lake Charles ",P. O. Box 900,,Lake Charles,LA,70602-0900 ,337-491-1201,CALCASIEU,Stuart Weatherford,1508 W. Sale St.,,Lake Charles,LA,70605,5,337-474-6465,W,M,R,310,6/30/2013,7/1/2009,Mr. Weatherford +Councilman ,"District F, City of Lake Charles ",P. O. Box 900,,Lake Charles,LA,70602-0900 ,337-491-1201,CALCASIEU,Dana Carl Jackson,1705 Illinois St.,,Lake Charles,LA,70607,5,337-478-3633,W,M,D,310,6/30/2013,7/1/2009,Mr. Jackson +Councilman ,"District G, City of Lake Charles ",P. O. Box 900,,Lake Charles,LA,70602-0900 ,337-491-1201,CALCASIEU,Mark Eckard,4502 Autumnwood Ln.,,Lake Charles,LA,70605,5,337-474-3976,W,M,R,310,6/30/2013,7/1/2009,Mr. Eckard +Councilman ,Town of Vinton ,1200 Horridge St.,,Vinton,LA,70668,337-589-7453,CALCASIEU,Bliss Bujard,1414 Horridge St.,,Vinton,LA,70668,5,337-589-5402,W,M,R,310,6/30/2013,7/1/2009,Mr. Bujard +Councilman ,Town of Vinton ,1200 Horridge St.,,Vinton,LA,70668,337-589-7453,CALCASIEU,Harold R. Douga,1423 Grace Ave.,,Vinton,LA,70668,5,337-589-3905,W,M,D,310,6/30/2013,7/1/2009,Mr. Douga +Councilman ,Town of Vinton ,1200 Horridge St.,,Vinton,LA,70668,337-589-7453,CALCASIEU,"""B. B."" Loyd",1708 Horridge St.,,Vinton,LA,70668,5,337-589-4245,B,M,D,310,6/30/2013,7/1/2009,Mr. Loyd +Councilman ,Town of Vinton ,1200 Horridge St.,,Vinton,LA,70668,337-589-7453,CALCASIEU,Kevin Merchant,1709 Stevenson St.,,Vinton,LA,70668,5,337-589-6702,W,M,R,310,6/30/2013,7/1/2009,Mr. Merchant +Councilman ,Town of Vinton ,1200 Horridge St.,,Vinton,LA,70668,337-589-7453,CALCASIEU,Paul Patin,P.O. Box 238,,Vinton,LA,70668,5,337-589-7639,W,M,D,310,6/30/2013,7/1/2009,Mr. Patin +DPEC Member ,at Large ,,,,LA,,,CALDWELL,Maxie McCarty,P.O. Box 520,,Grayson,LA,71435,5,318-649-8681,B,M,D,54,2/20/2012,2/20/2008,Mr. McCarty +DPEC Member ,at Large ,,,,LA,,,CALDWELL,"""Greg"" Richardson",P.O. Box 550,,Columbia,LA,71418,5,318-649-0105,W,M,D,54,2/20/2012,2/20/2008,Mr. Richardson +DPEC Member ,at Large ,,,,LA,,,CALDWELL,Betty Robinson,P.O. Box 780,,Columbia,LA,71418,5,318-649-7335,B,F,D,54,2/20/2012,2/20/2008,Ms. Robinson +DPEC Member ,District 1 ,,,,LA,,,CALDWELL,Jane Roberts,P.O. Box 1265,,Columbia,LA,71418,5,318-649-2760,W,F,D,56,2/20/2012,2/20/2008,Ms. Roberts +DPEC Member ,District 2 ,,,,LA,,,CALDWELL,,,,,,,0,,,,,56,,, +DPEC Member ,District 3 ,,,,LA,,,CALDWELL,,,,,,,0,,,,,56,,, +DPEC Member ,District 4 ,,,,LA,,,CALDWELL,,,,,,,0,,,,,56,,, +DPEC Member ,District 5 ,,,,LA,,,CALDWELL,,,,,,,0,,,,,56,,, +DPEC Member ,District 6 ,,,,LA,,,CALDWELL,,,,,,,0,,,,,56,,, +DPEC Member ,District 7 ,,,,LA,,,CALDWELL,,,,,,,0,,,,,56,,, +RPEC Member ,at Large ,,,,LA,,,CALDWELL,,,,,,,0,,,,,64,,, +RPEC Member ,District 1 ,,,,LA,,,CALDWELL,,,,,,,0,,,,,66,,, +RPEC Member ,District 2 ,,,,LA,,,CALDWELL,,,,,,,0,,,,,66,,, +RPEC Member ,District 3 ,,,,LA,,,CALDWELL,,,,,,,0,,,,,66,,, +RPEC Member ,District 4 ,,,,LA,,,CALDWELL,,,,,,,0,,,,,66,,, +RPEC Member ,District 5 ,,,,LA,,,CALDWELL,,,,,,,0,,,,,66,,, +RPEC Member ,District 6 ,,,,LA,,,CALDWELL,,,,,,,0,,,,,66,,, +RPEC Member ,District 7 ,,,,LA,,,CALDWELL,,,,,,,0,,,,,66,,, +Sheriff ,,P. O. Box 60,,Columbia,LA,71418,318-649-2345,CALDWELL,Steven May,P.O. Box 60,,Columbia,LA,71418,5,318-649-5058,W,M,D,225,6/30/2012,7/1/2008,Sheriff May +Clerk of Court ,,P. O. Box 1327,,Columbia,LA,71418,318-649-2272,CALDWELL,Eugene Dunn,P.O. Box 1327,,Columbia,LA,71418,5,318-649-5105,W,M,D,230,6/30/2012,7/1/2008,Mr. Dunn +Assessor ,,P. O. Box 1446,,Columbia,LA,71418,318-649-2636,CALDWELL,Scott Meredith,P.O. Box 730,,Columbia,LA,71418,5,318-649-6533,W,M,O,235,12/31/2012,1/1/2009,Mr. Meredith +Coroner ,,P.O. Box 104,,Columbia,LA,71418,318-649-2311,CALDWELL,"Linus Carroll, ",123 Riser St.,,Columbia,LA,71418-3596,10,318-649-2821,W,M,R,240,,2/15/2010, +Coroner ,,P.O. Box 104,,Columbia,LA,71418,318-649-2311,CALDWELL,Charles W. Clack,P.O. Box 1737,,Columbia,LA,71418,5,,,,,240,,11/2/2009,Mr. Clack +Police Juror,District 1,P. O. Box 1737,,Columbia,LA,71418,318-649-2681,CALDWELL,"Kenneth ""Speck"" Graham",161 Randolph Rd.,,Columbia,LA,71418,5,318-649-7837,W,M,D,245,1/8/2012,1/14/2008,Mr. Graham +Police Juror ,District 2 ,P. O. Box 1737,,Columbia,LA,71418,318-649-2681,CALDWELL,Lanny Dark,1232 Hwy. 559,,Columbia,LA,71418,5,318-649-9054,W,M,D,245,1/8/2012,1/14/2008,Mr. Dark +Police Juror ,District 3 ,P. O. Box 1737,,Columbia,LA,71418,318-649-2681,CALDWELL,Bobbie R. Harrison,P.O. BOX 665,,Grayson,LA,71435,5,318-649-3177,W,F,D,245,1/8/2012,1/14/2008,Mr. Harrison +Police Juror ,District 4 ,P. O. Box 1737,,Columbia,LA,71418,318-649-2681,CALDWELL,Eddie Hearns,138 Wendell Dr.,,Columbia,LA,71418,5,318-649-2767,B,M,D,245,1/8/2012,1/14/2008,Mr. Hearns +Police Juror ,District 5 ,P. O. Box 1737,,Columbia,LA,71418,318-649-2681,CALDWELL,Archie Lloyd Williams,195 Eglin St.,,Columbia,LA,71418,5,318-649-2749,W,M,D,245,1/8/2012,1/14/2008,Mr. Williams +Police Juror ,District 6 ,P. O. Box 1737,,Columbia,LA,71418,318-649-2681,CALDWELL,Jimmy Gaylor,P.O. Box 1557,,Columbia,LA,71418,5,318-495-5398,W,M,D,245,1/8/2012,1/14/2008,Mr. Gaylor +Police Juror ,District 7 ,P. O. Box 1737,,Columbia,LA,71418,318-649-2681,CALDWELL,"Charles ""Flukie"" Braddock",P.O. Box 272,,Grayson,LA,71435,5,318-649-2081,W,M,D,245,1/8/2012,1/14/2008,Mr. Braddock +Member of School Board ,District 1 ,P.O. Box 1019,,Columbia,LA,71418,318-649-2689,CALDWELL,David May,308 Agnew Rd.,,Columbia,LA,71418,5,318-649-5027,W,M,R,255,12/31/2010,8/24/2009,Mr. May +Member of School Board ,District 2 ,P.O. Box 1019,,Columbia,LA,71418,318-649-2689,CALDWELL,Russell L. Flint,P.O. Box 1432,,Columbia,LA,71418,5,318-649-0609,W,M,R,255,12/31/2010,12/21/2007,Mr. Flint +Member of School Board ,District 3 ,P.O. Box 1019,,Columbia,LA,71418,318-649-2689,CALDWELL,Mark May,166 Carroll Rd.,,Grayson,LA,71435,5,318-649-6215,W,M,R,255,12/31/2010,1/1/2007,Mr. May +Member of School Board ,District 4 ,P.O. Box 1019,,Columbia,LA,71418,318-649-2689,CALDWELL,Baron D. Glass,P.O.Box 992,,Columbia,LA,71418,5,318-649-6648,B,M,D,255,12/31/2010,1/1/2007,Mr. Glass +Member of School Board ,District 5 ,P.O. Box 1019,,Columbia,LA,71418,318-649-2689,CALDWELL,"""C.R."" Martin",421 Esther Rd.,,Columbia,LA,71418,5,318-649-0856,W,M,D,255,12/31/2010,1/1/2007,Mr. Martin +Member of School Board ,District 6 ,P.O. Box 1019,,Columbia,LA,71418,318-649-2689,CALDWELL,John Garrett,P.O.Box 154,,Clarks,LA,71415,5,318-649-2215,W,M,D,255,12/31/2010,1/1/2007,Mr. Garrett +Member of School Board ,District 7 ,P.O. Box 1019,,Columbia,LA,71418,318-649-2689,CALDWELL,Hershel Volentine,842 Valentine Rd.,,Grayson,LA,71435,5,318-649-6304,W,M,D,255,12/31/2010,1/1/2007,Mr. Volentine +Justice of the Peace ,Justice of the Peace Ward 1 ,1991 Hwy. 848,,Columbia,LA,71418,318-649-7979,CALDWELL,Jeff M. Bailes,127 Bailes Ln.,,Columbia,LA,71418,5,318-649-0371,W,M,D,265,12/31/2014,1/1/2009,Mr. Bailes +Justice of the Peace ,Justice of the Peace Ward 2 ,P.O. Box 425,,Columbia,LA,71418,318-649-0208,CALDWELL,Mary Taylor,P. O. Box 195,,Clarks,LA,71415,5,318-649-7974,W,F,R,265,12/31/2014,1/1/2009,Ms. Taylor +Constable ,Justice of the Peace Ward 1 ,4417 US Hwy. 165,,Columbia,LA,71418,318-649-7926,CALDWELL,"J. N. ""Buddy"" Bailes",1930 Hwy. 133,,Columbia,LA,71418,5,318-649-0800,W,M,D,267,12/31/2014,1/1/2009,Mr. Bailes +Constable ,Justice of the Peace Ward 2 ,P.O. Box 1557,,Columbia,LA,71418,318-649-5117,CALDWELL,Charles Alger,9037 Hwy. 4 W.,,Columbia,LA,71418,5,318-649-7829,W,M,D,267,12/31/2014,1/1/2009,Mr. Alger +Mayor ,Town of Clarks ,P. O. Box 360,,Clarks,LA,,318-649-7218,CALDWELL,Toby Esters,P.O. Box 328,,Clarks,LA,71415,5,318-649-5266,W,M,D,300,12/31/2010,1/1/2007,Mr. Esters +Mayor ,Town of Columbia ,P. O. Box 10,,Columbia,LA,,318-649-6174,CALDWELL,Charles Simons,P.O. Box 1555,,Columbia,LA,71418,5,318-649-7389,W,M,D,300,6/30/2012,7/1/2008,Mayor Simons +Mayor ,Village of Grayson ,P. O. Box 8,,Grayson,LA,,318-649-7148,CALDWELL,Carmen Meredith Head,201 Cruse Rd.,,Grayson,LA,71435,5,318-649-5076,W,F,R,300,12/31/2010,1/1/2007,Ms. Head +Chief of Police,Town of Clarks,P. O. Box 360,,Clarks,LA,71415,318-649-7218,CALDWELL,"""Shawn"" Guinn",P.O. Box 247,,Clarks,LA,71415,5,318-649-0190,W,M,D,305,12/31/2010,1/1/2007,Mr. Guinn +Chief of Police ,Town of Columbia ,P. O. Box 10,,Columbia,LA,71418,318-649-6174,CALDWELL,Clay Bennett,P.O. Box 1412,,Columbia,LA,71418,5,318-649-5210,W,M,D,305,6/30/2012,7/1/2008,Chief Bennett +Chief of Police ,Village of Grayson ,P. O. Box 8,,Grayson,LA,71435,318-649-7148,CALDWELL,"Mitchell ""Mitch"" Bratton",P.O. Box 786,,Grayson,LA,71435,5,318-649-6002,W,M,R,305,12/31/2010,1/1/2007,Mr. Bratton +Alderman ,Town of Clarks ,P. O. Box 360,,Clarks,LA,71415,318-649-7218,CALDWELL,"""Buddy"" Carter",P.O. Box 359,,Clarks,LA,71415,5,318-649-5768,W,M,D,310,12/31/2010,1/1/2007,Mr. Carter +Alderman ,Town of Clarks ,P. O. Box 360,,Clarks,LA,71415,318-649-7218,CALDWELL,Fred Grant,P.O. Box 115,,Clarks,LA,71415,5,318-649-6050,W,M,D,310,12/31/2010,1/1/2007,Mr. Grant +Alderman ,Town of Clarks ,P. O. Box 360,,Clarks,LA,71415,318-649-7218,CALDWELL,Phyllis Holmes,P.O. Box 62,,Clarks,LA,71415,5,318-649-2218,W,F,R,310,12/31/2010,1/1/2007,Ms. Holmes +Alderman ,Town of Clarks ,P. O. Box 360,,Clarks,LA,71415,318-649-7218,CALDWELL,Bonnie Hurst,P.O. Box 122,,Clarks,LA,71415,5,318-649-6696,W,F,D,310,12/31/2010,1/1/2007,Ms. Hurst +Alderman ,Town of Clarks ,P. O. Box 360,,Clarks,LA,71415,318-649-7218,CALDWELL,James King,P.O. Box 295,,Clarks,LA,71415,5,318-649-8306,B,M,D,310,12/31/2010,1/1/2007,Mr. King +Council Member ,Village of Grayson ,P. O. Box 8,,Grayson,LA,71435,318-649-7148,CALDWELL,"Christina ""Chrissy"" Browning",P.O. Box 609,,Grayson,LA,71435,5,318-649-3350,W,F,D,310,12/31/2010,1/1/2007,Mr. Browning +Council Member ,Village of Grayson ,P. O. Box 8,,Grayson,LA,71435,318-649-7148,CALDWELL,Raymond Cruse,P.O. Box 309,,Grayson,LA,71435,5,318-649-7117,W,M,D,310,12/31/2010,1/1/2007,Mr. Cruse +Council Member ,Village of Grayson ,P. O. Box 8,,Grayson,LA,71435,318-649-7148,CALDWELL,Sandra Hillestad Evans,P.O. Box 144,,Grayson,LA,71435,5,318-649-2699,W,F,D,310,12/31/2010,1/1/2007,Ms. Evans +Councilman ,Town of Columbia ,P. O. Box 10,,Columbia,LA,71418,318-649-2631,CALDWELL,"""Ken"" Brockner",P.O. Box 1351,,Columbia,LA,71418,5,318-649-2829,W,M,D,310,6/30/2012,7/1/2008,Mr. Brockner +Councilman ,Town of Columbia ,P. O. Box 10,,Columbia,LA,71418,318-649-2631,CALDWELL,Bonnie M. Crockett,P.O. Box 655,,Columbia,LA,71418,5,318-649-7000,W,F,D,310,6/30/2012,2/23/2009,Ms. Crockett +Councilman ,Town of Columbia ,P. O. Box 10,,Columbia,LA,71418,318-649-2631,CALDWELL,Bruce Frazier,P.O. Box 76,,Columbia,LA,71418,5,318-649-7192,W,M,D,310,6/30/2012,7/1/2008,Mr. Frazier +Councilman ,Town of Columbia ,P. O. Box 10,,Columbia,LA,71418,318-649-2631,CALDWELL,Richard Meredith,P.O. Box 1984,,Columbia,LA,71418,5,318-649-7949,W,M,R,310,6/30/2012,7/1/2008,Mr. Meredith +Councilman ,Town of Columbia ,P. O. Box 10,,Columbia,LA,71418,318-649-2631,CALDWELL,Melvin D. Robinson,P.O. Box 780,,Columbia,LA,71418,5,318-649-7335,B,M,D,310,6/30/2012,7/1/2008,Mr. Robinson +DPEC Member ,at Large ,,,,LA,,,CAMERON,Lee J. Harrison,3355 Grand Chenier Hwy.,,Grand Chenier,LA,70643,5,337-488-5612,B,M,D,54,2/20/2012,2/20/2008,Mr. Harrison +DPEC Member ,at Large ,,,,LA,,,CAMERON,E. Garner Nunez,1572 Hwy. 384,,Lake Charles,LA,70607,5,337-905-2268,W,M,D,54,2/20/2012,2/20/2008,Mr. Nunez +DPEC Member ,at Large ,,,,LA,,,CAMERON,Jeff Sanders,1315 Horseshoe Ln.,,Hackberry,LA,70645,5,337-762-3141,W,M,D,54,2/20/2012,2/20/2008,Mr. Sanders +DPEC Member ,District 1 ,,,,LA,,,CAMERON,,,,,,,0,,,,,56,,, +DPEC Member ,District 2 ,,,,LA,,,CAMERON,,,,,,,0,,,,,56,,, +DPEC Member ,District 3 ,,,,LA,,,CAMERON,,,,,,,0,,,,,56,,, +DPEC Member ,District 4 ,,,,LA,,,CAMERON,,,,,,,0,,,,,56,,, +DPEC Member ,District 5 ,,,,LA,,,CAMERON,,,,,,,0,,,,,56,,, +DPEC Member ,District 6 ,,,,LA,,,CAMERON,,,,,,,0,,,,,56,,, +DPEC Member ,District 7 ,,,,LA,,,CAMERON,,,,,,,0,,,,,56,,, +RPEC Member ,at Large ,,,,LA,,,CAMERON,,,,,,,0,,,,,64,,, +RPEC Member ,District 1 ,,,,LA,,,CAMERON,,,,,,,0,,,,,66,,, +RPEC Member ,District 2 ,,,,LA,,,CAMERON,,,,,,,0,,,,,66,,, +RPEC Member ,District 3 ,,,,LA,,,CAMERON,,,,,,,0,,,,,66,,, +RPEC Member ,District 4 ,,,,LA,,,CAMERON,,,,,,,0,,,,,66,,, +RPEC Member ,District 5 ,,,,LA,,,CAMERON,,,,,,,0,,,,,66,,, +RPEC Member ,District 6 ,,,,LA,,,CAMERON,,,,,,,0,,,,,66,,, +RPEC Member ,District 7 ,,,,LA,,,CAMERON,,,,,,,0,,,,,66,,, +Sheriff ,,P. O. Box 1250,,Cameron,LA,70631,337-616-8808,CAMERON,Theos Duhon,P.O. Box 1250,,Cameron,LA,70631,5,337-598-3264,W,M,D,225,6/30/2012,7/1/2008,Sheriff Duhon +Clerk of Court ,,P. O. Box 549,,Cameron,LA,70631,337-775-5316,CAMERON,Carl Broussard,P.O. Box 549,,Cameron,LA,70631,5,337-538-2322,W,M,,230,6/30/2012,7/1/2008,Mr. Broussard +Assessor ,,P. O. Box 1100,,Cameron,LA,70631,337-775-5416,CAMERON,"""Mona"" Kelley",P.O. Box 1551,,Cameron,LA,70631,5,337-775-5298,W,F,R,235,12/31/2012,1/1/2009,Ms. Kelly +Coroner ,,P.O. Box 68,,Creole,LA,70632,337-542-4201,CAMERON,Richard D. Sanders,P.O. Box 12803,,Lake Charles,LA,70612,5,337-540-2242,W,M,,240,3/25/2012,3/25/2008,Mr. Sanders +Police Juror,District 1,P. O. Box 1280,,Cameron,LA,70631,337-905-1190,CAMERON,"Magnus ""Sonny"" McGee",121 Alvin Ln.,,Johnson Bayou,LA,70631,5,337-569-2359,W,M,,245,1/8/2012,1/14/2008,Mr. McGee +Police Juror ,District 2 ,P. O. Box 1280,,Cameron,LA,70631,337-475-9167,CAMERON,"""Steve"" Racca",478 Meyers Rd.,,Hackberry,LA,70645,5,337-762-3554,W,M,D,245,1/8/2012,1/14/2008,Mr. Racca +Police Juror ,District 3 ,P. O. Box 1280,,Cameron,LA,70631,337-475-9167,CAMERON,"Charles Precht, III",159 W. Precht Rd.,,Bell City,LA,70630,5,337-598-2745,W,M,D,245,1/8/2012,1/14/2008,Mr. Precht +Police Juror ,District 4 ,P. O. Box 1280,,Cameron,LA,70631,337-475-9167,CAMERON,Thomas McDaniel,P.O. Box 274,,Creole,LA,70632,5,337-542-4540,W,M,,245,1/8/2012,1/14/2008,Mr.McDaniel +Police Juror ,District 5 ,P. O. Box 1280,,Cameron,LA,70631,337-475-9167,CAMERON,Scott A. Trahan,P.O. Box 235,,Creole,LA,70632,5,337-542-4745,W,M,D,245,1/8/2012,1/14/2008,Mr. Trahan +Police Juror ,District 6 ,P. O. Box 1280,,Cameron,LA,70631,337-475-9167,CAMERON,Kirk Burleigh,P.O. Box 576,,Cameron,LA,70631,5,337-775-5349,W,M,D,245,1/8/2012,1/14/2008,Mr. Burleigh +Police Juror ,District 7 ,P. O. Box 1280,,Cameron,LA,70631,337-475-9167,CAMERON,Darryl Farque,10690 Hwy. 384,,Big Lake,LA,70607,5,337-905-1289,W,M,D,245,1/8/2012,1/14/2008,Mr. Farque +Member of School Board ,District 1 ,P. O. Box 1548,,Cameron,LA,70631-1548,337-905-5784,CAMERON,Marsha Trahan,6598 Gulf Beach Hwy.,,Cameron,LA,70631,5,337-569-2661,W,F,D,255,12/31/2010,1/1/2008,Ms Trahan +Member of School Board ,District 2 ,P. O. Box 1548,,Cameron,LA,70631-1548,337-475-9167,CAMERON,Dwayne Sanner,1095 Poncho Ln.,,Hackberry,LA,70645,5,337-762-3878,W,M,D,255,12/31/2010,1/1/2008,Mr. Sanner +Member of School Board ,District 3 ,P. O. Box 1548,,Cameron,LA,70631-1548,337-475-9167,CAMERON,R. Scott Nunez,519 Sweetlake Camp Rd.,,Bell City,LA,70630,5,337-905-2252,W,M,R,255,12/31/2010,1/1/2008,Mr. Nunez +Member of School Board ,District 4 ,P. O. Box 1548,,Cameron,LA,70631-1548,337-475-9167,CAMERON,"Dorothy ""Dot"" Theriot",152 Helen St.,,Grand Chenier,LA,70643,5,337-538-2272,W,F,,255,12/31/2010,1/1/2008,Ms. Theriot +Member of School Board ,District 5 ,P. O. Box 1548,,Cameron,LA,70631-1548,337-475-9167,CAMERON,Loston McEvers,P.O. Box 240,,Creole,LA,70632,5,337-249-1124,W,M,D,255,12/31/2010,1/1/2008,Mr. McEvers +Member of School Board ,District 6 ,P. O. Box 1548,,Cameron,LA,70631-1548,337-475-9167,CAMERON,Marvin Trahan,P.O. Box 712,,Cameron,LA,70631,5,337-474-8924,W,M,R,255,12/31/2010,1/1/2008,Mr. Trahan +Member of School Board ,District 7 ,P. O. Box 1548,,Cameron,LA,70631-1548,337-475-9167,CAMERON,Karen Faulk Nunez,P. O. Box 1548,,Cameron,LA,70631-1548,10,337-905-5748,W,F,,255,12/31/2010,1/1/2008,Ms. Nunez +Justice of the Peace ,Justice of the Peace Ward 1 ,,,,LA,,,CAMERON,Carrie J. Broussard,629 Lowry Rd.,,Lake Arthur,LA,70549,5,337-774-3248,W,F,D,265,12/31/2014,1/1/2009,Ms Broussard +Justice of the Peace ,Justice of the Peace Ward 2 ,549 Mermentau River Rd.,,Grand Chenier,LA,70643,337-538-2446,CAMERON,Nadine Richard,122 Jones St.,,Grand Chenier,LA,70643,5,337-538-2369,W,F,D,265,12/31/2014,1/1/2009,Ms. Richard +Justice of the Peace ,Justice of the Peace Ward 3 ,103 Bud Murphy Rd.,,Cameron,LA,70631,337-775-5072,CAMERON,"Harold W. ""Buddy"" Hardie",103 Bud Murphy Ln.,,Cameron,LA,70631,5,337-775-5072,W,M,D,265,12/31/2014,1/1/2009,Mr. Hardie +Justice of the Peace ,Justice of the Peace Ward 4 ,10510 Hwy. 384,,Lake Charles,LA,70607,337-598-2934,CAMERON,Mckinley Wayne Guidry,155 Hebert Camp Rd.,,Lake Charles,LA,70607,5,337-598-2679,W,M,D,265,12/31/2014,1/1/2009,Mr. Guidry +Justice of the Peace ,Justice of the Peace Ward 5 ,6598 Gulf Beach Hwy.,,Cameron,LA,70631,337-569-2661,CAMERON,Connie A. Trahan,6482 Gulf Beach Hwy.,,Cameron,LA,70631,5,337-569-2333,W,F,D,265,12/31/2014,1/1/2009,Mr. Trahan +Justice of the Peace ,Justice of the Peace Ward 6 ,225 Meyers Rd.,,Hackberry,LA,70645,337-762-4626,CAMERON,Brian Desormeaux,225 Meyers Rd.,,Hackberry,LA,70645,5,337-762-4626,W,M,R,265,12/31/2014,1/1/2009,Mr. Desormeaux +Constable ,Justice of the Peace Ward 1 ,P.O. Box 531,,Gueydan,LA,70549,337-774-2923,CAMERON,Nolan J. Broussard,P. O. Box 531,,Lake Arthur,LA,70549,5,337-774-2923,W,M,,267,12/31/2014,1/1/2009,Mr. Broussard +Constable ,Justice of the Peace Ward 2 ,119 East Ln.,,Grand Chenier,LA,70643,337-538-2254,CAMERON,Freddie A. Theriot,152 Helen St.,,Grand Chenier,LA,70643,5,337-538-2272,W,M,,267,12/31/2014,1/1/2009,Mr. Theriot +Constable ,Justice of the Peace Ward 3 ,P.O. Box 583,,Cameron,LA,70631,337-775-7138,CAMERON,Davy Doxey,P. O. Box 150,,Cameron,LA,70631,5,337-775-5284,W,M,D,267,12/31/2014,1/1/2009,Mr. Doxey +Constable ,Justice of the Peace Ward 4 ,1071 Hwy. 384,,Lake Charles,LA,70607,337-598-3127,CAMERON,"John ""Buck"" Stephenson",10871 Hwy. 384,,Lake Charles,LA,70607,5,337-598-3127,W,M,,267,12/31/2014,1/1/2009,Mr. Stephenson +Constable ,Justice of the Peace Ward 5 ,140 Alivn Ln.,,Cameron,LA,70631,337-569-2562,CAMERON,"""Tim"" Trahan",140 Alvin Ln.,,Cameron,LA,70631,5,337-764-3651,W,M,R,267,12/31/2014,1/1/2009,Mr. Trahan +Constable ,Justice of the Peace Ward 6 ,194 J. B. Constance Ln.,,Hackberry,LA,70645,337-762-3555,CAMERON,"""Gwen"" Sanner Constance",195 J.B. Constance Ln.,,Hackberry,LA,70645,5,337-762-3555,W,M,D,267,12/31/2014,1/1/2009,Ms. Constance +DPEC Member ,at Large ,,,,LA,,,CATAHOULA,"Lee C. Foster, Jr.",P.O. Box 667,,Jonesville,LA,71343,5,318-339-6002,W,M,D,54,2/20/2012,2/20/2008,Mr. Foster +DPEC Member ,at Large ,,,,LA,,,CATAHOULA,"Jack F. Owens, Jr.",P.O. Box 595,,Harrisonburg,LA,71340,5,318-744-5431,W,M,D,54,2/20/2012,2/20/2008,Mr. Owens +DPEC Member ,at Large ,,,,LA,,,CATAHOULA,John C. Reeves,1000 Foster St.,,Jonesville,LA,71343,5,318-339-9587,W,M,D,54,2/20/2012,2/20/2008,Mr. Reeves +DPEC Member ,at Large ,,,,LA,,,CATAHOULA,James H. Terry,P.O. Box 179,,Harrisonburg,LA,71340,5,318-744-5471,W,M,D,54,2/20/2012,2/20/2008,Mr. Terry +DPEC Member ,District 1 ,,,,LA,,,CATAHOULA,,,,,,,0,,,,,56,,, +DPEC Member ,District 2 ,,,,LA,,,CATAHOULA,,,,,,,0,,,,,56,,, +DPEC Member ,District 3 ,,,,LA,,,CATAHOULA,,,,,,,0,,,,,56,,, +DPEC Member ,District 4 ,,,,LA,,,CATAHOULA,,,,,,,0,,,,,56,,, +DPEC Member ,District 5 ,,,,LA,,,CATAHOULA,,,,,,,0,,,,,56,,, +DPEC Member ,District 6 ,,,,LA,,,CATAHOULA,,,,,,,0,,,,,56,,, +DPEC Member ,District 7 ,,,,LA,,,CATAHOULA,,,,,,,0,,,,,56,,, +DPEC Member ,District 8 ,,,,LA,,,CATAHOULA,,,,,,,0,,,,,56,,, +DPEC Member ,District 9 ,,,,LA,,,CATAHOULA,,,,,,,0,,,,,56,,, +RPEC Member ,at Large ,,,,LA,,,CATAHOULA,Paul A. Lemke,P.O. Box 595,,Harrisonburg,LA,71340,5,318-744-5431,W,M,R,64,2/20/2012,2/20/2008,Mr. Lemke +RPEC Member ,District 1 ,,,,LA,,,CATAHOULA,,,,,,,0,,,,,66,,, +RPEC Member ,District 2 ,,,,LA,,,CATAHOULA,,,,,,,0,,,,,66,,, +RPEC Member ,District 3 ,,,,LA,,,CATAHOULA,,,,,,,0,,,,,66,,, +RPEC Member ,District 4 ,,,,LA,,,CATAHOULA,,,,,,,0,,,,,66,,, +RPEC Member ,District 5 ,,,,LA,,,CATAHOULA,,,,,,,0,,,,,66,,, +RPEC Member ,District 6 ,,,,LA,,,CATAHOULA,,,,,,,0,,,,,66,,, +RPEC Member ,District 7 ,,,,LA,,,CATAHOULA,,,,,,,0,,,,,66,,, +RPEC Member ,District 8 ,,,,LA,,,CATAHOULA,,,,,,,0,,,,,66,,, +RPEC Member ,District 9 ,,,,LA,,,CATAHOULA,,,,,,,0,,,,,66,,, +Sheriff ,,P. O. Box 655,,Harrisonburg,LA,71340,318-744-5411,CATAHOULA,James Glen Kelly,P.O. Box 655,,Harrisonburg,LA,71340,5,318-339-8592,W,M,D,225,6/30/2012,7/1/2008,Sheriff Kelly +Clerk of Court ,,P. O. Box 654,,Harrisonburg,LA,71340,318-744-5497,CATAHOULA,Janet T. Payne,P.O. Box 654,,Harrisonburg,LA,71340,5,318-386-0473,W,F,D,230,6/30/2012,7/1/2008,Ms. Payne +Assessor ,,P. O. Box 570,,Harrisonburg,LA,71340,318-744-5291,CATAHOULA,Carmon F. Walker,P.O. Box 65,,Jonesville,LA,71343,5,318-339-8322,W,M,O,235,12/31/2012,1/1/2009,Mr. Walker +Coroner ,,P.O. Box 655,,Harrisonburg,LA,71340,318-744-5411,CATAHOULA,Raymond Rouse,2805 Fourth St.,,Jonesville,LA,71343,5,318-339-6269,W,M,O,240,3/25/2012,3/24/2008,Mr. Rouse +Police Juror,District 1,P. O. Box 258,,Harrisonburg,LA,71340,318-744-5435,CATAHOULA,Billy D. Fletcher,3725 Hwy. 921,,Clayton,LA,71326,5,318-389-5894,W,M,D,245,1/8/2012,1/14/2008,Mr. Fletcher +Police Juror ,District 2 ,P. O. Box 258,,Harrisonburg,LA,71340,318-744-5435,CATAHOULA,"Albert ""Kaline"" Patten",P. O. Box 133,,Sicily Island,LA,71368,5,318-389-5912,W,M,O,245,1/8/2012,1/14/2008,Mr. Patten +Police Juror ,District 3 ,P. O. Box 258,,Harrisonburg,LA,71340,318-744-5435,CATAHOULA,Garry L. Wright,259 Horace Rd.,,Harrisonburg,LA,71340,5,318-744-1583,W,M,D,245,1/8/2012,1/14/2008,Mr. Wright +Police Juror ,District 4 ,P. O. Box 258,,Harrisonburg,LA,71340,318-744-5435,CATAHOULA,"J. D. Alexander, Jr.",872 Jug Rd.,,Harrisonburg,LA,71340,5,318-744-5560,W,M,R,245,1/8/2012,1/14/2008,Mr. Alexander +Police Juror ,District 5 ,P. O. Box 258,,Harrisonburg,LA,71340,318-744-5435,CATAHOULA,Delores McEntyre,871 Taunton Loop Rd.,,Jonesville,LA,71343,5,318-339-8451,W,F,O,245,1/8/2012,1/14/2008,Ms. McEntyre +Police Juror ,District 6 ,P. O. Box 258,,Harrisonburg,LA,71340,318-744-5435,CATAHOULA,Libby Ford,200 Uncle Johnie Rd.,,Jonesville,LA,71343,5,318-339-8460,W,F,O,245,1/8/2012,1/14/2008,Ms. Ford +Police Juror ,District 7 ,P. O. Box 258,,Harrisonburg,LA,71340,318-744-5435,CATAHOULA,"Benny Vault, Jr.",507 Tom Cotton St.,,Jonesville,LA,71343,5,318-613-7395,B,M,D,245,1/8/2012,1/14/2008,Mr. Vault +Police Juror ,District 8 ,P. O. Box 258,,Harrisonburg,LA,71340,318-744-5435,CATAHOULA,"Joe Barber, Sr.",801 Johnson St.,,Jonesville,LA,71343,5,318-339-9205,B,M,D,245,1/8/2012,1/14/2008,Mr. Barber +Police Juror ,District 9 ,P. O. Box 258,,Harrisonburg,LA,71340,318-744-5435,CATAHOULA,Jackie Paulk,29630 Hwy. 124,,Jonesville,LA,71343,5,318-339-8038,W,M,O,245,1/8/2012,1/14/2008,Mr. Paulk +Member of School Board ,District 1 ,P. O. Box 290,,Harrisonburg,LA,71340,318-744-5727,CATAHOULA,Dorothy Jean Watson,951 Ditto Rd.,,Sicily Island,LA,71368,5,318-389-5911,B,F,D,255,12/31/2010,1/1/2007,Ms. Watson +Member of School Board ,District 2 ,P. O. Box 290,,Harrisonburg,LA,71340,318-744-5727,CATAHOULA,Jane Martin,2185 Hwy. 8,,Sicily Island,LA,71368,5,318-389-4442,W,F,D,255,12/31/2010,1/1/2007,Ms. Martin +Member of School Board ,District 3 ,P. O. Box 290,,Harrisonburg,LA,71340,318-744-5727,CATAHOULA,Dewey W. Stockman,P.O.Box 17,,Rhinehart,LA,71363,5,318-992-2306,W,M,D,255,12/31/2010,1/1/2007,Mr. Stockman +Member of School Board ,District 4 ,P. O. Box 290,,Harrisonburg,LA,71340,318-744-5727,CATAHOULA,Lillian S. Aplin,P.O. Box 192,,Harrisonburg,LA,71340,5,318-744-5215,W,F,D,255,12/31/2010,1/1/2007,Ms. Aplin +Member of School Board ,District 5 ,P. O. Box 290,,Harrisonburg,LA,71340,318-744-5727,CATAHOULA,"""Tim"" Tomlinson",332 Woodman Rd.,,Jonesville,LA,71343,5,318-339-6266,W,M,D,255,12/31/2010,1/1/2007,Mr. Tomlinson +Member of School Board ,District 6 ,P. O. Box 290,,Harrisonburg,LA,71340,318-744-5727,CATAHOULA,"Charles ""Bo"" House",601 Good Rd.,,Jonesville,LA,71343,5,318-339-8049,W,M,D,255,12/31/2010,1/1/2007,Mr. House +Member of School Board ,District 7 ,P. O. Box 290,,Harrisonburg,LA,71340,318-744-5727,CATAHOULA,Josephine Jones,P.O. Box 73,,Jonesville,LA,71343,5,318-339-4418,B,F,D,255,12/31/2010,1/1/2007,Ms. Jones +Member of School Board ,District 8 ,P. O. Box 290,,Harrisonburg,LA,71340,318-744-5727,CATAHOULA,Letishia Hatcher,P.O. Box 213,,Jonesville,LA,71343,5,318-339-8467,B,F,D,255,12/31/2010,1/1/2007,Ms. Letishia +Member of School Board ,District 9 ,P. O. Box 290,,Harrisonburg,LA,71340,318-744-5727,CATAHOULA,"Wayne D. Sanders, ",564 Paulk Rd.,,Jonesville,LA,71343,5,318-339-8290,W,M,D,255,12/31/2010,1/1/2007,Mr. Sanders +Justice of the Peace ,Justice of the Peace Ward 1 ,P. O. Box 97,,Sicily Island,LA,71368,318-389-5772,CATAHOULA,Richard Price,P. O. Box 217,,Sicily Island,LA,71368,5,318-389-5562,W,M,R,265,12/31/2014,1/1/2009,Mr. Price +Justice of the Peace ,Justice of the Peace Ward 2 ,123 Deer Hunter Ln.,,Jonesville,LA,71343,318-339-9212,CATAHOULA,"Robert T. ""Bobby"" Alexander",12398 Hwy. 8,,Jonesville,LA,71343,5,318-339-9924,W,M,D,265,12/31/2014,1/1/2009,Mr. Alexander +Justice of the Peace ,Justice of the Peace Ward 3 ,P.O. Box 44,,Jonesville,LA,71343,318-339-7566,CATAHOULA,TeRan S. Book,1483 Hwy 28,,Jonesville,LA,71343,5,318-339-6755,W,F,D,265,12/31/2014,1/1/2009,Ms. Book +Constable ,Justice of the Peace Ward 1 ,1054 Newman St.,,Sicily Island,LA,71368,318-389-5390,CATAHOULA,"H. C. ""Trey"" Peck, III",P. O. Box 397,,Sicily Island,LA,71368,5,318-389-6894,W,M,D,267,12/31/2014,1/1/2009,Mr. Peck +Constable ,Justice of the Peace Ward 2 ,P.O. Box 247,,Jonesville,LA,71343,318-339-9522,CATAHOULA,Rickey Morris,363 Wince Rd.,,Jonesville,LA,71343,5,318-339-7757,W,M,D,267,12/31/2014,1/1/2009,Mr. Morris +Constable ,Justice of the Peace Ward 3 ,807 Front St.,,Jonesville,LA,71343,318-339-9313,CATAHOULA,William R. Schneider,P.O. Box 765,,Jonesville,LA,71343,5,318-339-8382,W,M,O,267,12/31/2014,8/24/2009,Mr. Schneider +Mayor ,Town of Jonesville ,P. O. Box 428,,Jonesville,LA,,318-339-8596,CATAHOULA,Hiram Evans,904 Westland Dr.,,Jonesville,LA,71343,5,318-339-7374,B,M,D,300,12/31/2010,1/1/2007,Mr. Evans +Mayor ,Village of Harrisonburg ,P. O. Box 658,,Harrisonburg,LA,,318-744-5794,CATAHOULA,Michael Tubre,757 Bushley St.,,Harrisonburg,LA,71340,5,318-744-5613,W,M,R,300,12/31/2010,1/1/2007,Mr. Tubre +Mayor ,Village of Sicily Island ,P. O. Box 45,,Sicily Island,LA,,318-389-4472,CATAHOULA,"James Art Goode, Jr.",P.O. 187,,Sicily Island,LA,71368,5,318-389-5317,W,M,R,300,12/31/2010,1/1/2007,Mayor Goode +Chief of Police ,Village of Harrisonburg ,P. O. Box 658,,Harrisonburg,LA,71340,318-744-5794,CATAHOULA,"""Joe"" Cook",P.O. Box 371,,Harrisonburg,LA,71340,5,318-744-5500,W,M,O,305,12/31/2010,1/1/2007,Mr. Cook +Alderman ,"District 1, Town of Jonesville ",P. O. Box 428,,Jonesville,LA,71343,318-339-8596,CATAHOULA,Jackie C. Rouse,2805 Fourth St.,,Jonesville,LA,71343,5,318-339-6269,W,F,D,310,12/31/2010,1/1/2007,Ms. Rouse +Alderman ,"District 2, Town of Jonesville ",P. O. Box 428,,Jonesville,LA,71343,318-339-8596,CATAHOULA,Stephen R. Mophett,1105 Chestnut St.,,Jonesville,LA,71343,5,318-339-7785,W,M,R,310,12/31/2010,1/1/2007,Mr. Mophett +Alderman ,"District 3, Town of Jonesville ",P. O. Box 428,,Jonesville,LA,71343,318-339-8596,CATAHOULA,Josie Bullitts,503 Pollard Ave.,,Jonesville,LA,71343,5,318-339-4750,B,F,D,310,12/31/2010,1/1/2007,Ms. Bullitts +Alderman ,"District 4, Town of Jonesville ",P. O. Box 428,,Jonesville,LA,71343,318-339-8596,CATAHOULA,Loria Hollins,902 MLK Dr.,,Jonesville,LA,71343,5,318-339-6732,B,F,D,310,12/31/2010,1/1/2007,Ms. Hollins +Alderman ,"District 5, Town of Jonesville ",P. O. Box 428,,Jonesville,LA,71343,318-339-8596,CATAHOULA,"Tommy L. Branch, III",704 Mound St.,,Jonesville,LA,71343,5,318-339-4673,B,M,D,310,12/31/2010,1/1/2007,Mr. Branch +Alderman ,Village of Harrisonburg ,P. O. Box 658,,Harrisonburg,LA,71340,318-744-5794,CATAHOULA,"Richard A. ""Doll"" Hatten",P.O. Box 364,,Harrisonburg,LA,71340,5,318-744-9557,B,M,D,310,12/31/2010,1/1/2007,Mr. Hatten +Alderman ,Village of Harrisonburg ,P. O. Box 658,,Harrisonburg,LA,71340,318-744-5794,CATAHOULA,"""Greg"" Terry",P.O. Box 262,,Harrisonburg,LA,71340,5,318-744-5547,W,M,D,310,12/31/2010,1/1/2007,Mr. Terry +Alderman ,Village of Harrisonburg ,P. O. Box 658,,Harrisonburg,LA,71340,318-744-5794,CATAHOULA,Charles L. Watson,P.O. Box 97,,Harrisonburg,LA,71340,5,318-744-5732,B,M,D,310,12/31/2010,1/1/2007,Mr. Watson +Alderman ,Village of Sicily Island ,P. O. Box 45,,Sicily Island,LA,71368,318-389-4472,CATAHOULA,Donald Ashley,1054 Newman St.,,Sicily Island,LA,71368,5,318-389-5390,W,M,O,310,12/31/2010,1/1/2007,Mr. Ashley +Alderman ,Village of Sicily Island ,P. O. Box 45,,Sicily Island,LA,71368,318-389-4472,CATAHOULA,Derrick Frazier,P.O. Box 81,,Sicily Island,LA,71368,5,318-389-0040,B,M,D,310,12/31/2010,1/1/2007,Mr. Frazier +Alderman ,Village of Sicily Island ,P. O. Box 45,,Sicily Island,LA,71368,318-389-4472,CATAHOULA,"Walter M. ""Mark"" Krause, Jr.",P.O. Box 34,,Sicily Island,LA,71368,5,318-419-2000,W,M,D,310,12/31/2010,1/1/2007,Mr. Krause +DPEC Member ,at Large ,,,,LA,,,CLAIBORNE,,,,,,,0,,,,,54,,, +DPEC Member ,District 1 ,,,,LA,,,CLAIBORNE,,,,,,,0,,,,,56,,, +DPEC Member ,District 2 ,,,,LA,,,CLAIBORNE,,,,,,,0,,,,,56,,, +DPEC Member ,District 3 ,,,,LA,,,CLAIBORNE,,,,,,,0,,,,,56,,, +DPEC Member ,District 4 ,,,,LA,,,CLAIBORNE,,,,,,,0,,,,,56,,, +DPEC Member ,District 5 ,,,,LA,,,CLAIBORNE,,,,,,,0,,,,,56,,, +DPEC Member ,District 6 ,,,,LA,,,CLAIBORNE,,,,,,,0,,,,,56,,, +DPEC Member ,District 7 ,,,,LA,,,CLAIBORNE,,,,,,,0,,,,,56,,, +DPEC Member ,District 8 ,,,,LA,,,CLAIBORNE,,,,,,,0,,,,,56,,, +DPEC Member ,District 9 ,,,,LA,,,CLAIBORNE,,,,,,,0,,,,,56,,, +DPEC Member ,District 10 ,,,,LA,,,CLAIBORNE,,,,,,,0,,,,,56,,, +RPEC Member ,at Large ,,,,LA,,,CLAIBORNE,Kenneth White,125 Beavers Creek Rd.,,Haynesville,LA,71038,5,318-927-3901,W,M,R,64,2/20/2012,2/20/2008,Mr. White +RPEC Member ,District 1 ,,,,LA,,,CLAIBORNE,,,,,,,0,,,,,66,,, +RPEC Member ,District 2 ,,,,LA,,,CLAIBORNE,,,,,,,0,,,,,66,,, +RPEC Member ,District 3 ,,,,LA,,,CLAIBORNE,,,,,,,0,,,,,66,,, +RPEC Member ,District 4 ,,,,LA,,,CLAIBORNE,,,,,,,0,,,,,66,,, +RPEC Member ,District 5 ,,,,LA,,,CLAIBORNE,,,,,,,0,,,,,66,,, +RPEC Member ,District 6 ,,,,LA,,,CLAIBORNE,,,,,,,0,,,,,66,,, +RPEC Member ,District 7 ,,,,LA,,,CLAIBORNE,,,,,,,0,,,,,66,,, +RPEC Member ,District 8 ,,,,LA,,,CLAIBORNE,,,,,,,0,,,,,66,,, +RPEC Member ,District 9 ,,,,LA,,,CLAIBORNE,,,,,,,0,,,,,66,,, +RPEC Member ,District 10 ,,,,LA,,,CLAIBORNE,,,,,,,0,,,,,66,,, +Sheriff ,,613 E. Main St.,,Homer,LA,71040,318-927-2011,CLAIBORNE,"""Ken"" Bailey",613 E. Main St.,,Homer,LA,71040,5,318-927-2011,W,M,D,225,6/30/2012,7/1/2008,Sheriff Bailey +Clerk of Court ,,P. O. Box 330,,Homer,LA,71040,318-927-9601,CLAIBORNE,James Patrick Gladney,P.O. Box 330,,Homer,LA,71040,5,318-927-9713,W,M,,230,6/30/2012,7/1/2008,Mr. Gladney +Assessor ,,508 E. Main St.,,Homer,LA,71040,318-927-3022,CLAIBORNE,"""Bob"" Robinson",261 Bob Robinson Rd.,,Homer,LA,71040,5,318-927-6063,W,M,R,235,12/31/2012,1/1/2009,Mr. Robinson +Coroner ,,P.O. Box 29,,Homer,LA,71040,318-327-3571,CLAIBORNE,Donald K. Haynes,1201 N. Main St.,,Homer,LA,71040,5,318-927-3571,W,M,,240,3/25/2012,3/24/2008,Mr. Haynes +Police Juror ,District 1 ,P. O. Box 270,,Homer,LA,,318-927-2222,CLAIBORNE,"Brian ""Butch"" Bays",P.O. Box 144,,Summerfield,LA,71049,5,318-927-9883,W,M,,245,1/8/2012,1/14/2008,Mr. Bays +Police Juror ,District 2 ,P. O. Box 270,,Homer,LA,71040,318-927-2222,CLAIBORNE,Mark A. Furlow,127 Acklin Ave.,,Haynesville,LA,71038,5,318-624-1126,W,M,,245,1/8/2012,1/14/2008,Mr. Furlow +Police Juror ,District 3 ,P. O. Box 270,,Homer,LA,71040,318-927-2222,CLAIBORNE,"Robert ""Bob"" McDaniel",281 McDaniel Rd.,,Haynesville,LA,71038,5,318-624-0634,W,M,,245,1/8/2012,1/14/2008,Mr. McDaniel +Police Juror ,District 4 ,P. O. Box 270,,Homer,LA,71040,318-927-2222,CLAIBORNE,Joe A. Sturges,P.O. Box 453,,Haynesville,LA,71038,5,318-624-1845,B,M,,245,1/8/2012,1/14/2008,Mr. Sturges +Police Juror ,District 5 ,P. O. Box 270,,Homer,LA,71040,318-927-2222,CLAIBORNE,Lavelle Penix,14407 Hwy. 9,,Athens,LA,71003,5,318-258-3092,W,M,D,245,1/8/2012,1/14/2008,Mr. Penix +Police Juror ,District 6 ,P. O. Box 270,,Homer,LA,71040,318-927-2222,CLAIBORNE,Scott Davidson,2199 Hwy. 519,,Athens,LA,71003,5,318-263-2544,W,M,,245,1/8/2012,1/14/2008,Mr. Davidson +Police Juror ,District 7 ,P. O. Box 270,,Homer,LA,71040,318-927-2222,CLAIBORNE,"""Roy"" Lewis",419 W. Sixth St.,,Homer,LA,71040,5,318-927-6672,W,M,D,245,1/8/2012,1/14/2008,Mr. Lewis +Police Juror ,District 8 ,P. O. Box 270,,Homer,LA,71040,318-927-2222,CLAIBORNE,Roy Mardis,314 Forest Grove,,Homer,LA,71040,5,318-927-4932,B,M,D,245,1/8/2012,1/14/2008,Mr. Mardis +Police Juror ,District 9 ,P. O. Box 270,,Homer,LA,71040,318-927-2222,CLAIBORNE,Jerry A. Adkins,155 Magee Rd.,,Homer,LA,71040,5,318-927-5456,W,M,,245,1/8/2012,1/14/2008,Mr. Adkins +Police Juror ,District 10 ,P. O. Box 270,,Homer,LA,71040,318-927-2222,CLAIBORNE,Willie J. Young,P.O. Box 763,,Homer,LA,71040,5,318-225-1040,B,M,D,245,1/8/2012,1/14/2008,Mr. Young +Member of School Board ,District 1 ,P. O. Box 600,,Homer,LA,71040,318-927-3502,CLAIBORNE,"Danny ""Doc"" Lee",1370 Flatwoods Rd.,,Bernice,LA,71222,5,318-285-7333,W,M,,255,12/31/2010,1/1/2007,Mr. Lee +Member of School Board ,District 2 ,P. O. Box 600,,Homer,LA,71040,318-927-3502,CLAIBORNE,William H. Maddox,1846 Maddox Rd.,,Haynesville,LA,71038,5,318-624-0373,W,M,,255,12/31/2010,1/1/2007,Mr. Maddox +Member of School Board ,District 3 ,P. O. Box 600,,Homer,LA,71040,318-927-3502,CLAIBORNE,Joe M. Lee,210 Dr. Worley Rd.,,Haynesville,LA,71038,5,318-624-1107,W,M,,255,12/31/2010,1/1/2007,Mr. Lee +Member of School Board ,District 4 ,P. O. Box 600,,Homer,LA,71040,318-927-3502,CLAIBORNE,A. D. Williams,371 McDonald St.,,Haynesville,LA,71038,5,318-624-0689,B,M,D,255,12/31/2010,10/14/2008,Mr. Williams +Member of School Board ,District 5 ,P. O. Box 600,,Homer,LA,71040,318-927-3502,CLAIBORNE,Stanley O. Edwards,P.O. Box 237,,Athens,LA,71003,5,318-243-5408,W,M,,255,12/31/2010,1/1/2007,Mr. Edwards +Member of School Board ,District 6 ,P. O. Box 600,,Homer,LA,71040,318-927-3502,CLAIBORNE,"Thomas E. ""Tommy"" Davidson",2210 Hwy. 519,,Athens,LA,71003,5,318-263-2585,W,M,,255,12/31/2010,1/1/2007,Mr. Davidson +Member of School Board ,District 7 ,P. O. Box 600,,Homer,LA,71040,318-927-3502,CLAIBORNE,Vera R. Walker Meadors,1303 Martin Luther King Dr.,,Homer,LA,71040,5,318-927-1060,B,F,,255,12/31/2010,1/1/2007,Ms. Meadors +Member of School Board ,District 8 ,P. O. Box 600,,Homer,LA,71040,318-927-3502,CLAIBORNE,Almeter Willis,119 Forest Grv.,,Homer,LA,71040,5,318-927-9905,B,F,D,255,12/31/2010,1/1/2007,Ms. Willis +Member of School Board ,District 9 ,P. O. Box 600,,Homer,LA,71040,318-927-3502,CLAIBORNE,E. Blake Hemphill,649 Airport Loop,,Homer,LA,71040,5,318-927-2445,W,M,,255,12/31/2010,1/1/2007,Mr. Hemphill +Member of School Board ,District 10 ,P. O. Box 600,,Homer,LA,71040,318-927-3502,CLAIBORNE,Terry R. Willis,915 Hudd Dr.,,Homer,LA,71040,5,318-927-9660,B,M,,255,12/31/2010,1/1/2007,Mr. Willis +Justice of the Peace ,1st Justice of the Peace Court ,4149 Hwy. 2AH.,,Haynesville,LA,71038,318-624-0057,CLAIBORNE,Charles F. Clawson,4149 Hwy. 2 Alt.,,Haynesville,LA,71038,5,318-624-0057,W,M,,265,12/31/2014,1/1/2009,Mr. Clawson +Justice of the Peace ,2nd Justice of the Peace Court ,103 Holly St.,,Homer,LA,71040,318-927-2149,CLAIBORNE,Ronnie McKenzie,103 Holly St.,,Homer,LA,71040,5,318-927-2149,W,M,,265,12/31/2014,1/1/2009,Mr. McKenzie +Justice of the Peace ,3rd Justice of the Peace Court ,153 Reynolds Rd.,,Bernice,LA,71222,318-353-6808,CLAIBORNE,Amanda Verdin,153 Reynolds Rd.,,Bernice,LA,71222,5,318-353-6808,W,F,,265,12/31/2014,1/1/2009,Ms. Verdin +Constable ,1st Justice of the Peace Court ,136 Boone Rd.,,Haynesville,LA,71038-7580,318-624-0951,CLAIBORNE,William Earl Maddox,135 Billy Shaw Rd.,,Homer,LA,71040,5,318-927-3965,B,M,,267,12/31/2014,1/1/2009,Mr. Maddox +Constable ,2nd Justice of the Peace Court ,490 Arizona Rd.,,Homer,LA,71040-8646,318-927-3796,CLAIBORNE,James A. Pike,429 Robinson Ln.,,Homer,LA,71040,5,318-927-3796,W,M,,267,12/31/2014,1/1/2009,Mr. Pike +Constable ,3rd Justice of the Peace Court ,21011 Hwy. 2,,Homer,LA,71040,318-343-6553,CLAIBORNE,Frank Speer,21011 Hwy. 2,,Homer,LA,71040,5,318-353-6553,W,M,,267,12/31/2014,1/1/2009,Mr. Speer +Mayor ,Town of Haynesville ,1711 Main St.,,Haynesville,LA,,318-624-0911,CLAIBORNE,Sherman Brown,798 Harris St.,,Haynesville,LA,71038,5,318-624-2468,B,M,,300,6/30/2013,7/1/2009,Mayor Brown +Mayor ,Town of Homer ,400 E. Main,,Homer,LA,,318-927-3555,CLAIBORNE,David Morgan Newell,P.O. Box 89,,Homer,LA,71040,5,318-927-3811,W,M,D,300,12/31/2010,1/1/2007,Mr. Newell +Mayor ,Village of Athens ,P. O. Box 69,,Athens,LA,,318-258-5275,CLAIBORNE,Hubie D. James,P.O. Box 275,,Athens,LA,71003,5,318-258-4783,W,M,,300,12/31/2010,1/1/2007,Mr. James +Mayor ,Village of Lisbon ,P. O. Box 248,,Lisbon,LA,,,CLAIBORNE,Wayne Tanner,P. O. Box 235,,Lisbon,LA,71048,5,318-353-6114,W,M,,300,12/31/2012,1/1/2009,Mayor Tanner +Chief of Police ,Town of Haynesville ,1711 Main St.,,Haynesville,LA,71038,318-624-0911,CLAIBORNE,Anthony Craig Smith,P.O. Box 254,,Haynesville,LA,71038,5,318-624-2628,B,M,D,305,6/30/2013,7/1/2009,Chief Smith +Chief of Police ,Village of Athens ,P. O. Box 69,,Athens,LA,71003,318-258-5275,CLAIBORNE,"Clayton M. ""Jack"" Spurlock, Jr.",P.O. Box 134,,Athens,LA,71003,5,318-258-5811,W,M,,305,12/31/2010,1/1/2007,Mr. Spurlock +Marshal ,Town of Homer ,400 E. Main,,Homer,LA,71040,318-927-3555,CLAIBORNE,Russell Mills,705 S. Second St.,,Homer,LA,71040,5,318-245-2149,W,M,,305,12/31/2010,1/1/2007,Mr. Mills +Alderman ,Village of Athens ,P. O. Box 69,,Athens,LA,71003,318-258-5275,CLAIBORNE,Melver Stassen,P.O. Box 235,,Athens,LA,71003,5,318-258-3067,W,F,,310,12/31/2010,1/1/2007,Mr. Stassen +Alderman ,Village of Athens ,P. O. Box 69,,Athens,LA,71003,318-258-5275,CLAIBORNE,Prentis B. Washington,P. O. Box 185,,Homer,LA,71040,5,318-258-3489,B,M,,310,12/31/2010,4/14/2009,Ms. Washington +Alderman ,Village of Athens ,P. O. Box 69,,Athens,LA,71003,318-258-5275,CLAIBORNE,"Ardis L. Willhite, Jr.",244 WPA Rd.,,Homer,LA,71040,5,318-258-4771,W,M,,310,12/31/2010,2/23/2009,Mr. Willhite +Alderman ,Village of Lisbon ,P. O. Box 248,,Lisbon,LA,71048,,CLAIBORNE,Jerry W. Clements,21230 Hwy. 2,,Homer,LA,71040,5,318-353-6530,W,M,,310,12/31/2012,1/1/2009,Mr. Clements +Alderman ,Village of Lisbon ,P. O. Box 248,,Lisbon,LA,71048,,CLAIBORNE,Marilyn Lowrey Myers,P. O. Box 246,,Lisbon,LA,71048,5,318-353-6647,W,F,,310,12/31/2012,1/1/2009,Ms. Myers +Alderman ,Village of Lisbon ,P. O. Box 248,,Lisbon,LA,71048,,CLAIBORNE,"""Andy"" Roberts",19973 Hwy. 2,,Homer,LA,71040,5,318-353-2116,W,M,R,310,12/31/2012,1/1/2009,Mr. Roberts +Council Member ,"District 1, Town of Haynesville ",1711 Main St.,,Haynesville,LA,71038,318-624-0911,CLAIBORNE,"Valinda ""Faye"" Webb",206 Zion Dr.,,Haynesville,LA,71038,5,318-624-0778,B,F,O,310,6/30/2013,7/1/2009,Ms. Webb +Council Member ,"District 2, Town of Haynesville ",1711 Main St.,,Haynesville,LA,71038,318-624-0911,CLAIBORNE,Herbert Taylor,108 Cowboy Dr.,,Haynesville,LA,71038,5,318-624-0515,W,M,O,310,6/30/2013,7/1/2009,Mr. Taylor +Council Member ,"District 3, Town of Haynesville ",1711 Main St.,,Haynesville,LA,71038,318-624-0911,CLAIBORNE,"Barbara Beene ""Net"" Torrence",1495 Washington Dr.,,Haynesville,LA,71038,5,318-624-3085,B,F,,310,6/30/2013,7/1/2009,Ms. Torrence +Council Member ,"District 4, Town of Haynesville ",1711 Main St.,,Haynesville,LA,71038,318-624-0911,CLAIBORNE,Brian Bogle,P.O. Box 202,,Haynesville,LA,71038,5,318-624-9154,W,M,,310,6/30/2013,7/1/2009,Mr. Bogle +Council Member ,"District 5, Town of Haynesville ",1711 Main St.,,Haynesville,LA,71038,318-624-0911,CLAIBORNE,Carla Frasier Smith,700 Marietta Dr.,,Haynesville,LA,71038,5,318-624-2221,W,F,O,310,6/30/2013,7/1/2009,Mr. Smith +Selectman ,"District 1, Town of Homer ",400 E. Main,,Homer,LA,71040,318-927-3555,CLAIBORNE,"Scott B. ""Doc"" Roberson",1201 Hill St.,,Homer,LA,71040,5,318-927-6983,B,M,D,310,12/31/2010,10/27/2009,Mr. Roberson +Selectman ,"District 2, Town of Homer ",400 E. Main,,Homer,LA,71040,318-927-3555,CLAIBORNE,Michael J. Wade,259 Scott St.,,Homer,LA,71040,5,318-927-2936,B,M,,310,12/31/2010,1/1/2007,Mr. Wade +Selectman ,"District 3, Town of Homer ",400 E. Main,,Homer,LA,71040,318-927-3555,CLAIBORNE,Toney Johnson,P.O. Box 195,,Homer,LA,71040,5,318-927-6942,W,M,D,310,12/31/2010,1/1/2007,Mr. Johnson +Selectman ,"District 4, Town of Homer ",400 E. Main,,Homer,LA,71040,318-927-3555,CLAIBORNE,Carlette Sanford,623 Edgewood Dr.,,Homer,LA,71040,5,318-927-2426,W,F,,310,12/31/2010,1/1/2007,Ms. Sanford +Selectman ,"District 5, Town of Homer ",400 E. Main,,Homer,LA,71040,318-927-3555,CLAIBORNE,Patricia K. Jenkins,501 E. Fifth St.,,Homer,LA,71040,5,318-927-9537,B,F,,310,12/31/2010,1/1/2007,Ms. Jenkins +DPEC Member ,at Large ,,,,LA,,,CONCORDIA,Justin Conner,P.O. Box 1014,,Ferriday,LA,71334,5,318-757-1469,B,M,D,54,2/20/2012,2/20/2008,Mr. Conner +DPEC Member ,at Large ,,,,LA,,,CONCORDIA,Shirley Johnson,529 Belle Grove Cir.,,Vidalia,LA,71373,5,318-336-9597,W,F,D,54,2/20/2012,2/20/2008,Ms. Johnson +DPEC Member ,at Large ,,,,LA,,,CONCORDIA,Glenda Price Lewis,2744 Hwy 569,,Ferriday,LA,71334,5,318-757-9145,W,F,D,54,2/20/2012,2/20/2008,Ms. Lewis +DPEC Member ,at Large ,,,,LA,,,CONCORDIA,Paul Scott,P.O. Box 721,,Jonesville,LA,71343,5,318-339-8282,W,M,D,54,2/20/2012,2/20/2008,Mr. Scott +DPEC Member ,at Large ,,,,LA,,,CONCORDIA,Tanya Tassin,400 Laurel St.,,Vidalia,LA,71373,5,318-336-4735,W,F,D,54,2/20/2012,2/20/2008,Ms. Tassin +DPEC Member ,"District 1, Place A ",,,,LA,,,CONCORDIA,Dorothy Johnson,701 6th St.,,Ferriday,LA,71334,5,318-757-6484,B,F,D,56,2/20/2012,2/20/2008,Ms. Johnson +DPEC Member ,"District 1, Place B ",,,,LA,,,CONCORDIA,"William H. ""Billy"" Rucker",P.O. Box 285,,Ferriday,LA,71334,5,318-757-8257,W,M,D,56,2/20/2012,2/20/2008,Mr. Rucker +DPEC Member ,District 2 ,,,,LA,,,CONCORDIA,"Raymond T. Riley, Sr.",P.O. Box 243,,Vidalia,LA,71373,5,318-336-8070,B,M,D,56,2/20/2012,2/20/2008,Mr. Riley +DPEC Member ,"District 3, Place A ",,,,LA,,,CONCORDIA,Kathleen M. Stevens,602 N. Oak,,Vidalia,LA,71373,5,318-336-7057,W,F,D,56,2/20/2012,2/20/2008,Ms. Stevens +DPEC Member ,"District 3, Place B ",,,,LA,,,CONCORDIA,Don W. Tate,P.O. Box 951,,Vidalia,LA,71373,5,318-336-5752,W,M,D,56,2/20/2012,2/20/2008,Mr. Tate +DPEC Member ,"District 4, Place A ",,,,LA,,,CONCORDIA,Charles Stutson,411 Corbett St.,,Ferriday,LA,71334,5,318-757-4336,W,M,D,56,2/20/2012,2/20/2008,Mr. Stutson +DPEC Member ,"District 4, Place B ",,,,LA,,,CONCORDIA,Ann Goodman,319 Crestview,,Ferriday,LA,71334,5,318-757-6806,W,F,D,56,2/20/2012,2/20/2008,Ms. Goodman +DPEC Member ,District 5A ,,,,LA,,,CONCORDIA,"Bryant O. Hammett, Jr.",435 Enterkin Rd.,,Ferriday,LA,71334,5,,W,M,D,56,2/20/2012,2/20/2008,Mr. Hammett +DPEC Member ,District 5B ,,,,LA,,,CONCORDIA,Ray Routon,P.O. Box 371,,Monterey,LA,71354,5,318-386-7681,W,M,D,56,2/20/2012,2/20/2008,Mr. Routon +RPEC Member ,at Large ,,,,LA,,,CONCORDIA,Emerson U. Slain,P. O. Box 1618,,Ferriday,LA,71334,5,318-757-9474,B,M,R,64,2/20/2012,2/20/2008, +RPEC Member ,"District 1, Place A ",,,,LA,,,CONCORDIA,,,,,,,0,,,,,66,,, +RPEC Member ,"District 1, Place B ",,,,LA,,,CONCORDIA,Mary Bradford Gibson,P. O. Box 1739,,Ferriday,LA,71334,5,318-757-7821,W,F,R,66,2/20/2012,2/20/2008,Ms. Gibson +RPEC Member ,District 2 ,,,,LA,,,CONCORDIA,,,,,,,0,,,,,66,,, +RPEC Member ,"District 3, Place A ",,,,LA,,,CONCORDIA,,,,,,,0,,,,,66,,, +RPEC Member ,"District 3, Place B ",,,,LA,,,CONCORDIA,Susan Rabb,107 Lee Ave.,,Vidalia,LA,71373,5,318-336-5988,W,F,R,66,2/20/2012,2/20/2008,Ms. Rabb +RPEC Member ,"District 4, Place A ",,,,LA,,,CONCORDIA,Ronnie W. Bradford,111 Huntington Dr.,,Ferriday,LA,71334,5,318-757-2927,W,M,R,66,2/20/2012,2/20/2008,Mr. Bradford +RPEC Member ,"District 4, Place B ",,,,LA,,,CONCORDIA,,,,,,,0,,,,,66,,, +RPEC Member ,District 5A ,,,,LA,,,CONCORDIA,,,,,,,0,,,,,66,,, +RPEC Member ,District 5B ,,,,LA,,,CONCORDIA,,,,,,,0,,,,,66,,, +Sheriff ,,"4001 Carter St., Rm. 6",,Vidalia,LA,71373,318-336-5231,CONCORDIA,Randy Maxwell,"4001 Carter St., Rm. 6",,Vidalia,LA,71373,5,318-757-9498,W,M,D,225,6/30/2012,7/1/2008,Sheriff Maxwell +Clerk of Court ,,P. O. Box 790,,Vidalia,LA,71373,318-336-4204,CONCORDIA,"Clyde Ray Webber, Jr.",P.O. Box 790,,Vidalia,LA,71373,5,318-757-3716,W,M,R,230,6/30/2012,7/1/2008,Mr. Webber +Assessor ,,"4001 Carter St., Rm. 3",,Vidalia,LA,71373,318-336-5122,CONCORDIA,Monelle Moseley,P.O. Box 365,,Vidalia,LA,71373,5,318-336-5856,W,F,,235,12/31/2012,1/1/2009,Ms. Moseley +Coroner ,,100 Lincoln Ave.,,Ferriday,LA,71334,318-757-7000,CONCORDIA,Sarah Lee,P.O. Box 526,,Ferriday,LA,71334,5,318-757-9910,B,F,,240,3/25/2012,3/24/2008,Ms. Lee +Police Juror,"District 1, Place A","4001 Carter St., Rm. 1",,Vidalia,LA,71373,318-336-7151,CONCORDIA,Carey H. Cook,P.O. Box 585,,Ferriday,LA,71334,5,318-757-2251,B,M,D,245,1/8/2012,1/14/2008,Mr. Cook +Police Juror ,"District 1, Place B ","4001 Carter St., Rm. 1",,Vidalia,LA,71373,318-336-7151,CONCORDIA,"Joe ""Bear"" Parker",P.O. Box 113,,Clayton,LA,71326,5,318-757-6470,B,M,D,245,1/8/2012,1/14/2008,Mr. Parker +Police Juror ,District 2 ,"4001 Carter St., Rm. 1",,Vidalia,LA,71373,318-336-7151,CONCORDIA,Willie Dunbar,108 Concordia Park Dr.,,Vidalia,LA,71373,5,318-336-5806,B,M,D,245,1/8/2012,1/14/2008,Mr. Dunbar +Police Juror ,"District 3, Place A ","4001 Carter St., Rm. 1",,Vidalia,LA,71373,318-336-7151,CONCORDIA,Randy Temple,1008 Guillory St.,,Vidalia,LA,71373,5,318-336-7005,W,M,D,245,1/8/2012,1/14/2008,Mr. Temple +Police Juror ,"District 3, Place B ","4001 Carter St., Rm. 1",,Vidalia,LA,71373,318-336-7151,CONCORDIA,Whest Shirley,156 Lee Ave.,,Vidalia,LA,71373,5,318-336-9267,W,M,R,245,1/8/2012,1/14/2008,Mr. Shirley +Police Juror ,"District 4, Place A ","4001 Carter St., Rm. 1",,Vidalia,LA,71373,318-336-7151,CONCORDIA,Jerry Beatty,P.O. Box 61,,Ferriday,LA,71334,5,318-757-0881,W,M,D,245,1/8/2012,1/14/2008,Mr. Beatty +Police Juror ,"District 4, Place B ","4001 Carter St., Rm. 1",,Vidalia,LA,71373,318-336-7151,CONCORDIA,Melvin Ferrington,410 Cowan St.,,Ferriday,LA,71334,5,318-757-4671,W,M,D,245,1/8/2012,1/14/2008,Mr. Ferrington +Police Juror ,"District 5, Place A ","4001 Carter St., Rm. 1",,Vidalia,LA,71373,318-336-7151,CONCORDIA,Jimmy Jernigan,1217 Loop Rd.,,Jonesville,LA,71343,5,318-339-8892,W,M,D,245,1/8/2012,1/14/2008,Mr. Jernigan +Police Juror ,"District 5, Place B ","4001 Carter St., Rm. 1",,Vidalia,LA,71373,318-336-7151,CONCORDIA,"Tommy ""Red"" Tiffee",679 Hwy 907,,Monterey,LA,71354,5,318-386-2802,W,M,D,245,1/8/2012,1/14/2008,Mr. Tiffee +City Judge ,"City Court, Town of Vidalia ",409 Texas St.,,Vidalia,LA,71373,318-336-5272,CONCORDIA,"George C. Murray, Jr.",P.O. Box 1030,,Vidalia,LA,71373-1030,10,318-336-5272,W,M,D,250,12/31/2010,1/1/2005,Judge Murray +City Marshal ,"City Court, Town of Vidalia ",409 Texas St.,,Vidalia,LA,71373,318-336-6255,CONCORDIA,"""Jim"" Boren",1208 Apple St.,,Vidalia,LA,71373,5,318-336-7769,W,M,O,250,12/31/2010,1/1/2005,Mr. Boren +Member of School Board ,"District 1, Place A ",P. O. Box 950,,Vidalia,LA,71373,318-336-4226,CONCORDIA,Fred T. Butcher,220 Martin Luther King,,Ferriday,LA,71334,5,,B,M,D,255,12/31/2010,1/1/2007,Mr. Butcher +Member of School Board ,"District 1, Place B ",P. O. Box 950,,Vidalia,LA,71373,318-336-4226,CONCORDIA,Mary H. Campbell,P.O. Box 61,,Clayton,LA,71326,5,318-757-6352,B,F,D,255,12/31/2010,1/1/2007,Ms. Campbell +Member of School Board ,District 2 ,P. O. Box 950,,Vidalia,LA,71373,318-336-4226,CONCORDIA,Raymond T. Riley,P.O. Box 243,,Vidalia,LA,71373,5,,B,M,D,255,12/31/2010,1/1/2007,Mr. Riley +Member of School Board ,"District 3, Place A ",P. O. Box 950,,Vidalia,LA,71373,318-336-4226,CONCORDIA,Gary Parnham,400 Elm St.,,Vidalia,LA,71373,5,318-336-5564,W,M,D,255,12/31/2010,1/1/2007,Mr. Parnham +Member of School Board ,"District 3, Place B ",P. O. Box 950,,Vidalia,LA,71373,318-336-4226,CONCORDIA,"""Deanie"" Roberts",2038 Eleanor St.,,Vidalia,LA,71373,5,318-336-9616,W,F,R,255,12/31/2010,9/14/2007,Ms. Roberts +Member of School Board ,"District 4, Place A ",P. O. Box 950,,Vidalia,LA,71373,318-336-4226,CONCORDIA,"Ricky Lee Raven, Sr.",112 Shady Ln.,,Ferriday,LA,71334,5,318-757-8259,W,M,O,255,12/31/2010,1/1/2007,Mr. Raven +Member of School Board ,"District 4, Place B ",P. O. Box 950,,Vidalia,LA,71373,318-336-4226,CONCORDIA,Daryle W. Price,233 Crestview Dr.,,Ferriday,LA,71334,5,318-757-2008,W,M,O,255,12/31/2010,1/1/2007,Mr. Price +Member of School Board ,"District 5, Place A ",P. O. Box 950,,Vidalia,LA,71373,318-336-4226,CONCORDIA,Martha J. Rabb,500 Lincoln Ave. 14B,,Ferriday,LA,71334,5,318-757-9987,W,F,O,255,12/31/2010,1/1/2007,Ms. Rabb +Member of School Board ,"District 5, Place B ",P. O. Box 950,,Vidalia,LA,71373,318-336-4226,CONCORDIA,Darlene Baker,311 Co-op Rd.,,Monterey,LA,71354,5,318-386-7852,W,F,D,255,12/31/2010,1/1/2007,Mr. Baker +Justice of the Peace ,Justice of the Peace District 1 ,P. O. Box 1014,,Ferriday,LA,71334,318-757-2834,CONCORDIA,Justin L. Conner,P.O. Box 1014,,Ferriday,LA,71334,5,318-757-1469,B,M,D,265,12/31/2014,1/1/2009,Mr. Conner +Justice of the Peace ,Justice of the Peace District 2 ,207 Pine St.,,Vidalia,LA,71373,318-336-9534,CONCORDIA,Frank Duson,P. O. Box 495,,Vidalia,LA,71373,5,318-336-6134,B,M,D,265,12/31/2014,1/1/2009,Mr. Duson +Justice of the Peace ,Justice of the Peace District 3 ,1207 Peach St.,,Vidalia,LA,71373,318-336-5723,CONCORDIA,Russell Wagoner,565 Hwy. 131,,Vidalia,LA,71373,5,318-336-5803,W,M,R,265,12/31/2014,1/1/2009,Mr. Wagoner +Justice of the Peace ,Justice of the Peace District 4 ,1198 Fishermans Dr.,,Ferriday,LA,71334,318-757-7613,CONCORDIA,Jerry Stallings,1198 Fisherman Dr.,,Ferriday,LA,71334,5,318-757-7613,W,M,D,265,12/31/2014,1/1/2009,Mr. Stallings +Justice of the Peace ,Justice of the Peace District 5A ,5448 Dunbarton Rd.,,Ferriday,LA,71334,318-757-8977,CONCORDIA,"Charles E. ""Charlie"" White",5448 Dunbarton Rd.,,Ferriday,LA,71334,5,318-757-8977,W,M,D,265,12/31/2014,1/1/2009,Mr. White +Justice of the Peace ,Justice of the Peace District 5B ,8878 Hwy. 129,,Monterey,LA,71354,318-386-7193,CONCORDIA,Levear Book,8878 Hwy. 129,,Monterey,LA,71354,5,318-386-7193,W,M,D,265,12/31/2014,1/1/2009,Mr. Book +Constable ,Justice of the Peace District 1 ,263 Concordia Dr.,,Ferriday,LA,71334,318-757-2714,CONCORDIA,Rosa W. Elaine,263 Concordia Dr.,,Ferriday,LA,71334,5,318-757-2714,B,F,D,267,12/31/2014,1/1/2009,Ms. Ewing +Constable ,Justice of the Peace District 2 ,200 South Oak St.,,Vidalia,LA,71373,318-336-9968,CONCORDIA,Rickey Hollins,200 S. Oak St.,,Vidalia,LA,71373,5,318-336-9063,B,M,D,267,12/31/2014,1/1/2009,Mr. Hollins +Constable ,Justice of the Peace District 3 ,1104 Plum St.,,Vidalia,LA,71373,318-336-5105,CONCORDIA,Susan Rabb,107 Lee Ave.,,Vidalia,LA,71373,5,318-336-5988,W,F,R,267,12/31/2014,1/1/2009,Ms. Rabb +Constable ,Justice of the Peace District 4 ,391 Belle Gr.,,Vidalia,LA,71373,318-336-7681,CONCORDIA,"Ferris ""Bull"" Durham",902 Vidalia Dr.,,Ridgecrest,LA,71334,5,318-757-1800,W,M,D,267,12/31/2014,1/1/2009,Mr. Durham +Constable ,Justice of the Peace District 5A ,3211 Dunbarton Rd.,,Ferriday,LA,71334,318-757-2526,CONCORDIA,John H. Cowan,3211 Dunbarton Rd.,,Ferriday,LA,71373,5,318-757-2526,W,M,R,267,12/31/2014,1/1/2009,Mr. Cowan +Constable ,Justice of the Peace District 5B ,10085 Hwy. 129,,Monterey,LA,71354,318-386-2649,CONCORDIA,Jerry Lipsey,10085 Hwy. 129,,Monterey,LA,71354,5,318-386-2649,W,M,D,267,12/31/2014,1/1/2009,Mr. Lipsey +Mayor ,Town of Clayton ,P. O. Box 277,,Clayton,LA,,318-757-8540,CONCORDIA,Rydell Turner,P.O. Box 533,,Clayton,LA,71326,5,318-719-0065,B,M,O,300,6/30/2012,7/1/2008,Mayor Turner +Mayor ,Town of Ferriday ,1116 Second St.,,Ferriday,LA,,318-757-3411,CONCORDIA,Glen McGlothin,812 Mickey Gilley Ave.,,Ferriday,LA,71334,5,318-757-3579,W,M,D,300,6/30/2012,7/1/2008,Mayor McGlothin +Mayor ,Town of Ridgecrest ,116 Foster Dr.,,Ridgecrest,LA,,318-757-4497,CONCORDIA,Kevin Graham,117 Grape St.,,Ridgecrest,LA,71334,5,318-719-1611,W,M,,300,12/31/2010,8/24/2009,Mayor Graham +Mayor ,Town of Vidalia ,P. O. Box 2010,,Vidalia,LA,,318-336-5206,CONCORDIA,Hyram Copeland,603 Elm St.,,Vidalia,LA,71373,5,318-336-7341,W,M,D,300,6/30/2012,7/1/2008,Mayor Copeland +Chief of Police ,Town of Clayton ,P. O. Box 277,,Clayton,LA,71326,318-757-8540,CONCORDIA,"Clarence ""PaPa"" Skipper",P.O. Box 203,,Clayton,LA,71326,5,318-757-6833,B,M,D,305,6/30/2012,7/1/2008,Chief Skipper +Chief of Police ,Town of Ridgecrest ,116 Foster Dr.,,Ridgecrest,LA,71334,318-757-4497,CONCORDIA,Wanda Smith,116 Foster Dr.,,Ridgecrest,LA,71334,5,,,,,305,,10/8/2009,Chief Smith +Chief of Police ,Town of Vidalia ,P. O. Box 2010,,Vidalia,LA,71373,318-336-5206,CONCORDIA,"Ronnie G.""Tapper"" Hendricks",402 Willow St.,,Vidalia,LA,71373,5,318-336-8230,W,M,O,305,6/30/2012,7/1/2008,Chief Hendricks +Alderman ,"District 1, Town of Vidalia ",P. O. Box 2010,,Vidalia,LA,71373,318-336-5206,CONCORDIA,"Triand ""Tron"" McCoy",P.O. Box 382,,Vidalia,LA,71373,5,318-336-3583,B,M,D,310,6/30/2012,7/1/2008,Mr. McCoy +Alderman ,"District 2, Town of Vidalia ",P. O. Box 2010,,Vidalia,LA,71373,318-336-5206,CONCORDIA,Vernon Stevens,602 N. Oak St.,,Vidalia,LA,71373,5,318-336-7057,W,M,D,310,6/30/2012,7/1/2008,Mr. Stevens +Alderman ,"District 3, Town of Vidalia ",P. O. Box 2010,,Vidalia,LA,71373,318-336-5206,CONCORDIA,Jon D. Betts,2030 Charles St.,,Vidalia,LA,71373,5,318-336-5976,W,M,R,310,6/30/2012,7/1/2008, +Alderman ,"District 3, Town of Vidalia ",P. O. Box 2010,,Vidalia,LA,71373,318-336-5206,CONCORDIA,"Richard S. ""Ricky"" Knapp",1006 Guillory St.,,Vidalia,LA,71373,5,318-336-8676,W,M,O,310,6/30/2012,7/1/2008,Mr. Knapp +Alderman ,"District 3, Town of Vidalia ",P. O. Box 2010,,Vidalia,LA,71373,318-336-5206,CONCORDIA,"Maureen ""Mo"" Saunders",P.O. Box 424,,Vidalia,LA,71373,5,318-336-2525,W,F,D,310,6/30/2012,7/1/2008,Ms. Saunders +Alderman ,"District A, Town of Ferriday ",1116 Second St.,,Ferriday,LA,71334,318-757-3411,CONCORDIA,Somer Lance,107 Crescent Dr.,,Ferriday,LA,71334,5,318-757-2902,W,F,R,310,6/30/2012,7/1/2008,Ms. Lance +Alderman ,"District B, Town of Ferriday ",1116 Second St.,,Ferriday,LA,71334,318-757-3411,CONCORDIA,"Elijah ""Stepper"" Banks",727 Tennessee Ave.,,Ferriday,LA,71334,5,318-880-1398,B,M,O,310,6/30/2012,7/1/2008,Mr. Banks +Alderman ,"District C, Town of Ferriday ",1116 Second St.,,Ferriday,LA,71334,318-757-3411,CONCORDIA,Jerome Harris,P.O. Box 1325,,Ferriday,LA,71334,5,318-719-5625,B,M,D,310,6/30/2012,7/1/2008,Mr. Harris +Alderman ,"District D, Town of Ferriday ",1116 Second St.,,Ferriday,LA,71334,318-757-3411,CONCORDIA,Johnnie Brown,P.O. Box 642,,Ferriday,LA,71334,5,318-757-8532,B,M,D,310,6/30/2012,7/1/2008,Mr. Brown +Alderman ,"District E, Town of Ferriday ",1116 Second St.,,Ferriday,LA,71334,318-757-3411,CONCORDIA,Gloria Lloyd,P.O. Box 1244,,Ferriday,LA,71334,5,318-757-1624,B,F,D,310,6/30/2012,7/1/2008,Ms. Lloyd +Alderman ,Town of Clayton ,P. O. Box 277,,Clayton,LA,71326,318-757-8540,CONCORDIA,Floyd Barber,P.O. Box 152,,Clayton,LA,71326,5,318-757-9981,B,M,D,310,6/30/2012,7/1/2008,Mr. Barber +Alderman ,Town of Clayton ,P. O. Box 277,,Clayton,LA,71326,318-757-8540,CONCORDIA,"""Sandy"" Clayton",P.O. Box 211,,Clayton,LA,71326,5,318-757-8039,W,F,O,310,6/30/2012,7/1/2008,Ms. Clayton +Alderman ,Town of Clayton ,P. O. Box 277,,Clayton,LA,71326,318-757-8540,CONCORDIA,"Willie ""Bill"" Evans",P.O. Box 496,,Clayton,LA,71326,5,318-757-3722,B,M,D,310,6/30/2012,7/1/2008,Mr. Evans +Alderman ,Town of Clayton ,P. O. Box 277,,Clayton,LA,71326,318-757-8540,CONCORDIA,Irene Jefferson,P.O. Box 202,,Clayton,LA,71326,5,318-757-4405,B,F,D,310,6/30/2012,7/1/2008,Ms. Jefferson +Alderman ,Town of Clayton ,P. O. Box 277,,Clayton,LA,71326,318-757-8540,CONCORDIA,"Carl R. Thompson, Sr.",P.O. Box 234,,Clayton,LA,71325,5,318-757-2939,B,M,O,310,6/30/2012,7/1/2008,Mr. Thompson +Alderman ,Town of Ridgecrest ,116 Foster Dr.,,Ridgecrest,LA,71334,318-757-4497,CONCORDIA,Gayle A. Cowan,112 Oak St.,,Ridgecrest,LA,71334,5,318-757-7862,W,F,D,310,12/31/2010,1/1/2007,Ms. Cowan +Alderman ,Town of Ridgecrest ,116 Foster Dr.,,Ridgecrest,LA,71334,318-757-4497,CONCORDIA,James Cowan,123 Pear St.,,Ridgecrest,LA,71334,5,318-757-4376,W,M,D,310,12/31/2010,1/1/2007,Mr. Cowan +Alderman ,Town of Ridgecrest ,116 Foster Dr.,,Ridgecrest,LA,71334,318-757-4497,CONCORDIA,Robert D. Maples,107 Grape St.,,Ridgecrest,LA,71334,5,318-757-2982,W,M,D,310,12/31/2010,1/1/2007,Mr. Maples +Alderman ,Town of Ridgecrest ,116 Foster Dr.,,Ridgecrest,LA,71334,318-757-4497,CONCORDIA,Dwayne Sikes,209 Ferriday Dr.,,Ridgecrest,LA,71334,5,318-757-1325,W,M,,310,12/31/2010,8/24/2009,Mr. Sikes +DPEC Member ,at Large ,,,,LA,,,DE SOTO,Kenny Cox,300 High School St.,,Mansfield,LA,71052,5,318-871-5749,B,M,D,54,2/20/2012,2/20/2008,Mr. Cox +DPEC Member ,District 1A ,,,,LA,,,DE SOTO,,,,,,,0,,,,,56,,, +DPEC Member ,District 1B ,,,,LA,,,DE SOTO,,,,,,,0,,,,,56,,, +DPEC Member ,District 1C ,,,,LA,,,DE SOTO,,,,,,,0,,,,,56,,, +DPEC Member ,District 2 ,,,,LA,,,DE SOTO,,,,,,,0,,,,,56,,, +DPEC Member ,District 3 ,,,,LA,,,DE SOTO,,,,,,,0,,,,,56,,, +DPEC Member ,District 4A ,,,,LA,,,DE SOTO,,,,,,,0,,,,,56,,, +DPEC Member ,District 4B ,,,,LA,,,DE SOTO,,,,,,,0,,,,,56,,, +DPEC Member ,District 4C ,,,,LA,,,DE SOTO,,,,,,,0,,,,,56,,, +DPEC Member ,District 4D ,,,,LA,,,DE SOTO,,,,,,,0,,,,,56,,, +DPEC Member ,District 5 ,,,,LA,,,DE SOTO,,,,,,,0,,,,,56,,, +DPEC Member ,District 6 ,,,,LA,,,DE SOTO,,,,,,,0,,,,,56,,, +RPEC Member ,at Large ,,,,LA,,,DE SOTO,,,,,,,0,,,,,64,,, +RPEC Member ,District 1A ,,,,LA,,,DE SOTO,,,,,,,0,,,,,66,,, +RPEC Member ,District 1B ,,,,LA,,,DE SOTO,,,,,,,0,,,,,66,,, +RPEC Member ,District 1C ,,,,LA,,,DE SOTO,,,,,,,0,,,,,66,,, +RPEC Member ,District 2 ,,,,LA,,,DE SOTO,,,,,,,0,,,,,66,,, +RPEC Member ,District 3 ,,,,LA,,,DE SOTO,,,,,,,0,,,,,66,,, +RPEC Member ,District 4A ,,,,LA,,,DE SOTO,,,,,,,0,,,,,66,,, +RPEC Member ,District 4B ,,,,LA,,,DE SOTO,,,,,,,0,,,,,66,,, +RPEC Member ,District 4C ,,,,LA,,,DE SOTO,,,,,,,0,,,,,66,,, +RPEC Member ,District 4D ,,,,LA,,,DE SOTO,"Bryan B. Norwood, Jr.",180 Norwood Rd.,,Mansfield,LA,71052,5,318-872-4707,W,M,R,66,2/20/2012,2/20/2008,Mr. Norwood +RPEC Member ,District 5 ,,,,LA,,,DE SOTO,,,,,,,0,,,,,66,,, +RPEC Member ,District 6 ,,,,LA,,,DE SOTO,,,,,,,0,,,,,66,,, +Sheriff ,,205 Franklin St.,,Mansfield,LA,71052,318-872-3956,DE SOTO,Rodney Arbuckle,205 Franklin St.,,Mansfield,LA,71052,5,318-925-4472,W,M,D,225,6/30/2012,7/1/2008,Sheriff Arbuckle +Clerk of Court ,,P. O. Box 1206,,Mansfield,LA,71052,318-872-3110,DE SOTO,"O. L. ""Sonny"" Stone, Jr.",P.O. Box 1206,,Mansfield,LA,71052,5,318-872-6308,W,M,D,230,6/30/2012,7/1/2008,Mr. Stone +Assessor ,,212 Adams St.,,Mansfield,LA,71052,318-872-3610,DE SOTO,Jimmy Stephens,189 Hatcher Ln.,,Logansport,LA,71049,5,318-697-5059,W,M,D,235,12/31/2012,1/1/2009,Mr. Stephens +Coroner ,,P.O. Box 899,,Mansfield,LA,71052,318-872-0516,DE SOTO,Jack Grindle,689 George Hunt Rd.,,Grand Cane,LA,71032,5,318-858-2244,W,M,R,240,3/25/2012,3/24/2008,Mr. Grindle +Police Juror,District 1A,P. O. Box 898,,Mansfield,LA,71052,318-872-0738,DE SOTO,"Gerald ""Jerry"" Moncrief",242 Petty Rd.,,Logansport,LA,71049,5,318-697-6654,W,M,D,245,1/8/2012,1/14/2008,Mr. Moncrief +Police Juror ,District 1B ,P. O. Box 898,,Mansfield,LA,71052,318-872-0738,DE SOTO,Dewayne Mitchell,871 Cash Blackmon Rd.,,Logansport,LA,71049,5,318-697-2767,W,M,D,245,1/8/2012,1/14/2008,Mr. Mitchell +Police Juror ,District 1C ,P. O. Box 898,,Mansfield,LA,71052,318-872-0738,DE SOTO,Jarrell O. Burch,933 Schley St.,,Mansfield,LA,71052,5,318-697-5316,W,M,D,245,1/8/2012,1/14/2008,Mr. Burch +Police Juror ,District 2 ,P. O. Box 898,,Mansfield,LA,71052,318-872-0738,DE SOTO,A. W. McDonald,P.O. Box 898,,Mansfield,LA,71052,5,,,,,245,,10/22/2009,Mr. McDonald +Police Juror ,District 2 ,P. O. Box 898,,Mansfield,LA,71052,318-872-0738,DE SOTO,"A. W. McDonald, ",185 Cathey Rd.,,Stonewall,LA,71078-9504,10,318-925-9362,W,M,R,245,,2/15/2010, +Police Juror ,District 3 ,P. O. Box 898,,Mansfield,LA,71052,318-872-0738,DE SOTO,"""Greg"" Baker",1611 Red Bluff Rd.,,Stonewall,LA,71078,5,318-925-9872,W,M,R,245,1/8/2012,1/14/2008,Mr. Baker +Police Juror ,District 4A ,P. O. Box 898,,Mansfield,LA,71052,318-872-0738,DE SOTO,Richard Fuller,169 Doris Dr.,,Grand Cane,LA,71032,5,318-872-1400,B,M,D,245,1/8/2012,1/14/2008,Mr. Fuller +Police Juror ,District 4B ,P. O. Box 898,,Mansfield,LA,71052,318-872-0738,DE SOTO,Jeff L. Heard,P.O. Box 1053,,Mansfield,LA,71052,5,318-872-5046,W,M,D,245,1/8/2012,1/14/2008,Mr. Heard +Police Juror ,District 4C ,P. O. Box 898,,Mansfield,LA,71052,318-872-0738,DE SOTO,Ernel Jones,15029 Hwy. 175,,Mansfield,LA,71052,5,318-872-3358,B,M,D,245,1/8/2012,1/14/2008,Mr. Jones +Police Juror ,District 4D ,P. O. Box 898,,Mansfield,LA,71052,318-872-0738,DE SOTO,Sylvester Mayweather,675 Railroad Ave.,,Mansfield,LA,71052,5,318-872-1610,B,M,D,245,1/8/2012,1/14/2008,Mr. Mayweather +Police Juror ,District 5 ,P. O. Box 898,,Mansfield,LA,71052,318-872-0738,DE SOTO,Reggie Roe,877 Friendship Rd.,,Frierson,LA,71027,5,318-797-8807,W,M,D,245,1/8/2012,1/14/2008,Mr. Roe +Police Juror ,District 6 ,P. O. Box 898,,Mansfield,LA,71052,318-872-0738,DE SOTO,Fred Jones,532 Reddix Rd.,,Pelican,LA,71063,5,318-755-2870,B,M,D,245,1/8/2012,1/14/2008,Mr. Jones +Member of School Board ,District 1 ,201 Crosby St.,,Mansfield,LA,71052,318-872-3993,DE SOTO,Dudley M. Glenn,P.O. Box 85,,Gloster,LA,71030,5,318-933-5275,W,M,D,255,12/31/2010,1/1/2007,Mr. Glenn +Member of School Board ,District 2 ,201 Crosby St.,,Mansfield,LA,71052,318-872-3993,DE SOTO,Neil Henderson,939 Hwy 171,,Stonewall,LA,71078,5,318-453-9189,W,M,R,255,12/31/2010,1/1/2007, +Member of School Board ,District 3 ,201 Crosby St.,,Mansfield,LA,71052,318-872-3993,DE SOTO,Mclawrence Fuller,208 Doris Dr.,,Grand Cane,LA,71032,5,318-872-4767,B,M,D,255,12/31/2010,1/1/2007, +Member of School Board ,District 4 ,201 Crosby St.,,Mansfield,LA,71052,318-872-3993,DE SOTO,"""Donnie"" Dufour",P.O. Box 734,,Mansfield,LA,71052,5,318-872-3533,W,M,D,255,12/31/2010,1/1/2007, +Member of School Board ,District 5 ,201 Crosby St.,,Mansfield,LA,71052,318-872-3993,DE SOTO,Shirley Payne,165 Richardson Rd.,,Pelican,LA,71063,5,318-755-2851,B,F,D,255,12/31/2010,10/14/2008,Ms. Payne +Member of School Board ,District 6 ,201 Crosby St.,,Mansfield,LA,71052,318-872-3993,DE SOTO,John A. Neilson,P.O. Box 853,,Mansfield,LA,71052,5,318-872-4821,W,M,D,255,12/31/2010,1/1/2007,Mr. Neilson +Member of School Board ,District 7 ,201 Crosby St.,,Mansfield,LA,71052,318-872-3993,DE SOTO,"""Coach"" Haynes",P.O. Box 354,,Logansport,LA,71049,5,318-697-5193,W,M,D,255,12/31/2010,1/1/2007,Mr. Haynes +Member of School Board ,District 8 ,201 Crosby St.,,Mansfield,LA,71052,318-872-3993,DE SOTO,Mark Ross,4294 Red Bluff Rd.,,Gloster,LA,71030,5,318-925-6052,W,M,D,255,12/31/2010,1/1/2007,Mr. Ross +Member of School Board ,District 9 ,201 Crosby St.,,Mansfield,LA,71052,318-872-3993,DE SOTO,"""Tommy"" Craig",106 Clista St.,,Mansfield,LA,71052,5,318-872-3524,W,M,R,255,12/31/2010,1/1/2007,Mr. Craig +Member of School Board ,District 10 ,201 Crosby St.,,Mansfield,LA,71052,318-872-3993,DE SOTO,Barthlomew Claiborne,407 Jacobs St.,,Mansfield,LA,71052,5,318-207-7713,B,M,,255,12/31/2010,1/1/2007,Mr. Claiborne +Member of School Board ,District 11 ,201 Crosby St.,,Mansfield,LA,71052,318-872-3993,DE SOTO,"L. J. Mayweather, Jr.",155 Pine Hill Cir.,,Mansfield,LA,71052,5,318-872-4239,B,M,D,255,12/31/2010,1/1/2007,Mr. Mayweather +Justice of the Peace ,Justice of the Peace District 1 ,182 Helen Ln.,,Logansport,LA,71049,318-697-5707,DE SOTO,Helen Holmes,182 Helen Ln.,,Logansport,LA,71049,5,318-697-5707,W,F,D,265,12/31/2014,1/1/2009,Ms. Holmes +Justice of the Peace ,Justice of the Peace District 2 ,1801 Hwy. 171,,Stonewall,LA,71078,318-925-0569,DE SOTO,Gloria J. McPhearson,1801 Hwy. 171,,Stonewall,LA,71078,5,318-925-0569,W,F,D,265,12/31/2014,1/1/2009,Ms. McPhearson +Justice of the Peace ,Justice of the Peace District 3 ,382 Marian Ln.,,Logansport,LA,71049,318-697-5361,DE SOTO,S. Phillip Joyner,562 Hwy. 763,,Mansfield,LA,71052,5,318-697-2361,W,M,R,265,12/31/2014,1/1/2009,Mr. Joyner +Justice of the Peace ,Justice of the Peace District 4 ,2286 S. Washington St.,,Mansfield,LA,71052,318-872-3291,DE SOTO,"Wilbur T. Purvis, Jr.",P. O. Box 66,,Mansfield,LA,71052,5,318-872-3291,B,M,D,265,12/31/2014,1/1/2009,Mr. Purvis +Justice of the Peace ,Justice of the Peace District 5 ,854 Hwy. 346,,Pelican,LA,71063,318-755-2391,DE SOTO,"""Pat"" Chamberlin",854 Hwy. 346,,Pelican,LA,71063,5,318-755-2391,W,M,D,265,12/31/2014,1/1/2009,Mr. Chamberlin +Justice of the Peace ,Justice of the Peace District 6 ,808 Hwy. 5,,Logansport,LA,71049,318-697-4920,DE SOTO,Jerry L. Lowe,2207 Main St.,,Logansport,LA,71049,5,318-697-5485,W,M,,265,12/31/2014,1/1/2009,Mr. Lowe +Constable ,Justice of the Peace District 1 ,379 Belle Bower Rd.,,Logansport,LA,71049,318-697-5852,DE SOTO,Hollis Holmes,379 Belle Bower Rd.,,Logansport,LA,71049-3219,10,318-697-5852,W,M,D,267,12/31/2014,1/1/2009,Mr. Holmes +Constable ,Justice of the Peace District 2 ,3310 Red Bluff Rd.,,Gloster,LA,71030,318-925-1240,DE SOTO,"Troy ""Bubba"" Yopp, III",3310 Red Bluff Rd.,,Gloster,LA,71030,5,318-925-1240,W,M,O,267,12/31/2014,1/1/2009,Mr. Yopp +Constable ,Justice of the Peace District 3 ,1005 Hwy. 763,,Mansfield,LA,71052,318-697-4731,DE SOTO,Billy Murphy,1001 Hwy. 763,,Mansfield,LA,71052,5,318-697-4731,W,M,D,267,12/31/2014,1/1/2009,Mr. Murphy +Constable ,Justice of the Peace District 4 ,904 Susan St.,,Mansfield,LA,71052,318-697-4731,DE SOTO,"Travis ""Bubba"" English, Jr.",904 Susan St.,,Mansfield,LA,71052,5,318-872-4239,W,M,D,267,12/31/2014,1/1/2009,Mr. English +Constable ,Justice of the Peace District 5 ,191 Davidson Rd.,,Mansfield,LA,71052,318-872-4794,DE SOTO,Linda Wilburn Davidson,191 Davidson Rd.,,Mansfield,LA,71052,5,318-872-4794,W,F,D,267,12/31/2014,1/1/2009,Ms. Davidson +Constable ,Justice of the Peace District 6 ,678 Horn Rd.,,Logansport,LA,71049,318-697-5438,DE SOTO,E. J. Barber,678 Horn Rd.,,Logansport,LA,71049,5,318-697-5438,W,M,D,267,12/31/2014,1/1/2009,Mr. Barber +Mayor ,City of Mansfield ,P. O. Box 773,,Mansfield,LA,,318-872-0406,DE SOTO,Curtis W. McCoy,415 Gibbs St.,,Mansfield,LA,71052,5,318-872-6527,B,M,D,300,6/30/2010,7/1/2006,Mayor McCoy +Mayor ,City of Mansfield ,P. O. Box 773,,Mansfield,LA,,318-872-0406,DE SOTO,"Curtis W. McCoy, ",415 Gibb St.,,Mansfield,LA,71052-2617,10,318-872-6527,B,M,D,300,,, +Mayor ,Town of Keachi ,P. O. Drawer 10,,Keachi,LA,,,DE SOTO,Travis Whitfield,P.O. Box 66,,Keatchie,LA,71046,5,318-933-8371,W,M,,300,12/31/2010,1/1/2007,Mr. Whitfield +Mayor ,Town of Logansport ,P. O. Box 400,,Logansport,LA,,318-697-5359,DE SOTO,Katherine Freeman,P. O. Box 819,,Logansport,LA,71049,5,318-697-4459,W,F,R,300,12/31/2012,1/1/2009,Mayor Freeman +Mayor ,Town of Stonewall ,P. O. Box 92,,Stonewall,LA,,318-925-9338,DE SOTO,Curtis McCune,444 Hall Rd.,,Stonewall,LA,71078,5,318-925-9943,W,M,D,300,6/30/2010,7/1/2006,Mayor McCune +Mayor ,Town of Stonewall ,P. O. Box 92,,Stonewall,LA,,318-925-9338,DE SOTO,"Charles Waldon, ",428 Burford Rd.,,Stonewall,LA,71078-9698,10,318-925-6688,W,M,N,300,,, +Mayor ,Village of Grand Cane ,P. O. Box 82,,Grand Cane,LA,,318-858-3251,DE SOTO,"Clayton Davis, Jr.",P.O. Box 471,,Grand Cane,LA,71032,5,318-858-0825,W,M,R,300,12/31/2010,1/1/2007,Mr. Davis +Mayor ,Village of Longstreet ,P. O. Box 3130,,Longstreet,LA,,318-697-0226,DE SOTO,Frank Joseph Elliott,P.O. Box 3269,,Longstreet,LA,71050,5,318-697-4532,W,M,,300,6/30/2010,7/1/2006,Mayor Elliott +Mayor ,Village of South Mansfield ,P. O. Box 995,,South Mansfield,LA,,318-872-3960,DE SOTO,Euricka Mayweather,675 Railroad Ave.,,Mansfield,LA,71052-5629,10,318-872-1610,B,F,D,300,12/31/2012,1/1/2009,Mayor Mayweather +Mayor ,Village of Stanley ,13595 Hwy. 84,,Logansport,LA,,318-697-4768,DE SOTO,Altheaon H. Burch,P.O. Box 772,,Mansfield,LA,71052,5,318-453-3438,W,F,D,300,6/30/2013,7/1/2009,Mayor Burch +Chief of Police ,Town of Stonewall ,P. O. Box 92,,Stonewall,LA,71078,318-925-9338,DE SOTO,"Thomas H. Dufrene, Jr.",171 Julie Ln.,,Stonewall,LA,71078-9605,10,318-458-5999,W,M,D,305,6/30/2010,7/21/2008,Chief Dufrene +Chief of Police ,Town of Stonewall ,P. O. Box 92,,Stonewall,LA,71078,318-925-9338,DE SOTO,"Thomas Henry Dufrene, Jr.",171 Julie Ln.,,Stonewall,LA,71078-9605,10,318-458-5999,W,M,R,305,,, +Chief of Police ,Village of Stanley ,13595 Hwy. 84,,Logansport,LA,71049,318-697-4768,DE SOTO,"David Glen Burch, Sr.",205 Hwy 763,,Mansfield,LA,71052,5,318-872-3423,W,M,D,305,6/30/2013,7/1/2009,Chief Burch +Alderman ,"District A, City of Mansfield ",P. O. Box 773,,Mansfield,LA,71052,318-872-0406,DE SOTO,"Guy B. ""Sonny"" Hall, III",310 Marcia St.,,Mansfield,LA,71052,5,318-872-4428,W,M,D,310,6/30/2010,7/1/2006,Mr. Hall +Alderman ,"District B, City of Mansfield ",P. O. Box 773,,Mansfield,LA,71052,318-872-0406,DE SOTO,Dudley Kemper,101 Forest Ave.,,Mansfield,LA,71052,5,318-872-4567,W,M,R,310,6/30/2010,7/1/2006,Mr. Kemper +Alderman ,"District C, City of Mansfield ",P. O. Box 773,,Mansfield,LA,71052,318-872-0406,DE SOTO,Mitchell Lewis,604 Oxford Rd.,,Mansfield,LA,71052,5,318-872-0726,B,M,D,310,6/30/2010,7/1/2006,Mr. Lewis +Alderman ,"District C, City of Mansfield ",P. O. Box 773,,Mansfield,LA,71052,318-872-0406,DE SOTO,"Mitchell Lewis, ",604 Oxford Rd.,,Mansfield,LA,71052-5013,10,318-872-0726,B,M,D,310,,, +Alderman ,"District D, City of Mansfield ",P. O. Box 773,,Mansfield,LA,71052,318-872-0406,DE SOTO,"Joseph Hall, Jr.",319 Gibbs St.,,Mansfield,LA,71052,5,318-871-4806,B,M,D,310,6/30/2010,7/1/2006,Mr. Hall +Alderman ,"District D, City of Mansfield ",P. O. Box 773,,Mansfield,LA,71052,318-872-0406,DE SOTO,"Joseph Hall, Jr.",319 Gibbs St.,,Mansfield,LA,71052-2615,10,318-871-4806,B,M,D,310,,, +Alderman ,"District E, City of Mansfield ",P. O. Box 773,,Mansfield,LA,71052,318-872-0406,DE SOTO,"Alvin Woodley, ",711 Grove St.,,Mansfield,LA,71052-3403,10,318-872-2179,B,M,D,310,,, +Alderman ,"District E, City of Mansfield ",P. O. Box 773,,Mansfield,LA,71052,318-872-0406,DE SOTO,Alvin Ray Woodley,711 Grove St.,,Mansfield,LA,71052,5,318-872-2179,B,M,D,310,6/30/2010,7/1/2006,Mr. Woodley +Alderman ,Village of Grand Cane ,P. O. Box 82,,Grand Cane,LA,71032,318-858-3251,DE SOTO,"William H. ""Bill"" Cook",P.O. Box 166,,Grand Cane,LA,71032,5,318-858-2441,W,M,R,310,12/31/2010,1/1/2007,Mr. Cook +Alderman ,Village of Grand Cane ,P. O. Box 82,,Grand Cane,LA,71032,318-858-3251,DE SOTO,Rhonda H. Meek,P.O. Box 306,,Grand Cane,LA,71032,5,318-858-0009,W,F,R,310,12/31/2010,1/1/2007,Mr. Meek +Alderman ,Village of Grand Cane ,P. O. Box 82,,Grand Cane,LA,71032,318-858-3251,DE SOTO,Marsha Lea Richardson,P.O. Box 23,,Grand Cane,LA,71032,5,318-858-2295,W,F,D,310,12/31/2010,1/1/2007,Ms. Richardson +Alderman ,Village of South Mansfield ,P. O. Box 995,,South Mansfield,LA,71052,318-872-3960,DE SOTO,Ola Mae Evans,874 Railroad Ave.,,Mansfield,LA,71052,5,318-872-0852,B,F,D,310,12/31/2012,1/1/2009,Ms. Evans +Alderman ,Village of South Mansfield ,P. O. Box 995,,South Mansfield,LA,71052,318-872-3960,DE SOTO,Dianne Hudson,131 Hudson Ln.,,Mansfield,LA,71052,5,318-872-5846,B,F,D,310,12/31/2012,1/1/2009,Ms. Hudson +Alderman ,Village of South Mansfield ,P. O. Box 995,,South Mansfield,LA,71052,318-872-3960,DE SOTO,Jimmy L. Smith,540 Railroad Ave.,,Mansfield,LA,71052,5,318-871-1861,B,M,D,310,12/31/2012,1/1/2009,Mr. Smith +Alderman ,Village of Stanley ,13595 Hwy. 84,,Logansport,LA,71049,318-697-4768,DE SOTO,Dwena M. Henry,644 Hwy 763,,Mansfield,LA,71052,5,318-697-4768,W,F,D,310,6/30/2013,7/1/2009,Ms. Henry +Alderman ,Village of Stanley ,13595 Hwy. 84,,Logansport,LA,71049,318-697-4768,DE SOTO,Clemmie P. McCoy,13669 Hwy 84,,Logansport,LA,71049,5,318-697-2551,W,F,D,310,6/30/2013,7/1/2009,Ms. McCoy +Alderman ,Village of Stanley ,13595 Hwy. 84,,Logansport,LA,71049,318-697-4768,DE SOTO,Mark A. Murphrey,501 Hwy 763,,Mansfield,LA,71052,5,318-697-2792,W,M,R,310,6/30/2013,7/1/2009,Mr. Murphrey +Council Member ,Town of Logansport ,P. O. Box 400,,Logansport,LA,71049,,DE SOTO,Norman Arbuckle,P. O. Box 425,,Logansport,LA,71049-0425 ,11,318-697-5873,W,M,R,310,12/31/2012,1/1/2009,Mr. Arbuckle +Council Member ,Town of Logansport ,P. O. Box 400,,Logansport,LA,71049,,DE SOTO,Douglas Robert Guillotte,P. O. Box 756,,Logansport,LA,71049,5,318-697-5534,W,M,D,310,12/31/2012,1/1/2009,Mr. Guillotte +Council Member ,Town of Logansport ,P. O. Box 400,,Logansport,LA,71049,,DE SOTO,June Creech Hooper,P. O. Box 24,,Logansport,LA,71049,5,318-697-2400,W,F,R,310,12/31/2012,1/1/2009,Ms. Hooper +Council Member ,Town of Logansport ,P. O. Box 400,,Logansport,LA,71049,,DE SOTO,Deborah M. Roberts,204 Marie St.,,Logansport,LA,71049,5,318-697-5050,B,F,D,310,12/31/2012,1/1/2009,Ms. Roberts +Council Member ,Town of Logansport ,P. O. Box 400,,Logansport,LA,71049,,DE SOTO,Edith Duncan Williams,P.O. Box 504,,Logansport,LA,71049,5,318-697-5085,B,F,D,310,12/31/2012,1/1/2009,Ms. Williams +Council Member ,Town of Stonewall ,P. O. Box 92,,Stonewall,LA,71078,318-925-9338,DE SOTO,"Margaret A. Dickerson, ",4662 Hwy. 3276,,Stonewall,LA,71078-8240,10,318-925-9453,W,F,D,310,,, +Council Member ,Town of Stonewall ,P. O. Box 92,,Stonewall,LA,71078,318-925-9338,DE SOTO,"Nicholas ""Nick"" Gasper, ",432 Hall Rd.,,Stonewall,LA,71078-9560,10,318-347-4811,W,M,R,310,,, +Council Member ,Town of Stonewall ,P. O. Box 92,,Stonewall,LA,71078,318-925-9338,DE SOTO,"Patrick Loftus, Jr.",1758 Missile Base Rd.,,Stonewall,LA,71078-8328,10,318-925-0702,W,M,D,310,,, +Council Member ,Town of Stonewall ,P. O. Box 92,,Stonewall,LA,71078,318-925-9338,DE SOTO,"Patrick J. Loftus, Jr.",1758 Missile Base Rd.,,Stonewall,LA,71078,5,318-925-0702,W,M,D,310,6/30/2010,7/1/2006,Mr. Loftus +Council Member ,Town of Stonewall ,P. O. Box 92,,Stonewall,LA,71078,318-925-9338,DE SOTO,"Curtis McCune, ",444 Hall Rd.,,Stonewall,LA,71078-9560,10,318-925-9943,W,M,D,310,,, +Council Member ,Town of Stonewall ,P. O. Box 92,,Stonewall,LA,71078,318-925-9338,DE SOTO,"Robert C. ""Bob"" Russell",1361 Hwy 171,,Stonewall,LA,71078,5,318-207-2703,W,M,,310,6/30/2010,7/1/2006,Mr. Russell +Council Member ,Town of Stonewall ,P. O. Box 92,,Stonewall,LA,71078,318-925-9338,DE SOTO,Glenn Settle,253 Memory Ln.,,Stonewall,LA,71078,5,318-925-9881,W,M,R,310,6/30/2010,7/1/2006,Mr. Settle +Council Member ,Town of Stonewall ,P. O. Box 92,,Stonewall,LA,71078,318-925-9338,DE SOTO,"Dorothy Simmons, ",234 Sandpiper Ln.,,Stonewall,LA,71078-2804,10,318-925-3370,W,F,R,310,,, +Council Member ,Town of Stonewall ,P. O. Box 92,,Stonewall,LA,71078,318-925-9338,DE SOTO,"Dorothy ""Dot"" Simmons",234 Sandpiper Ln.,,Stonewall,LA,71078,5,318-925-3370,W,F,R,310,6/30/2010,7/21/2008,Ms. Simmons +Council Member ,Town of Stonewall ,P. O. Box 92,,Stonewall,LA,71078,318-925-9338,DE SOTO,Charles R. Waldon,428 Burford Rd.,,Stonewall,LA,71078,5,318-925-6688,W,M,,310,6/30/2010,7/1/2006,Mr. Waldon +Council Member ,Village of Longstreet ,P. O. Box 3130,,Longstreet,LA,71050,318-697-0226,DE SOTO,Wanda Sue Lewis Fields,120 Pine Tree Ln.,,Logansport,LA,71049,5,318-697-4089,W,F,,310,6/30/2010,7/1/2006,Ms. Fields +Council Member ,Village of Longstreet ,P. O. Box 3130,,Longstreet,LA,71050,318-697-0226,DE SOTO,"""Connie"" Jackson",P.O. Box 3103,,Logansport,LA,71049,5,318-697-5881,W,F,R,310,6/30/2010,7/1/2006,Ms. Jackson +Council Member ,Village of Longstreet ,P. O. Box 3130,,Longstreet,LA,71050,318-697-0226,DE SOTO,Queenie D. Rogers,165 Charlies Ln.,,Keatchie,LA,71046,5,318-297-2880,B,F,D,310,6/30/2010,7/1/2006,Ms. Rogers +Councilman ,Town of Keachi ,P. O. Drawer 10,,Keachi,LA,71046,,DE SOTO,Jeanette Pons Avila,P.O. Box 185,,Keatchie,LA,71046,5,318-933-5729,W,F,,310,12/31/2010,1/1/2007,Ms. Avila +Councilman ,Town of Keachi ,P. O. Drawer 10,,Keachi,LA,71046,,DE SOTO,William Chad Burford,1066 Keatchie Rd.,,Keatchie,LA,71046,5,318-933-5309,W,M,R,310,12/31/2010,1/1/2007,Mr. Burford +Councilman ,Town of Keachi ,P. O. Drawer 10,,Keachi,LA,71046,,DE SOTO,Lorice A. Pipkin,358 Mccann Rd.,,Keatchie,LA,71046,5,318-933-5794,B,F,D,310,12/31/2010,1/1/2007,Ms. Pipkin +Councilman ,Town of Keachi ,P. O. Drawer 10,,Keachi,LA,71046,,DE SOTO,Audrey Rachal,P.O. Box 146,,Keatchie,LA,71046,5,318-933-2226,W,F,D,310,12/31/2010,1/1/2007,Ms. Rachal +Councilman ,Town of Keachi ,P. O. Drawer 10,,Keachi,LA,71046,,DE SOTO,Angela Toney,P.O. Box 271,,Keatchie,LA,71046,5,318-933-8936,W,F,D,310,12/31/2010,1/1/2007,Ms. Toney +DPEC Member ,at Large ,,,,LA,,,EAST BATON ROUGE,Lynn N. Bankston,10916 N. Oakhills Pkwy.,,Baton Rouge,LA,70810,5,225-766-2505,W,F,D,54,2/20/2012,2/20/2008,Ms. Bankston +DPEC Member ,at Large ,,,,LA,,,EAST BATON ROUGE,Darlene Fields,5315 Hollywood St.,,Baton Rouge,LA,70805,5,225-356-6094,B,F,D,54,2/20/2012,2/20/2008,Ms. Fields +DPEC Member ,at Large ,,,,LA,,,EAST BATON ROUGE,"Donald Hodge, Jr.",224 Ocean Dr. #202,,Baton Rouge,LA,70806,5,337-794-8873,W,M,D,54,2/20/2012,2/20/2008,Mr. Hodge +DPEC Member ,at Large ,,,,LA,,,EAST BATON ROUGE,Ben Jeffers,922 Mayflower St.,,Baton Rouge,LA,70802,5,225-346-5400,B,M,D,54,2/20/2012,2/20/2008,Mr. Jeffers +DPEC Member ,at Large ,,,,LA,,,EAST BATON ROUGE,W. T. Winfield,1240 N. 29th St.,,Baton Rouge,LA,70802,5,225-383-0822,B,M,D,54,2/20/2012,2/20/2008,Mr. Winfield +DPEC Member ,District 1 ,,,,LA,,,EAST BATON ROUGE,Juanita Carter-Sanford,12747 Pride Port Hudson Rd.,,Zachary,LA,70791,5,225-654-8040,B,F,D,56,2/20/2012,2/20/2008,Ms. Carter-Sanford +DPEC Member ,District 2 ,,,,LA,,,EAST BATON ROUGE,Linda Perkins,13308 Ector Dr.,,Baker,LA,70714,5,225-382-0040,B,F,D,56,2/20/2012,2/20/2008,Ms. Perkins +DPEC Member ,District 3 ,,,,LA,,,EAST BATON ROUGE,Christopher R. Sonnier,3343 Twelve Oaks Ave.,,Baton Rouge,LA,70820,5,225-757-1718,W,M,D,56,2/20/2012,2/20/2008,Mr. Sonnier +DPEC Member ,District 4 ,,,,LA,,,EAST BATON ROUGE,Wade Byrd,16544 Quiet Oaks Ave.,,Greenwell Springs,LA,70739,5,225-261-0599,W,M,D,56,2/20/2012,2/20/2008,Mr. Byrd +DPEC Member ,District 5 ,,,,LA,,,EAST BATON ROUGE,Charles R. Kelly,6111 Maplewood Dr.,,Baton Rouge,LA,70812,5,225-389-4831,B,M,D,56,2/20/2012,2/20/2008,Mr. Kelly +DPEC Member ,District 6 ,,,,LA,,,EAST BATON ROUGE,Jesse H. Bankston,9526 Southmoor Dr.,,Baton Rouge,LA,70815,5,225-925-2543,W,M,D,56,2/20/2012,2/20/2008,Mr. Bankston +DPEC Member ,District 7 ,,,,LA,,,EAST BATON ROUGE,Mike Guy,2147 Government St.,,Baton Rouge,LA,70806,5,225-343-5377,B,M,D,56,2/20/2012,2/20/2008,Mr. Guy +DPEC Member ,District 8 ,,,,LA,,,EAST BATON ROUGE,James Ledford,14827 Colonel Allen Ct.,,Baton Rouge,LA,70816,5,225-292-0165,W,M,D,56,2/20/2012,2/20/2008,Mr. Ledford +DPEC Member ,District 9 ,,,,LA,,,EAST BATON ROUGE,,,,,,,0,,,,,56,,, +DPEC Member ,District 10 ,,,,LA,,,EAST BATON ROUGE,Carolyn Coleman,806 East Blvd.,,Baton Rouge,LA,70802,5,225-343-1057,B,F,D,56,2/20/2012,2/20/2008,Ms. Coleman +DPEC Member ,District 11 ,,,,LA,,,EAST BATON ROUGE,"Elizabeth ""Betty"" Powers",2436 E. Contour Dr.,,Baton Rouge,LA,70809,5,225-928-9135,W,F,D,56,2/20/2012,2/20/2008,Ms. Powers +DPEC Member ,District 12 ,,,,LA,,,EAST BATON ROUGE,Brandon DeCuir,1165 Sharynwood Dr.,,Baton Rouge,LA,70808,5,225-223-6587,B,M,D,56,2/20/2012,2/20/2008,Mr. DeCuir +RPEC Member ,at Large ,,,,LA,,,EAST BATON ROUGE,"""Jerry"" Arbour",701 North St.,,Baton Rouge,LA,70802,5,225-387-5557,W,M,R,64,2/20/2012,2/20/2008, +RPEC Member ,at Large ,,,,LA,,,EAST BATON ROUGE,Elizabeth Dent,1055 Laurel St.,,Baton Rouge,LA,70802,5,225-344-2374,W,F,R,64,2/20/2012,2/20/2008,Ms. Dent +RPEC Member ,at Large ,,,,LA,,,EAST BATON ROUGE,"Fred Dent, Jr.",1055 Laurel St.,,Baton Rouge,LA,70802,5,225-344-2374,W,M,R,64,2/20/2012,2/20/2008,Mr. Dent +RPEC Member ,at Large ,,,,LA,,,EAST BATON ROUGE,"""Tommy"" French",5015 Parkhollow Dr.,,Baton Rouge,LA,70816,5,225-293-0650,W,M,R,64,2/20/2012,2/20/2008, +RPEC Member ,at Large ,,,,LA,,,EAST BATON ROUGE,Dan Kyle,818 Woodleigh Dr,,Baton Rouge,LA,70810,5,225-978-1455,W,M,R,64,2/20/2012,2/20/2008,Mr. Kyle +RPEC Member ,District 1 ,,,,LA,,,EAST BATON ROUGE,"Rosalie ""Pat"" Harris",3603 E. Meadow Ct.,,Zachary,LA,70791,5,225-658-5138,W,F,R,66,2/20/2012,2/20/2008,Ms. Harris +RPEC Member ,District 2 ,,,,LA,,,EAST BATON ROUGE,,,,,,,0,,,,,66,,, +RPEC Member ,District 3 ,,,,LA,,,EAST BATON ROUGE,John J. Price,17512 Five Oaks Dr.,,Baton Rouge,LA,70810,5,225-753-5338,W,M,R,66,2/20/2012,2/20/2008,Mr. Price +RPEC Member ,District 4 ,,,,LA,,,EAST BATON ROUGE,Daniel Edwards,11971 Cline Dr.,,Baker,LA,70714,5,225-276-9106,W,M,R,66,2/20/2012,2/20/2008,Mr. Edwards +RPEC Member ,District 5 ,,,,LA,,,EAST BATON ROUGE,Harold Williams,4714 Monarch Ave.,,Baton Rouge,LA,70811,5,225-357-4294,,,,66,2/20/2012,2/20/2008,Mr. Williams +RPEC Member ,District 5 ,,,,LA,,,EAST BATON ROUGE,Harold Williams,P.O. Box 80727,,Baton Rouge,LA,70898,5,225-806-6923,B,M,R,66,2/20/2012,2/20/2008, +RPEC Member ,District 6 ,,,,LA,,,EAST BATON ROUGE,Ramona Talley,10820 Rosebud Ct.,,Baton Rouge,LA,70815,5,225-572-7989,W,F,R,66,2/20/2012,2/20/2008,Ms. Talley +RPEC Member ,District 7 ,,,,LA,,,EAST BATON ROUGE,William Kimbrell,1679 Glenmore Ave.,,Baton Rouge,LA,70808,5,225-907-4700,W,M,R,66,2/20/2012,2/20/2008,Mr. Kimbrell +RPEC Member ,District 8 ,,,,LA,,,EAST BATON ROUGE,"""Ron"" Findish",12515 Schlayer Ave.,,Baton Rouge,LA,70816,5,225-293-0187,W,M,R,66,2/20/2012,2/20/2008,Mr. Findish +RPEC Member ,District 9 ,,,,LA,,,EAST BATON ROUGE,David Fakouri,P.O. Box 86255,,Baton Rouge,LA,70879,5,225-921-9735,W,M,R,66,2/20/2012,2/20/2008, +RPEC Member ,District 10 ,,,,LA,,,EAST BATON ROUGE,Cyrus Greco,2230 Olive St.,,Baton Rouge,LA,70806,5,225-346-1189,W,M,R,66,2/20/2012,2/20/2008,Mr. Greco +RPEC Member ,District 11 ,,,,LA,,,EAST BATON ROUGE,Sally A. Nungesser,1554 Lobdell Ave.,,Baton Rouge,LA,70806,5,225-929-6040,W,F,R,66,2/20/2012,2/20/2008,Ms. Nungesser +RPEC Member ,District 12 ,,,,LA,,,EAST BATON ROUGE,Donna Grodner,1033 Woodstone Dr.,,Baton Rouge,LA,70808,5,225-769-8442,W,F,R,66,2/20/2012,2/20/2008,Ms. Grodner +Judge ,"Juvenile Court, Elec. Sect. 1A ",8333 Veterans Memorial Blvd.,,Baton Rouge,LA,70807,225-354-1230,EAST BATON ROUGE,Kathleen Stewart Richey,P. O. Box 66976,,Baton Rouge,LA,70896,5,225-379-3277,W,F,D,220,12/31/2014,1/1/2009,Judge Richey +Judge ,"Juvenile Court, Elec. Sect. 2B ",8333 Veterans Memorial Blvd.,,Baton Rouge,LA,70807,225-354-1250,EAST BATON ROUGE,"""Pam"" Taylor Johnson",1755 Nicholson Dr.,,Baton Rouge,LA,70802,5,225-268-8989,B,F,D,220,12/31/2014,1/1/2009,Judge Johnson +"Judge, Family Court ","Election Section 1, Division B ",222 St. Louis St.,,Baton Rouge,LA,70801,225-389-7657,EAST BATON ROUGE,Lisa Woodruff-White,1130 N. Cicero Ave.,,Baton Rouge,LA,70816,5,225-275-0040,B,F,D,220,12/31/2014,1/1/2009,Judge White +"Judge, Family Court ","Election Section 2, Division C ",222 St. Louis St.,,Baton Rouge,LA,70801,225-389-4673,EAST BATON ROUGE,Toni Higginbotham,"222 St. Louis St., Ste. 948",,Baton Rouge,LA,70802,5,225-389-4673,W,F,R,220,12/31/2014,1/1/2009,Judge Higginbotham +"Judge, Family Court ","Election Section 3, Division A ",222 St. Louis St.,,Baton Rouge,LA,70801,225-389-4676,EAST BATON ROUGE,Pam Baker,8345 Kelwood Ave.,,Baton Rouge,LA,70806,5,225-751-9746,W,F,R,220,12/31/2014,1/1/2009,Judge Baker +"Judge, Family Court ","Election Section 3, Division D ",222 St. Louis St.,,Baton Rouge,LA,70801,225-389-4678,EAST BATON ROUGE,Annette Lassalle,"222 St. Louis St., Rm. 978",,Baton Rouge,LA,70802,5,225-389-4678,W,F,R,220,12/31/2014,1/1/2009,Judge Lassalle +Sheriff ,,P. O. Box 3277,,Baton Rouge,LA,70821,225-389-5000,EAST BATON ROUGE,"Sid J. Gautreaux, III",P.O. Box 3277,,Baton Rouge,LA,70821,5,225-570-2601,W,M,D,225,6/30/2012,7/1/2008,Sheriff Gautreaux +Clerk of Court ,,P. O. Box 1991,,Baton Rouge,LA,70821,225-389-3950,EAST BATON ROUGE,"""Doug"" Welborn",P.O. Box 1991,,Baton Rouge,LA,70821,5,225-261-5007,W,M,R,230,6/30/2012,7/1/2008,Mr. Welborn +Assessor ,,"222 St. Louis St., Rm. 126",,Baton Rouge,LA,70802,225-389-3933,EAST BATON ROUGE,Brian Wilson,P.O. Box 2026,,Baton Rouge,LA,70821,5,225-261-0320,W,M,R,235,12/31/2012,1/1/2009,Mr. Wilson +Coroner ,,4030 T.B. Herndon Ave.,,Baton Rouge,LA,70801,225-389-3047,EAST BATON ROUGE,Shannon Cooper,720 Marquette Ave.,,Baton Rouge,LA,70806,5,225-405-4648,W,M,R,240,3/25/2012,3/24/2008,Mr. Cooper +Mayor-President ,"Metro Council, City of Baton Rouge ",222 St. Louis,,Baton Rouge,LA,,225-389-3100,EAST BATON ROUGE,"Melvin ""Kip"" Holden",838 North Blvd.,,Baton Rouge,LA,70802,5,225-389-5102,B,M,D,243,12/31/2012,1/1/2009,Mayor Holden +Councilman ,Metro District 1 ,222 St. Louis Street,,Baton Rouge,LA,,225-389-3123,EAST BATON ROUGE,J. E. Trae Welch,5734 Main St.,,Zachary,LA,70791,5,225-774-5185,W,M,D,245,12/31/2012,1/1/2009,Mr. Welch +Councilman ,Metro District 2 ,222 St. Louis Street,,Baton Rouge,LA,70802,225-389-3123,EAST BATON ROUGE,"Ulysses Z. Addison, Jr.",10235 Ave. L,,Baton Rouge,LA,70807,5,225-389-8331,B,M,D,245,12/31/2012,1/1/2009,Mr. Addison +Councilman ,Metro District 3 ,222 St. Louis Street,,Baton Rouge,LA,70802,225-389-3123,EAST BATON ROUGE,Chandler Loupe,734 Plantation Ridge Dr.,,Baton Rouge,LA,70810,5,225-767-2222,W,M,R,245,12/31/2012,1/1/2009,Mr. Loupe +Councilman ,Metro District 4 ,222 St. Louis Street,,Baton Rouge,LA,70802,225-389-3123,EAST BATON ROUGE,Scott Wilson,P.O. Box 432,,Central,LA,70739,5,225-261-8667,W,M,R,245,12/31/2012,1/1/2009,Mr. Wilson +Councilman ,Metro District 5 ,222 St. Louis Street,,Baton Rouge,LA,70802,225-389-3123,EAST BATON ROUGE,Ronnie Edwards,P.O. Box 73018,,Baton Rouge,LA,70874,5,225-819-6546,B,F,D,245,12/31/2012,1/1/2009,Ms. Edwards +Councilman ,Metro District 6 ,222 St. Louis Street,,Baton Rouge,LA,70802,225-389-3123,EAST BATON ROUGE,Donna Collins-Lewis,P. O. Box 4095,,Baton Rouge,LA,70821,5,225-439-9690,B,F,D,245,12/31/2012,1/1/2009,Ms. Collins-Lewis +Councilman ,Metro District 7 ,222 St. Louis Street,,Baton Rouge,LA,70802,225-389-3123,EAST BATON ROUGE,C. Denise Marcelle,P.O. Box 2747,,Baton Rouge,LA,70802,5,225-336-0707,B,F,D,245,12/31/2012,1/1/2009,Ms. Marcelle +Councilman ,Metro District 8 ,222 St. Louis Street,,Baton Rouge,LA,70802,225-389-3123,EAST BATON ROUGE,"""Mike"" Walker",340 Laurie Lynn Dr.,,Baton Rouge,LA,70819,5,225-337-5311,W,M,R,245,12/31/2012,1/1/2009,Mr. Walker +Councilman ,Metro District 9 ,222 St. Louis Street,,Baton Rouge,LA,70802,225-389-3123,EAST BATON ROUGE,Joel Boe',P. O. Box 77274,,Baton Rouge,LA,70879,5,225-572-6181,W,M,R,245,12/31/2012,1/1/2009,Mr. Boe' +Councilman ,Metro District 10 ,222 St. Louis Street,,Baton Rouge,LA,70802,225-389-3123,EAST BATON ROUGE,Tara Wicker,337 N. 25th St.,,Baton Rouge,LA,70802,5,225-317-1849,B,F,D,245,12/31/2012,1/1/2009,Ms. Wicker +Councilman ,Metro District 11 ,222 St. Louis Street,,Baton Rouge,LA,70802,225-389-3123,EAST BATON ROUGE,Alison Cascio,"1701 Lobdell Ave., #90",,Baton Rouge,LA,70806,5,225-281-7632,W,F,R,245,12/31/2012,1/1/2009,Ms. Cascio +Councilman ,Metro District 12 ,222 St. Louis Street,,Baton Rouge,LA,70802,225-389-3123,EAST BATON ROUGE,"R.J. ""Smokie"" Bourgeois",1221 Staring Ln.,,Baton Rouge,LA,,0,225-413-3893,W,M,R,245,12/31/2012,1/1/2009,Mr. Bourgeois +City Judge ,"City Court, City of Baker ",P. O. Box 1,,Baker,LA,70714-0001 ,225-778-1866,EAST BATON ROUGE,Kirk A. Williams,P.O. Box 826,,Baker,LA,70704,5,225-775-9888,B,M,D,250,12/31/2014,1/1/2009,Judge Williams +City Judge ,"City Court, City of Zachary ",P. O. Box 310,,Zachary,LA,70791,225-654-0044,EAST BATON ROUGE,Lonny Myles,1444 Church St.,,Zachary,LA,70791,5,225-654-6006,W,M,D,250,12/31/2010,1/1/2005,Mr. Myles +City Judge ,"City Court, El. Sect. 1B, Baton Rouge ",P. O. Box 3438,,Baton Rouge,LA,70821-3438,225-389-3025,EAST BATON ROUGE,Kelli Terrell Temple,P.O. Box 708,,Baton Rouge,LA,70821,5,225-328-8844,B,F,D,250,12/31/2012,5/12/2009,Judge Temple +City Judge ,"City Court, El. Sect. 1D, Baton Rouge ",P. O. Box 3438,,Baton Rouge,LA,70821-3438,225-389-5006,EAST BATON ROUGE,Yvette M. Alexander,P.O. Box 2843,,Baton Rouge,LA,70821,5,225-768-7682,B,F,D,250,12/31/2012,1/1/2007,Judge Alexander +City Judge ,"City Court, El. Sect. 2A, Baton Rouge ",P. O. Box 3438,,Baton Rouge,LA,70821-3438,225-389-3021,EAST BATON ROUGE,Laura Prosser Davis,324 L.S.U. Ave.,,Baton Rouge,LA,70808,5,225-763-5843,W,F,R,250,12/31/2012,1/1/2007,Judge Davis +City Judge ,"City Court, El. Sect. 2C, Baton Rouge ",P. O. Box 3438,,Baton Rouge,LA,70821-3438,225-389-3346,EAST BATON ROUGE,"Alex ""Brick"" Wall",176 Rodney Dr.,,Baton Rouge,LA,70808,5,225-766-8181,W,M,D,250,12/31/2012,1/1/2007,Judge Wall +City Judge ,"City Court, El. Sect. 2E, Baton Rouge ",P. O. Box 3438,,Baton Rouge,LA,70821-3438,225-389-3095,EAST BATON ROUGE,Suzan S. Ponder,P.O. Box 989,,Baton Rouge,LA,70821,5,225-765-6222,W,F,R,250,12/31/2012,1/1/2007,Judge Ponder +City Constable ,"City Court, City of Baton Rouge ",P. O. Box 3438,,Baton Rouge,LA,70821-3438,225-389-3004,EAST BATON ROUGE,"Reginald R. Brown, Sr.",P.O. Box 881,,Baton Rouge,LA,70821,5,225-218-1954,B,M,D,253,12/31/2012,1/1/2007,Mr. Brown +Member of School Board ,"District 1, Zachary Community ",Zachary Community School Board,,,LA,70791,225-658-4969,EAST BATON ROUGE,Gaynell C. Young,129 W. Flanacher Rd.,,Zachary,LA,70791,5,225-654-5551,B,F,D,255,12/31/2010,1/1/2007,Ms. Young +Member of School Board ,"District 2, Zachary Community ",4656 Main St.,,Baton Rouge,LA,70719,225-658-4969,EAST BATON ROUGE,Scott Swilley,325 Grove Ave.,,Zachary,LA,70791,5,225-658-0425,W,M,R,255,12/31/2010,1/1/2007,Mr. Swilley +Member of School Board ,"District 3, Zachary Community ",4656 Main St.,,Baton Rouge,LA,70719,225-658-4969,EAST BATON ROUGE,Sharon T. Samuel,1344 Rollins Rd.,,Zachary,LA,70791,5,225-654-5710,W,F,R,255,12/31/2010,1/1/2007,Ms. Samuel +Member of School Board ,"District 4, Zachary Community ",4656 Main St.,,Baton Rouge,LA,70719,225-658-4969,EAST BATON ROUGE,Carl C. Snowden,1126 E. Mt. Pleasant Rd.,,Zachary,LA,70791,5,225-654-0259,B,M,D,255,12/31/2010,1/1/2007,Mr. Snowden +Member of School Board ,"District 5, Zachary Community ",4656 Main St.,,Baton Rouge,LA,70719,225-658-4969,EAST BATON ROUGE,"Hubert C. ""Hubie"" Owen",P.O. Box 1190,,Zachary,LA,70791,5,225-654-0299,W,M,R,255,12/31/2010,1/1/2007,Mr. Owen +Member of School Board ,"District 6, Zachary Community ",4656 Main St.,,Baton Rouge,LA,70719,225-658-4969,EAST BATON ROUGE,Jannie Thomas Rogers,P.O. Box 963,,Zachary,LA,70791,5,225-658-4809,B,F,D,255,12/31/2010,1/1/2007,Ms. Rogers +Member of School Board ,"District 7, Zachary Community ",4656 Main St.,,Baton Rouge,LA,70719,225-658-4969,EAST BATON ROUGE,Carl Kelley,4120 Noble St.,,Zachary,LA,70791,5,225-658-7575,W,M,R,255,12/31/2010,7/21/2008,Mr. kelley +Member of School Board ,"District 8, Zachary Community ",4656 Main St.,,Baton Rouge,LA,70719,225-658-4969,EAST BATON ROUGE,Jonathan C. Benda,4512 Virginia St.,,Zachary,LA,70791,5,225-654-0488,W,M,R,255,12/31/2010,1/1/2007,Mr. Benda +Member of School Board ,"District 9, Zachary Community ",4656 Main St.,,Baton Rouge,LA,70719,225-658-4969,EAST BATON ROUGE,David Dayton,20660 Plank Rd.,,Zachary,LA,70791,5,225-654-2249,W,M,R,255,12/31/2010,1/1/2007,Mr. Dayton +Member of School Board ,District 1 ,P.O. Box 2950,,Baton Rouge,LA,70821,225-922-5618,EAST BATON ROUGE,Derrick Spell,5824 Cherryridge Dr.,,Baton Rouge,LA,70809,5,225-215-1199,W,M,R,255,12/31/2010,1/1/2007,Mr. Spell +Member of School Board ,"District 1, Central Community ",,,,LA,,,EAST BATON ROUGE,Russell Starns,13110 Greenwell Springs Rd.,,Greenwell Springs,LA,70739,5,225-262-9741,W,M,R,255,12/31/2010,10/14/2008,Mr. Starns +Member of School Board ,"District 1, City of Baker ",3033-B Ray Weiland Dr.,,Baker,LA,70714,225-774-5795,EAST BATON ROUGE,"""Pam"" Malveaux",13308 Alba Dr.,,Baker,LA,70714,5,225-774-8520,B,F,O,255,12/31/2010,1/1/2007,Ms. Malveaux +Member of School Board ,District 2 ,P.O. Box 2950,,Baton Rouge,LA,70821,225-922-5618,EAST BATON ROUGE,Vereta Lee,P.O. Box 73133,,Baton Rouge,LA,70874,5,225-356-1729,B,F,D,255,12/31/2010,1/1/2007,Ms. Lee +Member of School Board ,"District 2, Central Community ",,,,LA,,,EAST BATON ROUGE,"W. ""Marty"" Guilbeau",10142 W. Brookside Dr.,,Baton Rouge,LA,70818,5,225-302-5315,,,R,255,12/31/2010,10/14/2008,Ms. Guilbeau +Member of School Board ,"District 2, City of Baker ",3033-B Ray Weiland Dr.,,Baker,LA,70714,225-774-5795,EAST BATON ROUGE,Dana Carpenter,3245 Chamberlain Ave.,,Baker,LA,70714,5,225-774-6331,B,M,D,255,12/31/2010,1/1/2007,Ms. Carpenter +Member of School Board ,District 3 ,P.O. Box 2950,,Baton Rouge,LA,70821,225-922-5618,EAST BATON ROUGE,Darryl L. Robertson,1234 Central Rd.,,Baton Rouge,LA,70807,5,225-774-6392,B,M,D,255,12/31/2010,1/1/2007,Mr. Robertson +Member of School Board ,"District 3, Central Community ",,,,LA,,,EAST BATON ROUGE,Graydon David Walker,13025 Lovett Rd.,,Baton Rouge,LA,70818,5,225-261-1209,W,M,R,255,12/31/2010,10/14/2008,Mr. Walker +Member of School Board ,"District 3, City of Baker ",3033-B Ray Weiland Dr.,,Baker,LA,70714,225-774-5795,EAST BATON ROUGE,George Gallman,4414 Heath Dr.,,Baker,LA,70714,5,225-774-3831,W,M,R,255,12/31/2010,1/1/2007,Mr. Gallman +Member of School Board ,District 4 ,P.O. Box 2950,,Baton Rouge,LA,70821,225-922-5618,EAST BATON ROUGE,Tarvald Smith,2115 North Vega Dr.,,Baton Rouge,LA,70815,5,225-925-2416,B,M,D,255,12/31/2010,1/1/2007,Mr. Smith +Member of School Board ,"District 4, Central Community ",,,,LA,,,EAST BATON ROUGE,"Willard ""Will"" Easley",13044 Denham Rd.,,Baton Rouge,LA,70818,5,225-261-3104,W,M,R,255,12/31/2010,10/14/2008,Mr. Easley +Member of School Board ,"District 4, City of Baker ",3033-B Ray Weiland Dr.,,Baker,LA,70714,225-774-5795,EAST BATON ROUGE,Jane Freudenberger,3541 Buffwood Dr.,,Baker,LA,70714,5,225-771-1717,W,F,D,255,12/31/2010,1/1/2007,Ms. Freudenberger +Member of School Board ,District 5 ,P.O. Box 2950,,Baton Rouge,LA,70821,225-922-5618,EAST BATON ROUGE,"Jonathan C. ""Jay"" Augustine",P.O. Box 66461,,Baton Rouge,LA,70896,5,225-773-4618,B,M,D,255,12/31/2010,1/1/2007,Mr. Augustine +Member of School Board ,"District 5, Central Community ",,,,LA,,,EAST BATON ROUGE,"""Jim"" Gardner",11522 Core Ln.,,Baker,LA,70714,5,225-261-9467,W,M,R,255,12/31/2010,10/14/2008,Mr. Gardner +Member of School Board ,"District 5, City of Baker ",3033-B Ray Weiland Dr.,,Baker,LA,70714,225-774-5795,EAST BATON ROUGE,Doris Alexander,3809 Epperson St.,,Baker,LA,70714,5,225-778-0141,B,F,D,255,12/31/2010,1/1/2007,Ms. Alexander +Member of School Board ,District 6 ,P.O. Box 2950,,Baton Rouge,LA,70821,225-922-5618,EAST BATON ROUGE,W. T. Winfield,1240 N. 29th St.,,Baton Rouge,LA,70802,5,225-344-7584,B,M,D,255,12/31/2010,7/21/2008,Mr. Winfield +Member of School Board ,"District 6, Central Community ",,,,LA,,,EAST BATON ROUGE,Ruby Wallette Foil,16432 Quiet Oaks Ave.,,Greenwell Springs,LA,70739,5,225-261-3751,W,F,R,255,12/31/2010,10/14/2008,Ms. Foil +Member of School Board ,District 7 ,P.O. Box 2950,,Baton Rouge,LA,70821,225-922-5618,EAST BATON ROUGE,Noel Hammatt,242 Delgado Dr.,,Baton Rouge,LA,70808,5,225-766-5582,W,M,R,255,12/31/2010,1/1/2007,Mr. Hammatt +Member of School Board ,"District 7, Central Community ",,,,LA,,,EAST BATON ROUGE,Sharon W. Browning,9531 Watts Rd.,,Baton Rouge,LA,70811,5,225-357-9658,W,F,R,255,12/31/2010,10/14/2008,Ms. Browning +Member of School Board ,District 8 ,P.O. Box 2950,,Baton Rouge,LA,70821,225-922-5618,EAST BATON ROUGE,Greg Baldwin,780 Rue Crozat,,Baton Rouge,LA,70810,5,225-767-0808,W,M,D,255,12/31/2010,1/1/2007,Mr. Baldwin +Member of School Board ,District 9 ,P.O. Box 2950,,Baton Rouge,LA,70821,225-922-5618,EAST BATON ROUGE,Jerry Arbour,701 North St.,,Baton Rouge,LA,70802,5,225-387-5557,W,M,R,255,12/31/2010,1/1/2007,Mr. Arbour +Member of School Board ,District 10 ,P.O. Box 2950,,Baton Rouge,LA,70821,225-922-5618,EAST BATON ROUGE,Jill Dyason,22768 Hoo Shoo Too Rd.,,Baton Rouge,LA,70817,5,225-753-6009,W,F,R,255,12/31/2010,1/1/2007,Ms. Dyason +Member of School Board ,District 11 ,P.O. Box 2950,,Baton Rouge,LA,70821,225-922-5618,EAST BATON ROUGE,Randy Lamana,15234 Hidden Creek Dr.,,Pride,LA,70770,5,225-262-1812,W,M,R,255,12/31/2010,10/30/2007,Mr. Lamana +Member of School Board ,District 12 ,P.O. Box 2950,,Baton Rouge,LA,70821,225-922-5618,EAST BATON ROUGE,"William P. ""Bill"" Black",1020 Heather Dr.,,Baton Rouge,LA,70815,5,225-272-3819,W,M,D,255,12/31/2010,1/1/2007,Mr. Black +Justice of the Peace ,"Justice of the Peace Ward 2, District 1 ",,,,LA,,,EAST BATON ROUGE,Virginia Forbes,23845 Reames Rd.,,Zachary,LA,70791,5,225-654-2424,W,F,D,265,12/31/2014,1/1/2009,Ms. Forbes +Justice of the Peace ,"Justice of the Peace Ward 2, District 2 ",,,,LA,,,EAST BATON ROUGE,Brooke Peay,20529 Machost Rd.,,Zachary,LA,70791,5,225-658-9778,W,F,R,265,12/31/2014,1/1/2009,Ms. Peay +Justice of the Peace ,"Justice of the Peace Ward 2, District 3 ",,,,LA,,,EAST BATON ROUGE,"Moses M. Evans, Jr.",13470 Clark Dr.,,Baton Rouge,LA,70807,5,225-774-5452,B,M,D,265,12/31/2014,1/1/2009,Mr. Evans +Justice of the Peace ,"Justice of the Peace Ward 3, District 1 ",,,,LA,,,EAST BATON ROUGE,Mark Miley,18652 Loch Bend Ave.,,Greenwell Springs,LA,70739,5,225-926-9415,W,M,R,265,12/31/2014,4/14/2009,Mr. Miley +Justice of the Peace ,"Justice of the Peace Ward 3, District 2 ",,,,LA,,,EAST BATON ROUGE,Steven E. Sanders,5621 Kennesaw Dr.,,Baton Rouge,LA,70817,5,225-752-9280,W,M,R,265,12/31/2014,1/1/2009,Mr. Sanders +Justice of the Peace ,"Justice of the Peace Ward 3, District 3 ",,,,LA,,,EAST BATON ROUGE,Melva Cavanaugh,12590 Perkins Rd.,,Baton Rouge,LA,70810,5,225-767-5756,W,F,R,265,12/31/2014,1/1/2009,Ms. Cavanaugh +Constable ,"Justice of the Peace Ward 2, District 1 ",18523 Arbor Oak Ave.,,Greenwell Springs,LA,70739,225-261-9328,EAST BATON ROUGE,Jimmy Santangelo,16935 Liberty Rd.,,Greenwell Springs,LA,70739,5,225-261-9328,W,M,D,267,12/31/2014,1/1/2009,Mr. Santangelo +Constable ,"Justice of the Peace Ward 2, District 2 ",7970 McHost Rd.,,Zachary,LA,70791,225-658-4628,EAST BATON ROUGE,Darin David,7970 Machost Rd.,,Zachary,LA,70791,5,225-413-3928,W,M,R,267,12/31/2014,1/1/2009,Mr. David +Constable ,"Justice of the Peace Ward 2, District 3 ",P.O. Box 75431,,Baton Rouge,LA,70874,225-356-9000,EAST BATON ROUGE,Donald Shelmire,P. O. Box 75431,,Baton Rouge,LA,70874,5,225-356-9000,B,M,D,267,12/31/2014,1/1/2009,Mr. Shelmire +Constable ,"Justice of the Peace Ward 3, District 1 ",14786 Bon Dickey Dr.,,Baton Rouge,LA,70818,225-261-3663,EAST BATON ROUGE,Don Thompson,14786 Bon Dickey Dr.,,Baton Rouge,LA,70818,5,225-261-3663,W,M,R,267,12/31/2014,1/1/2009,Mr. Thompson +Constable ,"Justice of the Peace Ward 3, District 2 ",3777 Jones Creek Rd.,,Baton Rouge,LA,70816,225-753-1938,EAST BATON ROUGE,John D. Cormier,14114 Pine Hurst Ave.,,Baton Rouge,LA,70817,5,225-755-1761,W,M,R,267,12/31/2014,1/1/2009,Mr. Cormier +Constable ,"Justice of the Peace Ward 3, District 3 ",16612 Autumn Ridge,,Baton Rouge,LA,70810,225-752-9364,EAST BATON ROUGE,David L. Wade,16612 Autumn Ridge Ave.,,Baton Rouge,LA,70810,5,225-752-9364,W,M,R,267,12/31/2014,1/1/2009,Mr. Wade +Mayor ,City of Baker ,P. O. Box 707,,Baker,LA,,225-778-0300,EAST BATON ROUGE,Harold Rideau,13821 Brantley Dr.,,Baker,LA,70714,5,225-774-1155,B,M,D,300,6/30/2012,7/1/2008,Mr. Rideau +Mayor ,City of Central ,9339 Sullivan Road,,Baton Rouge,LA,70818,225-261-0653,EAST BATON ROUGE,"Shelton S. ""Mac"" Watts, ","13421 Hooper Rd., Ste. 9",,Baton Rouge,LA,70818-2900,10,225-261-5988,W,M,R,300,6/30/2010,7/1/2006,Mr. Watts +Mayor ,City of Zachary ,P.O. Box 310,,Zachary,LA,,225-654-0287,EAST BATON ROUGE,Henry J. Martinez,5461 Fennwood Dr.,,Zachary,LA,70791,5,225-654-9119,W,M,R,300,1/10/2011,1/8/2007,Mayor Martinez +Chief of Police ,City of Baker ,P. O. Box 707,,Baker,LA,70714,225-778-0300,EAST BATON ROUGE,"Michael ""Snapper"" Knaps",2209 Debra Dr.,,Baker,LA,70714,5,225-775-3106,W,M,D,305,6/30/2012,7/1/2008,Mr. Knaps +Chief of Police ,City of Central ,9339 Sullivan Road,,Baton Rouge,LA,70818,225-261-0653,EAST BATON ROUGE,James Douglas Browning,6487 Thelmadale Dr.,,Greenwell Springs,LA,70739,5,225-261-5554,W,M,R,305,6/30/2010,7/1/2006,Mr. Browning +Chief of Police ,City of Zachary ,P.O. Box 310,,Zachary,LA,70791-0310 ,225-654-0287,EAST BATON ROUGE,"John N. Herty, Jr.",4222 Noble St.,,Zachary,LA,70791,5,225-933-8991,W,M,O,305,1/10/2011,1/8/2007,Chief Herty +Council Member(s) ,City of Central ,9339 Sullivan Road,,Baton Rouge,LA,70818,225-261-0653,EAST BATON ROUGE,"Louis DeJohn, Jr.",P.O. Box 15342,,Baton Rouge,LA,70896,5,225-927-6520,W,M,R,310,6/30/2010,7/1/2006,Mr. DeJohn +Council Member(s) ,City of Central ,9339 Sullivan Road,,Baton Rouge,LA,70818,225-261-0653,EAST BATON ROUGE,Joan C. Lansing,13943 Palomino Dr.,,Greenwell Springs,LA,70739,5,225-261-2195,W,F,R,310,6/30/2010,7/1/2006,Ms. Lansing +Council Member(s) ,City of Central ,9339 Sullivan Road,,Baton Rouge,LA,70818,225-261-0653,EAST BATON ROUGE,Aaron Moak,5140 Fryers Ave.,,Greenwell Springs,LA,70739,5,225-261-0612,W,M,R,310,6/30/2010,7/1/2006,Mr. Moak +Council Member(s) ,City of Central ,9339 Sullivan Road,,Baton Rouge,LA,70818,225-261-0653,EAST BATON ROUGE,"""Lucky"" Ross",17839 Lake Vista Dr.,,Greenwell Springs,LA,70739,5,225-937-7775,W,M,R,310,6/30/2010,7/1/2006,Mr. Ross +Council Member(s) ,City of Central ,9339 Sullivan Road,,Baton Rouge,LA,70818,225-261-0653,EAST BATON ROUGE,Ralph J. Washington,7201 Conestoga Dr.,,Greenwell Springs,LA,70739,5,225-926-0788,B,M,D,310,6/30/2010,7/1/2006,Mr. Washington +Councilman ,"District 1, City of Baker ",P. O. Box 707,,Baker,LA,70714,225-778-0300,EAST BATON ROUGE,Charles Vincent,13312 Alba Dr.,,Baker,LA,70714,5,225-774-8777,B,M,D,310,6/30/2012,7/1/2008,Mr. Vincent +Councilman ,"District 1, City of Zachary ",,,,LA,,,EAST BATON ROUGE,Francis Nezianya,1227 Mills Point Dr.,,Zachary,LA,70791,5,225-658-5816,B,M,O,310,1/10/2011,1/8/2007,Mr. Nezianya +Councilman ,"District 2, City of Baker ",P. O. Box 707,,Baker,LA,70714,225-778-0300,EAST BATON ROUGE,"""A. J."" Walls",2312 S. Magnolia Dr.,,Baker,LA,70714,5,225-778-1293,W,M,D,310,6/30/2012,7/1/2008,Mr. Walls +Councilman ,"District 2, City of Zachary ",,,,LA,,,EAST BATON ROUGE,John M. Coghlan,2128 W. George St.,,Zachary,LA,70791,5,225-654-0789,W,M,R,310,1/10/2011,1/8/2007,Mr. Coghlan +Councilman ,"District 3, City of Baker ",P. O. Box 707,,Baker,LA,70714,225-778-0300,EAST BATON ROUGE,Carlon Simpson,1894 McHugh Rd.,,Baker,LA,70714-2704,10,225-778-1846,W,F,D,310,6/30/2012,7/1/2008,Mr. Simpson +Councilman ,"District 3, City of Zachary ",,,,LA,,,EAST BATON ROUGE,"""Randy"" Bouley",19313 Old Scenic Hwy.,,Zachary,LA,70791,5,225-654-5117,W,M,R,310,1/10/2011,1/8/2007,Mr. Bouley +Councilman ,"District 4, City of Baker ",P. O. Box 707,,Baker,LA,70714,225-778-0300,EAST BATON ROUGE,"James ""Jimmy"" Pourciau",3625 Harrison St.,,Baker,LA,70714,5,225-775-0788,W,M,D,310,6/30/2012,7/1/2008,Mr. Pourciau +Councilman ,"District 4, City of Zachary ",,,,LA,,,EAST BATON ROUGE,"""Dan"" Wallis",P.O. Box 620,,Zachary,LA,70791,5,225-658-2078,W,M,R,310,1/10/2011,1/8/2007,Mr. Wallis +Councilman ,"District 5, City of Baker ",P. O. Box 707,,Baker,LA,70714,225-778-0300,EAST BATON ROUGE,Fred O. Russell,5425 Lavey Ln.,,Baker,LA,70714,5,225-775-3389,W,M,D,310,6/30/2012,7/1/2008,Mr. Russell +Councilman ,"District 5, City of Zachary ",,,,LA,,,EAST BATON ROUGE,Melvin L. Riley,4851 Old Slaughter Rd.,,Zachary,LA,70791,5,225-654-6303,B,M,D,310,1/10/2011,1/8/2007,Mr. Riley +DPEC Member ,at Large ,,,,LA,,,EAST CARROLL,,,,,,,0,,,,,54,,, +DPEC Member ,District 1 ,,,,LA,,,EAST CARROLL,,,,,,,0,,,,,56,,, +DPEC Member ,District 2 ,,,,LA,,,EAST CARROLL,,,,,,,0,,,,,56,,, +DPEC Member ,District 3 ,,,,LA,,,EAST CARROLL,,,,,,,0,,,,,56,,, +DPEC Member ,District 4 ,,,,LA,,,EAST CARROLL,,,,,,,0,,,,,56,,, +DPEC Member ,District 5 ,,,,LA,,,EAST CARROLL,,,,,,,0,,,,,56,,, +DPEC Member ,District 6 ,,,,LA,,,EAST CARROLL,,,,,,,0,,,,,56,,, +DPEC Member ,District 7 ,,,,LA,,,EAST CARROLL,,,,,,,0,,,,,56,,, +DPEC Member ,District 8 ,,,,LA,,,EAST CARROLL,,,,,,,0,,,,,56,,, +DPEC Member ,District 9 ,,,,LA,,,EAST CARROLL,,,,,,,0,,,,,56,,, +RPEC Member ,at Large ,,,,LA,,,EAST CARROLL,,,,,,,0,,,,,64,,, +RPEC Member ,District 1 ,,,,LA,,,EAST CARROLL,,,,,,,0,,,,,66,,, +RPEC Member ,District 2 ,,,,LA,,,EAST CARROLL,,,,,,,0,,,,,66,,, +RPEC Member ,District 3 ,,,,LA,,,EAST CARROLL,,,,,,,0,,,,,66,,, +RPEC Member ,District 4 ,,,,LA,,,EAST CARROLL,,,,,,,0,,,,,66,,, +RPEC Member ,District 5 ,,,,LA,,,EAST CARROLL,,,,,,,0,,,,,66,,, +RPEC Member ,District 6 ,,,,LA,,,EAST CARROLL,,,,,,,0,,,,,66,,, +RPEC Member ,District 7 ,,,,LA,,,EAST CARROLL,,,,,,,0,,,,,66,,, +RPEC Member ,District 8 ,,,,LA,,,EAST CARROLL,,,,,,,0,,,,,66,,, +RPEC Member ,District 9 ,,,,LA,,,EAST CARROLL,,,,,,,0,,,,,66,,, +Sheriff ,,P.O. Box 246,,Lake Providence,LA,71254,318-559-2800,EAST CARROLL,Mark W. Shumate,P.O. Box 246,,Lake Providence,LA,71254,5,318-559-7686,W,M,D,225,6/30/2012,7/1/2008,Sheriff Schumate +Clerk of Court ,,400 First St.,,Lake Providence,LA,71254,318-559-2399,EAST CARROLL,Beatrice Allen Carter,400 First St.,,Lake Providence,LA,71254,5,318-559-0216,B,F,D,230,6/30/2012,7/1/2008,Ms. Carter +Assessor ,,"400 First St., Rm. 10",,Lake Providence,LA,71254,318-559-2850,EAST CARROLL,Geneva F. Odom,P.O. Box 70,,Transylvania,LA,71286,5,318-552-6333,W,F,D,235,12/31/2012,1/1/2009,Ms. Odom +Coroner ,,P.O. Box 632,,Lake Providence,LA,71254,318-559-2814,EAST CARROLL,"""Jim"" Holt",718 Peanut Rd.,,Lake Providence,LA,71254,5,,W,M,D,240,3/25/2012,3/24/2008,Mr. Holt +Police Juror ,District 1 ,400 First St.,,Lake Providence,LA,,318-559-2256,EAST CARROLL,Truett Dunn,1096 Homestead Rd.,,Transylvania,LA,71286,5,318-559-2211,W,M,D,245,1/8/2012,1/14/2008,Mr. Dunn +Police Juror ,District 2 ,400 First St.,,Lake Providence,LA,71254,318-559-2256,EAST CARROLL,John E. Shoemaker,1704 Scott St.,,Lake Providence,LA,71254,5,318-418-0225,B,M,D,245,1/8/2012,1/14/2008,Mr. Shoemaker +Police Juror ,District 3 ,400 First St.,,Lake Providence,LA,71254,318-559-2256,EAST CARROLL,"Joseph ""B.B."" Jackson",P.O. Box 894,,Lake Providence,LA,71254,5,318-559-4949,B,M,D,245,1/8/2012,1/14/2008,Mr. Jackson +Police Juror ,District 4 ,400 First St.,,Lake Providence,LA,71254,318-559-2256,EAST CARROLL,Kendall Lydell Thompson,218 Madden Dr.,,Lake Providence,LA,71254,5,318-559-1730,B,M,D,245,1/8/2012,1/14/2008,Mr. Thompson +Police Juror ,District 5 ,400 First St.,,Lake Providence,LA,71254,318-559-2256,EAST CARROLL,Roger Odell Clement,100 Luke Dr.,,Lake Providence,LA,71254,5,318-559-3617,W,M,D,245,1/8/2012,1/14/2008,Mr. Clement +Member of School Board ,District 1 ,P. O. Box 792,,Lake Providence,LA,71254,318-559-2222,EAST CARROLL,Ralph W. Coleman,2884 Hwy. 579,,Epps,LA,71237,5,318-552-6561,W,M,D,255,12/31/2010,1/1/2007,Mr. Coleman +Member of School Board ,District 2 ,P. O. Box 792,,Lake Providence,LA,71254,318-559-2222,EAST CARROLL,Harriet Bridges,1991 Cotton Club Rd.,,Lake Providence,LA,71254,5,318-559-1855,W,F,D,255,12/31/2010,1/1/2007,Ms. Bridges +Member of School Board ,District 3 ,P. O. Box 792,,Lake Providence,LA,71254,318-559-2222,EAST CARROLL,Evangelia Fields,1101 Sparrow St.,,Lake Providence,LA,71254,5,318-559-5672,B,F,D,255,12/31/2010,1/1/2007,Ms. Fields +Member of School Board ,District 4 ,P. O. Box 792,,Lake Providence,LA,71254,318-559-2222,EAST CARROLL,Gene Edmondson,924 Riddle Ln.,,Lake Providence,LA,71254,5,318-559-1294,W,M,O,255,12/31/2010,1/1/2007,Mr. Edmondson +Member of School Board ,District 5 ,P. O. Box 792,,Lake Providence,LA,71254,318-559-2222,EAST CARROLL,Roger Shoemaker,504 Star Arlington St.,,Lake Providence,LA,71254,5,318-559-2113,B,M,D,255,12/31/2010,1/1/2007,Mr. Shoemaker +Member of School Board ,District 6 ,P. O. Box 792,,Lake Providence,LA,71254,318-559-2222,EAST CARROLL,Fannie Hawkins,512 Hood St.,,Lake Providence,LA,71254,5,318-559-3232,B,F,D,255,12/31/2010,1/1/2007,Ms. Hawkins +Member of School Board ,District 7 ,P. O. Box 792,,Lake Providence,LA,71254,318-559-2222,EAST CARROLL,Georjean Jefferson Jackson,614 Eighth St.,,Lake Providence,LA,71254,5,318-559-2344,B,F,D,255,12/31/2010,1/1/2007,Ms. Jackson +Member of School Board ,District 8 ,P. O. Box 792,,Lake Providence,LA,71254,318-559-2222,EAST CARROLL,Tommy McKeel,1426 Short Seventh St.,,Lake Providence,LA,71254,5,318-559-7269,B,M,D,255,12/31/2010,1/1/2007,Mr. McKeel +Member of School Board ,District 9 ,P. O. Box 792,,Lake Providence,LA,71254,318-559-2222,EAST CARROLL,Glenn Dixon,25 Harding St.,,Lake Providence,LA,71254,5,318-559-0886,B,M,D,255,12/31/2010,1/1/2007,Mr. Dixon +Justice of the Peace ,1st Justice Court ,1896 Island Point Dr.,,Lake Providence,LA,71254,318-559-1744,EAST CARROLL,Debra Hopkins,15200 Hwy. 65 South,,Transylvania,LA,71286,5,318-552-6796,W,F,R,265,12/31/2014,1/1/2009,Ms. Hopkins +Constable ,1st Justice Court ,59 Artaud St.,,Lake Providence,LA,71254,318-559-9096,EAST CARROLL,Gregory Jones,59 Artuard St.,,Lake Providence,LA,71254,5,318-559-9096,B,M,D,267,12/31/2014,1/1/2009,Mr. Jones +Mayor ,Town of Lake Providence ,201 Sparrow St.,,Lake Providence,LA,,318-559-2288,EAST CARROLL,"Isaac Fields, Jr.",409 Jackson St.,,Lake Providence,LA,71254,5,318-559-2434,B,M,D,300,12/31/2010,1/1/2007,Mr. Fields +Chief of Police ,Town of Lake Providence ,201 Sparrow St.,,Lake Providence,LA,71254,318-559-2288,EAST CARROLL,Renee Blockwood Jones,1014 Second St.,,Lake Providence,LA,71254,5,318-559-4845,B,F,D,305,12/31/2010,1/1/2007,Ms. Jones +Alderman ,Town of Lake Providence ,201 Sparrow St.,,Lake Providence,LA,71254,318-559-2288,EAST CARROLL,Ray Frazier,P.O. Box 625,,Lake Providence,LA,71254,5,318-559-1826,B,M,D,310,12/31/2010,1/1/2007,Mr. Frazier +Alderman ,Town of Lake Providence ,201 Sparrow St.,,Lake Providence,LA,71254,318-559-2288,EAST CARROLL,"Nemia ""Nate"" Madere",503 Gould #16,,Lake Providence,LA,71254,5,318-559-9019,B,M,D,310,12/31/2010,1/1/2007,Mr. Madere +Alderman ,Town of Lake Providence ,201 Sparrow St.,,Lake Providence,LA,71254,318-559-2288,EAST CARROLL,KarVan Powell,1458 Saint Louis Ave.,,Lake Providence,LA,71254,5,318-559-2204,B,M,D,310,12/31/2010,1/1/2007,Mr. Powell +Alderman ,Town of Lake Providence ,201 Sparrow St.,,Lake Providence,LA,71254,318-559-2288,EAST CARROLL,Amos Wright,708 Davis St.,,Lake Providence,LA,71254,5,318-559-1340,B,M,D,310,12/31/2010,1/1/2007,Mr. Wright +Alderman ,Town of Lake Providence ,201 Sparrow St.,,Lake Providence,LA,71254,318-559-2288,EAST CARROLL,Alfred J. Young,309 Davis St.,,Lake Providence,LA,71254,5,318-559-3786,B,M,D,310,12/31/2010,1/1/2007,Mr. Young +DPEC Member ,at Large ,,,,LA,,,EAST FELICIANA,"""Uncle George"" Charlet",P.O. Box 506,,Clinton,LA,70722,5,225-683-8919,W,M,D,54,2/20/2012,2/20/2008,Mr. Charlet +DPEC Member ,District 1A ,,,,LA,,,EAST FELICIANA,,,,,,,0,,,,,56,,, +DPEC Member ,District 1B ,,,,LA,,,EAST FELICIANA,,,,,,,0,,,,,56,,, +DPEC Member ,District 2 ,,,,LA,,,EAST FELICIANA,,,,,,,0,,,,,56,,, +DPEC Member ,District 3 ,,,,LA,,,EAST FELICIANA,,,,,,,0,,,,,56,,, +DPEC Member ,District 4A ,,,,LA,,,EAST FELICIANA,,,,,,,0,,,,,56,,, +DPEC Member ,District 4B ,,,,LA,,,EAST FELICIANA,,,,,,,0,,,,,56,,, +DPEC Member ,District 5 ,,,,LA,,,EAST FELICIANA,,,,,,,0,,,,,56,,, +DPEC Member ,District 6 ,,,,LA,,,EAST FELICIANA,,,,,,,0,,,,,56,,, +DPEC Member ,District 7 ,,,,LA,,,EAST FELICIANA,,,,,,,0,,,,,56,,, +RPEC Member ,at Large ,,,,LA,,,EAST FELICIANA,"""Ron"" Smith",8287 Lakeshore Dr.,,Ethel,LA,70730,5,225-683-6692,W,M,R,64,2/20/2012,2/20/2008,Mr. Smith +RPEC Member ,District 1A ,,,,LA,,,EAST FELICIANA,,,,,,,0,,,,,66,,, +RPEC Member ,District 1B ,,,,LA,,,EAST FELICIANA,,,,,,,0,,,,,66,,, +RPEC Member ,District 2 ,,,,LA,,,EAST FELICIANA,,,,,,,0,,,,,66,,, +RPEC Member ,District 3 ,,,,LA,,,EAST FELICIANA,,,,,,,0,,,,,66,,, +RPEC Member ,District 4A ,,,,LA,,,EAST FELICIANA,,,,,,,0,,,,,66,,, +RPEC Member ,District 4B ,,,,LA,,,EAST FELICIANA,,,,,,,0,,,,,66,,, +RPEC Member ,District 5 ,,,,LA,,,EAST FELICIANA,,,,,,,0,,,,,66,,, +RPEC Member ,District 6 ,,,,LA,,,EAST FELICIANA,,,,,,,0,,,,,66,,, +RPEC Member ,District 7 ,,,,LA,,,EAST FELICIANA,,,,,,,0,,,,,66,,, +Sheriff ,,P. O. Box 207,,Clinton,LA,70722,225-683-8572,EAST FELICIANA,Talmadge Bunch,P.O. Box 207,,Clinton,LA,70722,5,225-683-8783,W,M,D,225,6/30/2012,7/1/2008,Sheriff Bunch +Clerk of Court ,,P. O. Drawer 599,,Clinton,LA,70722,225-683-5154,EAST FELICIANA,David Dart,P. O. Drawer 599,,Clinton,LA,70722,5,225-683-5769,W,M,O,230,6/30/2012,7/1/2008,Mr. Dart +Assessor ,,P. O. Box 263,,Clinton,LA,70722,225-683-8945,EAST FELICIANA,"H. T. ""Bubby"" Jackson",P.O. Box 851,,Clinton,LA,70722,5,225-719-2851,W,M,D,235,12/31/2012,1/1/2009,Mr. Jacskon +Coroner ,,P.O. Box 8419,,Clinton,LA,70722,225-683-3358,EAST FELICIANA,Michael DeJohn,P.O. Box 8419,,Clinton,LA,70722,5,225-683-3358,W,M,R,240,3/25/2012,3/24/2008,Mr. DeJohn +Police Juror ,District 1A ,P. O. Box 427,,Clinton,LA,,225-683-8577,EAST FELICIANA,Dennis Aucoin,P.O. Box 8815,,Clinton,LA,70722,5,225-683-8210,W,M,R,245,1/8/2012,1/14/2008,Mr. Aucoin +Police Juror ,District 1B ,P. O. Box 427,,Clinton,LA,70722,225-683-8577,EAST FELICIANA,John M. Barnett,2292 Turner Rd.,,Ethel,LA,70730,5,225-683-4979,W,M,,245,1/8/2012,1/14/2008,Mr. Barnett +Police Juror ,District 2 ,P. O. Box 427,,Clinton,LA,70722,225-683-8577,EAST FELICIANA,"Edward ""Ed"" Brooks, Sr.",7105 Richardson Loop,,Jackson,LA,70748,5,225-634-7929,B,M,D,245,1/8/2012,1/14/2008,Mr. Brooks +Police Juror ,District 3 ,P. O. Box 427,,Clinton,LA,70722,225-683-8577,EAST FELICIANA,"""Chris"" Ferguson",2203 Hatfield Ln.,,Jackson,LA,70748,5,225-634-7264,B,M,D,245,1/8/2012,1/14/2008,Mr. Ferguson +Police Juror ,District 4A ,P. O. Box 427,,Clinton,LA,70722,225-683-8577,EAST FELICIANA,Richard Dudley,3233 Church St,,Jackson,LA,70748,5,225-634-5522,W,M,D,245,1/8/2012,1/14/2008,Mr. Dudley +Police Juror ,District 4B ,P. O. Box 427,,Clinton,LA,70722,225-683-8577,EAST FELICIANA,"E. S. ""Buggs"" Barnes",5638 Line Rd.,,Ethel,LA,70730,5,225-634-7907,W,M,D,245,1/8/2012,1/14/2008,Mr. Barnes +Police Juror ,District 5 ,P. O. Box 427,,Clinton,LA,70722,225-683-8577,EAST FELICIANA,"E. L. ""Larry"" Beauchamp, III",9820 Bank St.,,Clinton,LA,70722,5,225-683-8057,W,M,D,245,1/8/2012,1/14/2008,Mr. Beauchamp +Police Juror ,District 6 ,P. O. Box 427,,Clinton,LA,70722,225-683-8577,EAST FELICIANA,"Karl ""Bubba"" Chaney",P.O. Box 8655,,Clinton,LA,70722,5,225-683-6901,W,M,D,245,1/8/2012,1/14/2008,Mr. Chaney +Police Juror ,District 7 ,P. O. Box 427,,Clinton,LA,70722,225-683-8577,EAST FELICIANA,Louis Kent,P.O. Box 7996,,Clinton,LA,70722,5,225-683-9373,B,M,D,245,1/8/2012,1/14/2008,Mr. Kent +Member of School Board ,District 1 ,P. O. Box 397,,Clinton,LA,70722,225-683-3040,EAST FELICIANA,J. Curtis Jelks,13622 James Ln.,,Norwood,LA,70761,5,225-629-5972,W,M,R,255,12/31/2010,1/1/2007,Mr. Jelks +Member of School Board ,"District 2, Division 1 ",P. O. Box 397,,Clinton,LA,70722,225-683-3040,EAST FELICIANA,Willie Meaner Jackson,4506 Hwy. 952,,Jackson,LA,70748,5,225-629-5549,B,F,D,255,12/31/2010,1/1/2007,Ms. Jackson +Member of School Board ,"District 2, Division 2 ",P. O. Box 397,,Clinton,LA,70722,225-683-3040,EAST FELICIANA,Oliver L. Wingfield,7014 Tommy James Ln.,,Jackson,LA,70748,5,225-634-7762,B,M,D,255,12/31/2010,7/21/2008,Mr. Wingfield +Member of School Board ,"District 3, Division 1 ",P. O. Box 397,,Clinton,LA,70722,225-683-3040,EAST FELICIANA,"""Mitch"" Harrell",5888 Hwy. 68,,Jackson,LA,70748,5,225-634-5340,W,M,D,255,12/31/2010,1/1/2007,Mr. Harrell +Member of School Board ,"District 3, Division 2 ",P. O. Box 397,,Clinton,LA,70722,225-683-3040,EAST FELICIANA,"Henry Howell, IV",P.O. Box 295,,Jackson,LA,70748,5,225-634-7159,W,M,O,255,12/31/2010,1/1/2007,Mr. Howell +Member of School Board ,"District 3, Division 3 ",P. O. Box 397,,Clinton,LA,70722,225-683-3040,EAST FELICIANA,"""Beth"" L. Dawson",4657 Hwy. 68,,Jackson,LA,70748,5,225-654-9653,W,F,O,255,12/31/2010,1/1/2007,Ms. Dawson +Member of School Board ,District 4 ,P. O. Box 397,,Clinton,LA,70722,225-683-3040,EAST FELICIANA,Clay Barksdale,P.O. Box 176,,Slaughter,LA,70777,5,225-683-4106,W,M,D,255,12/31/2010,1/1/2007,Mr. Barksdale +Member of School Board ,District 5 ,P. O. Box 397,,Clinton,LA,70722,225-683-3040,EAST FELICIANA,"Henry ""Lee"" Bud Wicker",4338 Mac Byrnes Rd.,,Ethel,LA,70730,5,225-683-7056,W,M,O,255,12/31/2010,1/1/2007,Mr. Peterson +Member of School Board ,"District 6, Division 1 ",P. O. Box 397,,Clinton,LA,70722,225-683-3040,EAST FELICIANA,"Leon ""Sonny"" Franklin",P.O. Box 8182,,Clinton,LA,70722,5,225-683-6805,W,M,O,255,12/31/2010,1/1/2007,Mr. Franklin +Member of School Board ,"District 6, Division 2 ",P. O. Box 397,,Clinton,LA,70722,225-683-3040,EAST FELICIANA,Richard W. Terrell,14981 Hwy. 67,,Clinton,LA,70722,5,225-683-3853,B,M,D,255,12/31/2010,1/1/2007,Mr. Terrell +Member of School Board ,"District 6, Division 3 ",P. O. Box 397,,Clinton,LA,70722,225-683-3040,EAST FELICIANA,Michael Ray Bradford,P.O. Box 8803,,Clinton,LA,70722,5,225-683-5038,B,M,D,255,12/31/2010,1/1/2007,Mr. Bradford +Member of School Board ,District 7 ,P. O. Box 397,,Clinton,LA,70722,225-683-3040,EAST FELICIANA,"Anthony ""Tony"" Rouchon",5845 Winchester Ln.,,Clinton,LA,70722,5,225-683-9264,W,M,O,255,12/31/2010,1/1/2007,Mr. Rouchon +Justice of the Peace ,Justice of the Peace District 1 ,5501 Hwy. 19,,Ethel,LA,70730,225-683-6814,EAST FELICIANA,"Raymond D. ""Ray"" Williams",7361 Battle Rd.,,Ethel,LA,70730,5,225-683-9360,W,M,D,265,12/31/2014,1/1/2009,Mr. Williams +Justice of the Peace ,Justice of the Peace District 2 ,P. O. Box 189,,Jackson,LA,70748,225-634-2281,EAST FELICIANA,Julia Adams,P. O. Box 189,,Jackson,LA,70748,5,225-634-2281,W,F,D,265,12/31/2014,1/1/2009,Ms. Adams +Justice of the Peace ,Justice of the Peace District 3 ,P. O. Box 245,,Clinton,LA,70722,225-683-8324,EAST FELICIANA,Dewey W. DeLee,P. O. Box 245,,Clinton,LA,70722,5,225-683-8324,W,M,R,265,12/31/2014,1/1/2009,Mr. DeLee +Justice of the Peace ,Justice of the Peace District 4 ,P. O. Box 8681,,Clinton,LA,70722,225-683-5765,EAST FELICIANA,Nellie A. Thomas,P. O. Box 8681,,Clinton,LA,70722,5,225-683-5765,B,F,D,265,12/31/2014,1/1/2009,Ms. Thomas +Constable ,Justice of the Peace District 1 ,P.O. Box 217,,Slaughter,LA,70777,225-654-4344,EAST FELICIANA,"C. Bernard Maglone, Jr.",2053 Maglone Ln.,,Slaughter,LA,70777,5,225-654-4344,W,M,D,267,12/31/2014,1/1/2009,Mr. Maglone +Constable ,Justice of the Peace District 2 ,7713 Brown Ln.,,Jackson,LA,70748,225-634-5578,EAST FELICIANA,Joel Odom,P. O. Box 1050,,Jackson,LA,70748,5,225-634-5303,W,M,D,267,12/31/2014,1/1/2009,Mr. Odom +Constable ,Justice of the Peace District 3 ,P.O. Box 351,,Clinton,LA,70722,225-683-8673,EAST FELICIANA,"James ""Bubba"" Bradham",P. O. Box 69,,Clinton,LA,70722,5,225-719-2015,W,M,D,267,12/31/2014,1/1/2009,Mr. Bradhan +Constable ,Justice of the Peace District 4 ,P.O. Box 8681,,Clinton,LA,70722,225-683-3331,EAST FELICIANA,Marcy T. Robinson,P. O. Box 8681,,Clinton,LA,70722,5,225-683-3331,B,F,D,267,12/31/2014,1/1/2009,Ms. Robinson +Mayor ,Town of Clinton ,P. O. Box 513,,Clinton,LA,,225-683-5531,EAST FELICIANA,Don Reason,P. O. Box 981,,Clinton,LA,70722,5,225-683-8070,W,M,D,300,12/31/2012,1/1/2009,Mayor Reason +Mayor ,Town of Jackson ,P. O. Box 1150,,Jackson,LA,,225-634-7777,EAST FELICIANA,Charles Coleman,1168 Charter St.,,Jackson,LA,70748,5,225-634-7351,W,M,D,300,6/30/2012,7/1/2008,Mayor Coleman +Mayor ,Town of Slaughter ,P.O. Box 29,,Slaughter,LA,,225-654-4278,EAST FELICIANA,"""Bobbie"" Bourgeois",3004 Meadowood Dr.,,Slaughter,LA,70777,5,225-654-2198,W,F,D,300,6/30/2012,7/1/2008,Mayor Bourgeois +Mayor ,Village of Norwood ,P. O. Box 249,,Norwood,LA,,225-629-5347,EAST FELICIANA,"Rebecca ""Becky"" Bellue",P.O. Box 35,,Norwood,LA,70761,5,225-629-5561,W,F,D,300,6/30/2012,7/1/2008,Ms. Bellue +Mayor ,Village of Wilson ,P. O. Box 40,,Wilson,LA,,225-629-5415,EAST FELICIANA,Joshua Thomas,P. O. Box 382,,Wilson,LA,70789,5,225-629-5208,B,M,,300,6/30/2013,7/1/2009,Mayor Thomas +Chief of Police ,Town of Slaughter ,P.O. Box 29,,Slaughter,LA,70777-0029 ,225-654-4278,EAST FELICIANA,"Walter S. Smith, Jr.",P.O. Box 165,,Slaughter,LA,70777,5,225-658-2463,W,M,R,305,6/30/2012,7/1/2008,Mr. Smith +Marshal ,Town of Jackson ,P.O. Box 1150,,Jackson,LA,70748,225-634-7777,EAST FELICIANA,Fred Allen,3960 Cottage St.,,Jackson,LA,70748,5,225-634-2501,W,M,D,305,6/30/2012,7/1/2008,Mr. Allen +Alderman ,Town of Clinton ,P. O. Box 513,,Clinton,LA,70722,225-683-5531,EAST FELICIANA,"""Johnny"" Beauchamp",P. O. Box 714,,Clinton,LA,70722,5,225-683-5133,W,M,D,310,12/31/2012,1/1/2009,Mr. Beauchamp +Alderman ,Town of Clinton ,P. O. Box 513,,Clinton,LA,70722,225-683-5531,EAST FELICIANA,Lori Ann Bell,11616 Railroad St.,,Clinton,LA,70722,5,225-683-5646,B,F,D,310,12/31/2012,1/1/2009,Ms. Bell +Alderman ,Town of Clinton ,P. O. Box 513,,Clinton,LA,70722,225-683-5531,EAST FELICIANA,George B. Kilbourne,P. O. Box 588,,Clinton,LA,70722,5,225-683-5595,B,M,D,310,12/31/2012,1/1/2009,Mr. Kilbourne +Alderman ,Town of Clinton ,P. O. Box 513,,Clinton,LA,70722,225-683-5531,EAST FELICIANA,"Clovis Matthews, Sr.",10641 Roosevelt St.,,Clinton,LA,70722,5,225-683-3265,B,M,,310,12/31/2012,1/1/2009,Mr. Matthews +Alderman ,Town of Clinton ,P. O. Box 513,,Clinton,LA,70722,225-683-5531,EAST FELICIANA,Lisa Davis Washington,P. O. Box 7998,,Clinton,LA,70722,5,225-683-5398,B,F,D,310,12/31/2012,1/1/2009,Ms. Washington +Alderman ,Town of Slaughter ,P.O. Box 29,,Slaughter,LA,70777-0029 ,225-654-4278,EAST FELICIANA,"Tommy ""T J"" Boothe",2831 Rush St.,,Slaughter,LA,70777,5,225-654-6863,W,M,D,310,6/30/2012,7/1/2008,Mr. Boothe +Alderman ,Town of Slaughter ,P.O. Box 29,,Slaughter,LA,70777-0029 ,225-654-4278,EAST FELICIANA,"""Nick"" St. Germain",1257 Holly Dr.,,Slaughter,LA,70777,5,225-654-9654,W,M,D,310,6/30/2012,7/1/2008,Mr. St. Germain +Alderman ,Town of Slaughter ,P.O. Box 29,,Slaughter,LA,70777-0029 ,225-654-4278,EAST FELICIANA,"Robert ""Robbie"" Jackson",P.O. Box 171,,Slaughter,LA,70777,5,225-658-4899,W,M,R,310,6/30/2012,7/1/2008,Mr. Jackson +Alderman ,Town of Slaughter ,P.O. Box 29,,Slaughter,LA,70777-0029 ,225-654-4278,EAST FELICIANA,"William ""Bill"" McMills, Jr.",2668 Meadowood Dr.,,Slaughter,LA,70777,5,225-654-0003,W,M,D,310,6/30/2012,2/23/2009,Mr. Willhite +Alderman ,Town of Slaughter ,P.O. Box 29,,Slaughter,LA,70777-0029 ,225-654-4278,EAST FELICIANA,Ashby Schwartz,P.O. Box 441,,Slaughter,LA,70777,5,225-658-4917,W,M,R,310,6/30/2012,7/1/2008,Mr. Schwartz +Alderman ,Village of Norwood ,P. O. Box 249,,Norwood,LA,70761,225-329-5347,EAST FELICIANA,David C. Jett,P. O. Box 38,,Norwood,LA,70761,5,225-629-5422,W,M,D,310,6/30/2012,10/14/2008,Mr. Jett +Alderman ,Village of Norwood ,P. O. Box 249,,Norwood,LA,70761,225-329-5347,EAST FELICIANA,"James ""Jim"" McCaa",P.O. Box 5,,Norwood,LA,70761,5,225-629-4003,W,M,D,310,6/30/2012,7/1/2008,Mr. McCaa +Alderman ,Village of Norwood ,P. O. Box 249,,Norwood,LA,70761,225-329-5347,EAST FELICIANA,"James M. ""Jim"" Reynolds",P.O. Box 129,,Norwood,LA,70761,5,225-629-5959,W,M,D,310,6/30/2012,7/1/2008,Mr. Reynolds +Alderman ,Village of Wilson ,P. O. Box 40,,Wilson,LA,70789,225-629-5415,EAST FELICIANA,Marilyn Broadway,P. O. Box 364,,Wilson,LA,70789,5,225-629-4783,B,F,D,310,6/30/2013,7/1/2009,Ms. Broadway +Alderman ,Village of Wilson ,P. O. Box 40,,Wilson,LA,70789,225-629-5415,EAST FELICIANA,Harriett T. Sensley,P. O. Box 182,,Wilson,LA,70789,5,225-629-5460,B,F,D,310,6/30/2013,7/1/2009,Mr. Sensley +Alderman ,Village of Wilson ,P. O. Box 40,,Wilson,LA,70789,225-629-5415,EAST FELICIANA,Eunice N. Smiley,P.O. Box 162,,Wilson,LA,70789,5,225-629-5491,W,F,D,310,6/30/2013,7/1/2009,Ms. Smiley +"Member, Board of Trustees",Town of Jackson ,P. O. Box 1150,,Jackson,LA,70748,225-634-7777,EAST FELICIANA,Toby J. Aucoin,P.O. Box 756,,Jackson,LA,70748,5,225-634-2020,W,M,D,310,6/30/2012,7/1/2008,Mr. Aucoin +"Member, Board of Trustees",Town of Jackson ,P. O. Box 1150,,Jackson,LA,70748,225-634-7777,EAST FELICIANA,Michael O. Harrell,P.O. Box 1248,,Jackson,LA,70748,5,225-445-4437,W,M,D,310,6/30/2012,7/1/2008,Mr. Harrell +"Member, Board of Trustees",Town of Jackson ,P. O. Box 1150,,Jackson,LA,70748,225-634-7777,EAST FELICIANA,Donald E. Havard,P.O. Box 1086,,Jackson,LA,70748,5,225-634-7453,W,M,D,310,6/30/2012,7/1/2008,Mr. Havard +"Member, Board of Trustees",Town of Jackson ,P. O. Box 1150,,Jackson,LA,70748,225-634-7777,EAST FELICIANA,Linton Manuel,2338 Hwy. 10,,Jackson,LA,70748,5,225-634-7707,W,M,D,310,6/30/2012,7/1/2008,Mr. Manuel +"Member, Board of Trustees",Town of Jackson ,P. O. Box 1150,,Jackson,LA,70748,225-634-7777,EAST FELICIANA,Keith Mills,P.O. Box 1672,,Jackson,LA,70748,5,225-634-5725,W,M,D,310,6/30/2012,7/1/2008,Mr. Mills +DPEC Member ,at Large ,,,,LA,,,EVANGELINE,James Henry Berthelot,112 Saint Paul St.,,Ville Platte,LA,70586,5,337-831-2412,W,M,D,54,2/20/2012,2/20/2008,Mr. Berthelot +DPEC Member ,at Large ,,,,LA,,,EVANGELINE,Nicole Fontenot,1799 Belaire Cove Rd.,,Ville Platte,LA,70586,5,337-351-3296,W,F,D,54,2/20/2012,2/20/2008,Ms. Fontenot +DPEC Member ,at Large ,,,,LA,,,EVANGELINE,Ranish Richard,607 Vidrine St.,,Ville Platte,LA,70586,5,337-831-4116,B,F,D,54,2/20/2012,2/20/2008,Ms. Richard +DPEC Member ,District 1 ,,,,LA,,,EVANGELINE,,,,,,,0,,,,,56,,, +DPEC Member ,District 2 ,,,,LA,,,EVANGELINE,,,,,,,0,,,,,56,,, +DPEC Member ,District 3 ,,,,LA,,,EVANGELINE,,,,,,,0,,,,,56,,, +DPEC Member ,District 4 ,,,,LA,,,EVANGELINE,,,,,,,0,,,,,56,,, +DPEC Member ,District 5 ,,,,LA,,,EVANGELINE,,,,,,,0,,,,,56,,, +DPEC Member ,District 6 ,,,,LA,,,EVANGELINE,,,,,,,0,,,,,56,,, +DPEC Member ,District 7 ,,,,LA,,,EVANGELINE,Robert Eastin,1102 Huckleberry Ln.,,Ville Platte,LA,70586,5,337-363-6235,W,M,D,56,2/20/2012,2/20/2008,Mr. Eastin +DPEC Member ,District 8 ,,,,LA,,,EVANGELINE,"Ronald ""T"" Doucet",116 E. Jefferson,,Ville Platte,LA,70586,5,337-363-7400,B,M,D,56,2/20/2012,2/20/2008,Mr. Doucet +DPEC Member ,District 9 ,,,,LA,,,EVANGELINE,,,,,,,0,,,,,56,,, +RPEC Member ,at Large ,,,,LA,,,EVANGELINE,"Joseph P. Weeks, III",319 LeRoy Dr.,,Ville Platte,LA,70586,5,337-363-1359,W,M,R,64,2/20/2012,2/20/2008,Mr. Weeks +RPEC Member ,District 1 ,,,,LA,,,EVANGELINE,,,,,,,0,,,,,66,,, +RPEC Member ,District 2 ,,,,LA,,,EVANGELINE,,,,,,,0,,,,,66,,, +RPEC Member ,District 3 ,,,,LA,,,EVANGELINE,,,,,,,0,,,,,66,,, +RPEC Member ,District 4 ,,,,LA,,,EVANGELINE,,,,,,,0,,,,,66,,, +RPEC Member ,District 5 ,,,,LA,,,EVANGELINE,,,,,,,0,,,,,66,,, +RPEC Member ,District 6 ,,,,LA,,,EVANGELINE,,,,,,,0,,,,,66,,, +RPEC Member ,District 7 ,,,,LA,,,EVANGELINE,,,,,,,0,,,,,66,,, +RPEC Member ,District 8 ,,,,LA,,,EVANGELINE,,,,,,,0,,,,,66,,, +RPEC Member ,District 9 ,,,,LA,,,EVANGELINE,,,,,,,0,,,,,66,,, +Sheriff ,,"200 Court St., Ste. 100",,Ville Platte,LA,70586,318-363-2161,EVANGELINE,"""Eddie"" Soileau","200 Court St., Ste 100",,Ville Platte,LA,70586,5,337-363-5886,W,M,D,225,6/30/2012,7/1/2008,Sheriff Soileau +Clerk of Court ,,P. O. Drawer 347,,Ville Platte,LA,70586,318-363-5671,EVANGELINE,Walter Lee,P.O. Drawer 347,,Ville Platte,LA,70586,5,337-363-5671,W,M,D,230,6/30/2012,7/1/2008,Mr. Lee +Assessor ,,"200 Court St., Ste. 103",,Ville Platte,LA,70286,337-363-4325,EVANGELINE,Dirk Deville,P.O. Box 1058,,Ville Platte,LA,70586,5,337-363-4310,W,M,D,235,12/31/2012,1/1/2009,Mr. Deville +Coroner ,,P.O. Drawer 510,,Ville Platte,LA,70586,337-363-5521,EVANGELINE,Charles Fontenot,19405 Hwy. 182,,Bunkie,LA,71322,5,337-363-5521,W,M,D,240,3/25/2012,3/28/2008,Mr. Fontenot +Police Juror ,District 1 ,"200 Court St., Ste. 207",,Ville Platte,LA,,337-363-5651,EVANGELINE,Davis A. Manuel,667 L'anse Aux Pailles Rd.,,Ville Platte,LA,70586,5,337-885-2586,W,M,D,245,1/8/2012,1/14/2008,Mr. Manuel +Police Juror ,District 2 ,"200 Court St., Ste. 207",,Ville Platte,LA,70586-4490,337-363-5651,EVANGELINE,Sidney Fontenot,1632 Duplechin Ave.,,Basile,LA,70515,5,337-432-5405,W,M,D,245,1/8/2012,1/14/2008,Mr. Fontenot +Police Juror ,District 3 ,"200 Court St., Ste. 207",,Ville Platte,LA,70586-4490,337-363-5651,EVANGELINE,Mitchell Ryan Ardoin,1925 L.D. Verette Rd.,,Mamou,LA,70554,5,337-789-1305,W,M,O,245,1/8/2012,1/14/2008,Mr. Ardoin +Police Juror ,District 4 ,"200 Court St., Ste. 207",,Ville Platte,LA,70586-4490,337-363-5651,EVANGELINE,Lamar Johnson,3308 Crooked Creek Pkwy.,,Ville Platte,LA,70586,5,337-599-2592,W,M,D,245,1/8/2012,1/14/2008,Mr. Johnson +Police Juror ,District 5 ,"200 Court St., Ste. 207",,Ville Platte,LA,70586-4490,337-363-5651,EVANGELINE,"""Bob"" Manuel",1004 Theophile Rd.,,Ville Platte,LA,70586,5,337-363-6366,W,M,D,245,1/8/2012,1/14/2008,Mr. Manuel +Police Juror ,District 6 ,"200 Court St., Ste. 207",,Ville Platte,LA,70586-4490,337-363-5651,EVANGELINE,Eric B. Soileau,P.O. Box 38,,Reddell,LA,70580,5,337-831-2862,W,M,D,245,1/8/2012,1/14/2008,Mr. Soileau +Police Juror ,District 7 ,"200 Court St., Ste. 207",,Ville Platte,LA,70586-4490,337-363-5651,EVANGELINE,Bryan Vidrine,2194 Stagecoach Rd.,,Ville Platte,LA,70586,5,337-461-2595,W,M,D,245,1/8/2012,1/14/2008,Mr. Vidrine +Police Juror ,District 8 ,"200 Court St., Ste. 207",,Ville Platte,LA,70586-4490,337-363-5651,EVANGELINE,"Ryan ""Leday"" Williams",1049 Rachael Dr.,,Ville Platte,LA,70586,5,337-831-6934,B,M,D,245,1/8/2012,5/12/2009,Mr. Williams +Police Juror ,District 9 ,"200 Court St., Ste. 207",,Ville Platte,LA,70586-4490,337-363-5651,EVANGELINE,"Richard ""Blood"" Thomas",1530 Martin Luther King Dr.,,Ville Platte,LA,70586,5,337-363-7924,B,M,D,245,1/8/2012,1/14/2008,Mr. Thomas +City Judge ,"City Court, City of Ville Platte ",P. O. Box 147,,Ville Platte,LA,70586,337-363-1500,EVANGELINE,"Donald J. Launey, Jr.",596 Scenic Dr.,,Ville Platte,LA,70586,5,337-363-5588,W,M,D,250,12/31/2014,1/1/2009,Judge Launey +City Marshal ,"City Court, City of Ville Platte ",P. O. Box 147,,Ville Platte,LA,70586,337-363-5886,EVANGELINE,"Ronald ""T"" Doucet",116 E. Jefferson St.,,Ville Platte,LA,70586,5,337-831-6276,B,M,D,250,12/31/2014,1/1/2009,Marshal Doucet +Member of School Board ,District 1 ,1123 Te Mamou Rd.,,Ville Platte,LA,70586,337-363-6653,EVANGELINE,Lonnie D. Sonnier,1439 Belaire Cove Rd.,,Ville Platte,LA,70586,5,337-363-2344,W,M,D,255,12/31/2010,1/1/2007,Mr. Sonnier +Member of School Board ,District 2 ,1123 Te Mamou Rd.,,Ville Platte,LA,70586,337-363-6653,EVANGELINE,Bobby Deshotel,1431 Fuselier St.,,Basile,LA,70515,5,337-432-5474,W,M,R,255,12/31/2010,1/1/2007,Mr. Deshotel +Member of School Board ,District 3 ,1123 Te Mamou Rd.,,Ville Platte,LA,70586,337-363-6653,EVANGELINE,Jerry L. Thompson,5541 Vidrine Rd.,,Ville Platte,LA,70586,5,337-363-2326,W,M,D,255,12/31/2010,1/1/2007,Mr. Thompson +Member of School Board ,District 4 ,1123 Te Mamou Rd.,,Ville Platte,LA,70586,337-363-6653,EVANGELINE,Wayne Dardeau,P.O. Box 266,,Pine Prairie,LA,70576,5,337-599-2134,W,M,,255,12/31/2010,1/1/2007,Mr. Dardeau +Member of School Board ,District 5 ,1123 Te Mamou Rd.,,Ville Platte,LA,70586,337-363-6653,EVANGELINE,Peggy Forman,1067 Ceeway Ln.,,Ville Platte,LA,70586,5,337-461-2202,W,F,D,255,12/31/2010,1/1/2007,Ms. Forman +Member of School Board ,District 6 ,1123 Te Mamou Rd.,,Ville Platte,LA,70586,337-363-6653,EVANGELINE,David Landreneau,1441 Wilba Vizinat Loop,,Mamou,LA,70554,5,337-546-6458,W,M,D,255,12/31/2010,1/1/2007,Mr. Landreneau +Member of School Board ,District 7 ,1123 Te Mamou Rd.,,Ville Platte,LA,70586,337-363-6653,EVANGELINE,"""Dan"" Hoffpauir",1300 Poinciana Ave.,,Mamou,LA,70554,5,337-468-2149,W,M,D,255,12/31/2010,1/1/2007,Mr. Hoffpauir +Member of School Board ,District 8 ,1123 Te Mamou Rd.,,Ville Platte,LA,70586,337-363-6653,EVANGELINE,Wanda A. Skinner,717 Rozas St.,,Ville Platte,LA,70586,5,337-363-5259,B,F,D,255,12/31/2010,1/1/2007,Ms. Skinner +Member of School Board ,District 9 ,1123 Te Mamou Rd.,,Ville Platte,LA,70586,337-363-6653,EVANGELINE,Scott Limoges,225 Rickey St.,,Ville Platte,LA,70586,5,337-363-2341,W,M,R,255,12/31/2010,1/1/2007,Mr. Limoges +Member of School Board ,District 10 ,1123 Te Mamou Rd.,,Ville Platte,LA,70586,337-363-6653,EVANGELINE,Arthur Savoy,174 Patty Sue Dr.,,Ville Platte,LA,70586,5,337-363-7261,W,M,D,255,12/31/2010,1/1/2007,Mr. Savoy +Member of School Board ,District 11 ,1123 Te Mamou Rd.,,Ville Platte,LA,70586,337-363-6653,EVANGELINE,Nancy A. Hamlin,112 Ardoin St.,,Ville Platte,LA,70586,5,337-363-1944,W,F,D,255,12/31/2010,1/1/2007,Ms. Hamlin +Member of School Board ,District 12 ,1123 Te Mamou Rd.,,Ville Platte,LA,70586,337-363-6653,EVANGELINE,Gervis Lafleur,126 E. Long St.,,Ville Platte,LA,70586,5,337-363-4096,B,M,D,255,12/31/2010,1/1/2007,Mr. Lafleur +Member of School Board ,District 13 ,1123 Te Mamou Rd.,,Ville Platte,LA,70586,337-363-6653,EVANGELINE,Georgianna L. Wilson,1824 Clement St.,,Ville Platte,LA,70586,5,337-363-0161,B,F,D,255,12/31/2010,1/1/2007,Ms. Wilson +Justice of the Peace ,Justice of the Peace Ward 2 ,P. O. Box 729,,Basile,LA,70515,337-432-5721,EVANGELINE,Dave McGee,2192 Navy Rd.,,Mamou,LA,70554,5,337-207-2997,W,M,D,265,12/31/2014,1/1/2009,Mr. McGee +Justice of the Peace ,Justice of the Peace Ward 2 ,P. O. Box 729,,Basile,LA,70515,337-432-5721,EVANGELINE,Charlotte Smith,P. O. Box 729,,Basile,LA,70515,5,337-658-2962,W,F,D,265,12/31/2014,1/1/2009,Ms. Smith +Justice of the Peace ,Justice of the Peace Ward 3 ,1027 Ferdie Rd.,,Mamou,LA,70554-2907,337-468-3503,EVANGELINE,"""Hope"" Landreneau",1027 Ferdie Rd.,,Mamou,LA,70554,5,337-468-0109,W,F,D,265,12/31/2014,1/1/2009,Ms. Landreneau +Justice of the Peace ,Justice of the Peace Ward 4 ,P. O. Box 217,,Pine Prairie,LA,70576,337-599-2093,EVANGELINE,"Maxine J. Gautreau, ",1658 Crooked Creek Pkwy,,Ville Platte,LA,70586,5,,,,,265,,1/20/2010,Ms. Gautreau +Justice of the Peace ,Justice of the Peace Ward 5 ,1042 Robken Rd.,,Ville Platte,LA,70586,337-461-2664,EVANGELINE,"A. C. ""Robin"" Tatman, Jr.",1042 Robken Rd.,,Ville Platte,LA,70586,5,337-461-2664,W,M,D,265,12/31/2014,1/1/2009,Mr. Tatman +Constable ,Justice of the Peace Ward 2 ,P.O. Box 66,,Basile,LA,70515,337-432-5574,EVANGELINE,Earlin Fruge,1066 Easy Rd.,,Basile,LA,70515,5,337-654-2063,W,M,D,267,12/31/2014,1/1/2009,Mr. Fruge +Constable ,Justice of the Peace Ward 2 ,P.O. Box 66,,Basile,LA,70515,337-432-5574,EVANGELINE,"Michael ""Mike"" Stockwell",1816 Hunter Rd.,,Basile,LA,70515,5,337-230-6210,W,M,D,267,12/31/2014,1/1/2009,Mr. Stockwell +Constable ,Justice of the Peace Ward 3 ,P.O. Box 17,,Mamou,LA,70580-0017 ,337-468-3544,EVANGELINE,"""Joe"" Deshotel, Jr.",1214 Oberlin Rd.,,Mamou,LA,70554,5,337-580-5694,W,M,D,267,12/31/2014,1/1/2009,Mr. Deshotel +Constable ,Justice of the Peace Ward 4 ,1197 Pioneer Rd.,,Ville Platte,LA,70586,337-461-2610,EVANGELINE,"""Tim"" Causey",1197 Pioneer Rd.,,Ville Platte,LA,70586,5,337-461-2610,W,M,D,267,12/31/2014,1/1/2009,Mr. Causey +Constable ,Justice of the Peace Ward 5 ,1220 Melissa Ln.,,Ville Platte,LA,70586,337-461-2759,EVANGELINE,"J. Michael ""Mike"" Causey",1220 Melissa Ln.,,Ville Platte,LA,70586,5,337-461-2759,W,M,D,267,12/31/2014,1/1/2009,Mr. Causey +Mayor ,City of Ville Platte ,P. O. Box 390,,Ville Platte,LA,,337-363-2939,EVANGELINE,"""Bill"" Jeanmard",505 W. Wilson St.,,Ville Platte,LA,70586,5,337-363-1375,W,M,D,300,12/31/2010,1/1/2007,Mr. Jeanmard +Mayor ,Town of Mamou ,P. O. Box 490,,Mamou,LA,,337-468-3272,EVANGELINE,Wilda Chamberlain,1001 East St.,,Mamou,LA,70554,5,337-468-4068,W,F,D,300,12/31/2010,1/1/2007,Ms. Chamberlain +Mayor ,Village of Chataignier ,P. O. Box 70,,Chataignier,LA,,337-885-2500,EVANGELINE,Herman Malveaux,P. O. Box 33,,Chataignier,LA,70524,5,337-885-2545,B,M,D,300,12/31/2010,1/1/2007, +Mayor ,Village of Pine Prairie ,P. O. Box 380,,Pine Prairie,LA,,318-599-2904,EVANGELINE,Terry Savant,P.O. Box 735,,Pine Prairie,LA,70576,5,337-230-8757,W,M,R,300,12/31/2012,1/1/2009,Mayor Savant +Mayor ,Village of Turkey Creek ,P. O. Box 98,,Turkey Creek,LA,,337-461-2212,EVANGELINE,Blaine Janet,P.O. Box 114,,Turkey Creek,LA,70585,5,337-461-2204,W,M,D,300,12/31/2010,1/1/2007,Mayor Janet +Chief of Police ,City of Ville Platte ,P. O. Box 390,,Ville Platte,LA,70586,337-363-2939,EVANGELINE,Neal Lartigue,P.O. Box 117,,Ville Platte,LA,70586,5,337-831-2395,B,M,D,305,12/31/2010,1/1/2007,Chief Lartigue +Chief of Police ,Town of Mamou ,P. O. Box 490,,Mamou,LA,70554,337-468-3272,EVANGELINE,"""Greg"" Dupuis",608 Mulberry St.,,Mamou,LA,70554,5,337-789-6272,W,M,D,305,12/31/2010,1/1/2007,Mr. Dupuis +Chief of Police ,Village of Chataignier ,P. O. Box 70,,Chataignier,LA,70524,337-885-2500,EVANGELINE,"Paul Allen, Jr.",P.O. Box 265,,Chataignier,LA,70524,5,337-885-2002,B,M,D,305,12/31/2010,1/1/2007,Mr. Allem +Chief of Police ,Village of Pine Prairie ,P. O. Box 380,,Pine Prairie,LA,70576,318-599-2904,EVANGELINE,Todd Ortis,P.O. Box 430,,Pine Prairie,LA,70576,5,337-599-2896,W,M,D,305,12/31/2012,1/1/2009,Chief Ortis +Chief of Police ,Village of Turkey Creek ,P. O. Box 98,,Turkey Creek,LA,70585,337-461-2212,EVANGELINE,Louis Dale Marcantel,P.O. Box 92,,Turkey Creek,LA,70585,5,337-461-2773,W,M,D,305,12/31/2010,1/1/2007,Chief Marcantel +Alderman at Large ,Town of Mamou ,,,,LA,,,EVANGELINE,"""Joe Paul"" Deshotels",908 Redwood St.,,Mamou,LA,70554,5,337-468-2345,W,M,D,308,12/31/2010,1/1/2007,Mr. Deshotels +Alderman ,"District 1, Town of Mamou ",P. O. Box 490,,Mamou,LA,70554,337-468-3272,EVANGELINE,Ricky Fontenot,P.O. Box 375,,Mamou,LA,70554,5,337-468-2370,B,M,D,310,12/31/2010,1/1/2007,Mr. Fontenot +Alderman ,"District 2, Town of Mamou ",P. O. Box 490,,Mamou,LA,70554,337-468-3272,EVANGELINE,Scott Christ,1100 Cherry St.,,Mamou,LA,70554,5,337-468-2727,W,M,D,310,12/31/2010,1/1/2007,Mr. Christ +Alderman ,"District 3, Town of Mamou ",P. O. Box 490,,Mamou,LA,70554,337-468-3272,EVANGELINE,Jody Soileau,221 Sixth St.,,Mamou,LA,70554,5,337-468-2400,W,M,D,310,12/31/2010,1/1/2007,Mr. Soileau +Alderman ,"District 4, Town of Mamou ",P. O. Box 490,,Mamou,LA,70554,337-468-3272,EVANGELINE,Robin Young,617 Railroad Ave.,,Mamou,LA,70554,5,337-207-5271,W,M,D,310,12/31/2010,11/14/2008,Mr. Young +Alderman ,"District A, City of Ville Platte ",P. O. Box 390,,Ville Platte,LA,70586,337-363-2939,EVANGELINE,"""C. J."" Dardeau",511 N. Thompson St.,,Ville Platte,LA,70586,5,337-363-2869,W,M,D,310,12/31/2010,1/1/2007,Mr. Dardeau +Alderman ,"District B, City of Ville Platte ",P. O. Box 390,,Ville Platte,LA,70586,337-363-2939,EVANGELINE,Carol Alfred,512 N. Chataignier St.,,Ville Platte,LA,70586,5,337-831-9770,B,F,D,310,12/31/2010,1/1/2007,Ms. Alfred +Alderman ,"District C, City of Ville Platte ",P. O. Box 390,,Ville Platte,LA,70586,337-363-2939,EVANGELINE,"""Mike"" Perron",1107 Belle Terre Dr.,,Ville Platte,LA,70586,5,337-363-1066,W,M,D,310,12/31/2010,1/1/2007,Mr. Perron +Alderman ,"District D, City of Ville Platte ",P. O. Box 390,,Ville Platte,LA,70586,337-363-2939,EVANGELINE,Freddie Jack,1314 W. Cypress St.,,Ville Platte,LA,70586,5,337-363-1630,B,M,D,310,12/31/2010,1/1/2007,Mr. Jack +Alderman ,"District E, City of Ville Platte ",P. O. Box 390,,Ville Platte,LA,70586,337-363-2939,EVANGELINE,Donald Ray Sam,1322 W. Beech St.,,Ville Platte,LA,70586,5,337-363-6892,B,M,D,310,12/31/2010,1/1/2007,Mr. Sam +Alderman ,"District F, City of Ville Platte ",P. O. Box 390,,Ville Platte,LA,70586,337-363-2939,EVANGELINE,Taranza Arvie,512 Laran St.,,Ville Platte,LA,70586,5,337-356-7040,B,M,D,310,12/31/2010,1/1/2007,Mr. Arvie +Alderman ,Village of Chataignier ,P. O. Box 70,,Chataignier,LA,70524,337-885-2500,EVANGELINE,Lucy Jones Green,"5627 Vine St., Apt. 702",,Ville Platte,LA,70586,5,337-885-2270,B,F,D,310,12/31/2010,1/1/2007,Mr. Green +Alderman ,Village of Chataignier ,P. O. Box 70,,Chataignier,LA,70524,337-885-2500,EVANGELINE,Joseph H. Simien,P.O. Box 282,,Chataignier,LA,70524,5,337-885-2000,B,M,D,310,12/31/2010,1/1/2007,Mr. Siemien +Alderman ,Village of Chataignier ,P. O. Box 70,,Chataignier,LA,70524,337-885-2500,EVANGELINE,Alton Thomas,P.O. Box 193,,Chataignier,LA,70524,5,337-885-3615,B,M,D,310,12/31/2010,1/1/2007,Mr. Thomas +Alderman ,Village of Pine Prairie ,P. O. Box 380,,Pine Prairie,LA,70576,318-559-2904,EVANGELINE,Tammy M. Hammond,P.O. Box 185,,Pine Prairie,LA,70576,5,337-224-6627,W,F,D,310,12/31/2012,1/1/2009,Ms. Hammond +Alderman ,Village of Pine Prairie ,P. O. Box 380,,Pine Prairie,LA,70576,318-559-2904,EVANGELINE,"""Debbie"" Oge",P. O. Box 231,,Pine Prairie,LA,70576,5,337-599-2690,W,F,D,310,12/31/2012,1/1/2009,Ms. Oge +Alderman ,Village of Pine Prairie ,P. O. Box 380,,Pine Prairie,LA,70576,318-559-2904,EVANGELINE,Quint West,P.O. Box 424,,Pine Prairie,LA,70576,5,337-224-3384,W,M,D,310,12/31/2012,1/1/2009,Mr. West +Council Member ,Village of Turkey Creek ,P. O. Box 98,,Turkey Creek,LA,70585,337-461-2212,EVANGELINE,"""W. L."" Chapelle",P.O. Box 97,,Turkey Creek,LA,70585,5,337-461-2449,W,M,D,310,12/31/2010,1/1/2007,Mr. Chapelle +Council Member ,Village of Turkey Creek ,P. O. Box 98,,Turkey Creek,LA,70585,337-461-2212,EVANGELINE,Jessie Johnson,P.O. Box 105,,Turkey Creek,LA,,0,337-461-2637,W,M,D,310,12/31/2010,1/1/2007, +Council Member ,Village of Turkey Creek ,P. O. Box 98,,Turkey Creek,LA,70585,337-461-2212,EVANGELINE,Kurry Stewart,P.O. Box 74 .,,Turkey Creek,LA,70585,5,337-461-2734,W,M,D,310,12/31/2010,1/1/2007,Mr. Stewart +DPEC Member ,at Large ,,,,LA,,,FRANKLIN,"Samuel E. Lee, Jr.",6583 Main St.,,Winnsboro,LA,71295,5,318-435-5697,W,M,D,54,2/20/2012,2/20/2008,Mr. Lee +DPEC Member ,District 1 ,,,,LA,,,FRANKLIN,,,,,,,0,,,,,56,,, +DPEC Member ,District 2 ,,,,LA,,,FRANKLIN,,,,,,,0,,,,,56,,, +DPEC Member ,District 3 ,,,,LA,,,FRANKLIN,,,,,,,0,,,,,56,,, +DPEC Member ,District 4 ,,,,LA,,,FRANKLIN,,,,,,,0,,,,,56,,, +DPEC Member ,District 5 ,,,,LA,,,FRANKLIN,,,,,,,0,,,,,56,,, +DPEC Member ,District 6 ,,,,LA,,,FRANKLIN,,,,,,,0,,,,,56,,, +DPEC Member ,District 7 ,,,,LA,,,FRANKLIN,,,,,,,0,,,,,56,,, +RPEC Member ,at Large ,,,,LA,,,FRANKLIN,John H. Baker,2123 Hwy. 17,,Delhi,LA,71232,5,318-878-5272,W,M,R,64,2/20/2012,2/20/2008,Mr. Baker +RPEC Member ,District 1 ,,,,LA,,,FRANKLIN,,,,,,,0,,,,,66,,, +RPEC Member ,District 2 ,,,,LA,,,FRANKLIN,,,,,,,0,,,,,66,,, +RPEC Member ,District 3 ,,,,LA,,,FRANKLIN,,,,,,,0,,,,,66,,, +RPEC Member ,District 4 ,,,,LA,,,FRANKLIN,,,,,,,0,,,,,66,,, +RPEC Member ,District 5 ,,,,LA,,,FRANKLIN,,,,,,,0,,,,,66,,, +RPEC Member ,District 6 ,,,,LA,,,FRANKLIN,,,,,,,0,,,,,66,,, +RPEC Member ,District 7 ,,,,LA,,,FRANKLIN,,,,,,,0,,,,,66,,, +Sheriff ,,6556 Main St.,,Winnsboro,LA,71295,318-435-4505,FRANKLIN,"Steven E. ""Steve"" Pylant",6556 Main St.,,Winnsboro,LA,71295,5,318-722-6408,W,M,R,225,6/30/2012,7/1/2008,Sheriff Pylant +Clerk of Court ,,P. O. Box 1564,,Winnsboro,LA,71295,318-435-5133,FRANKLIN,Ann Johnson,P.O. Box 1564,,Winnsboro,LA,71295,5,318-435-4348,W,F,D,230,6/30/2012,7/1/2008,Ms. Johnson +Assessor ,,6552 Main St.,,Winnsboro,LA,71295,318-435-5390,FRANKLIN,"""Rod"" Elrod",293 Russell Lane,,Winnsboro,LA,71295,5,318-435-9928,W,M,D,235,12/31/2012,1/1/2009,Mr. Elrod +Coroner ,,P.O. Box 1350,,Winnsboro,LA,71295,318-435-7333,FRANKLIN,Joel G. Eldridge,425 Hwy 577,,Winnsboro,LA,71295,5,318-722-3759,W,M,D,240,3/25/2012,3/24/2008,Mr. Eldridge +Police Juror,District 1,6558 Main St.,,Winnsboro,LA,71295,318-435-9429,FRANKLIN,"""Ricky"" Campbell",418 Herrington Rd.,,Winnsboro,LA,71295,5,318-435-7164,W,M,,245,1/8/2012,1/14/2008,Mr. Campbell +Police Juror ,District 2 ,6558 Main St.,,Winnsboro,LA,71295,318-435-9429,FRANKLIN,"K. W. ""Buddy"" Parks",229 Hwy 618,,Winnsboro,LA,71295,5,318-435-5889,W,M,D,245,1/8/2012,1/14/2008,Mr. Parks +Police Juror ,District 3 ,6558 Main St.,,Winnsboro,LA,71295,318-435-9429,FRANKLIN,"James Harris, ",6558 Main St.,,Winnsboro,LA,71295,5,,,,,245,,12/17/2009,Mr. Harris +Police Juror ,District 4 ,6558 Main St.,,Winnsboro,LA,71295,318-435-9429,FRANKLIN,Troy Hendry,151 Artie Carter Rd.,,Winnsboro,LA,71295,5,318-722-3336,W,M,D,245,1/8/2012,1/14/2008,Mr. Hendry +Police Juror ,District 5 ,6558 Main St.,,Winnsboro,LA,71295,318-435-9429,FRANKLIN,"Leroy ""Roy"" Scott",2105 Caston St.,,Winnsboro,LA,71295,5,318-435-9391,B,M,D,245,1/8/2012,1/14/2008,Mr. Scott +Police Juror ,District 6 ,6558 Main St.,,Winnsboro,LA,71295,318-435-9429,FRANKLIN,Harvey Guimbellot,239 Dobber Glass Rd.,,Baskin,LA,71219,5,318-439-0284,W,M,,245,1/8/2012,1/14/2008,Mr. Guimbellot +Police Juror ,District 7 ,6558 Main St.,,Winnsboro,LA,71295,318-435-9429,FRANKLIN,Jackie Johnson,1514 Maple St.,,Winnsboro,LA,71295,5,318-435-5558,B,M,D,245,1/8/2012,1/14/2008,Mr. Johnson +City Judge ,"City Court, City of Winnsboro ",1308 Cornell St.,,Winnsboro,LA,71295,318-435-4508,FRANKLIN,Ann B. McIntyre,P.O. Box 428,,Winnsboro,LA,71295,5,318-435-3201,W,F,D,250,12/31/2010,1/1/2005,Ms. McIntyre +City Marshal ,"City Court, City of Winnsboro ",1308 Cornell St.,,Winnsboro,LA,71295,318-435-4508,FRANKLIN,Bruce McCarthy,820 Rogers Dr.,,Winnsboro,LA,71295,5,318-435-4047,W,M,D,250,12/31/2010,1/1/2005,Mr. McCarthy +Member of School Board ,District 1 ,7293 Prairie Rd.,,Winnsboro,LA,71295,318-435-9046,FRANKLIN,"Edwin Ray Bryan, Jr.",795 Ross Rd.,,Winnsboro,LA,71295,5,318-723-4405,W,M,D,255,12/31/2010,1/1/2007,Mr. Bryan +Member of School Board ,District 2 ,7293 Prairie Rd.,,Winnsboro,LA,71295,318-435-9046,FRANKLIN,"""Ronnie"" Hatton",2327 Hwy. 135,,Winnsboro,LA,71295,5,318-435-6840,W,M,,255,12/31/2010,1/1/2007,Mr. Hatton +Member of School Board ,District 3 ,7293 Prairie Rd.,,Winnsboro,LA,71295,318-435-9046,FRANKLIN,Jesse Young,P.O. Box 86,,Wisner,LA,71378,5,318-724-7333,,M,R,255,12/31/2010,1/1/2007,Mr. Young +Member of School Board ,District 4 ,7293 Prairie Rd.,,Winnsboro,LA,71295,318-435-9046,FRANKLIN,Richard Kelly,168 Lawson Rd.,,Winnsboro,LA,71295,5,318-722-0109,W,M,,255,12/31/2010,1/1/2007,Mr. Kelly +Member of School Board ,District 5 ,7293 Prairie Rd.,,Winnsboro,LA,71295,318-435-9046,FRANKLIN,Louise J. Johnson,212 Willow St.,,Winnsboro,LA,71295,5,318-435-7347,,F,,255,12/31/2010,1/1/2007,Ms. Johnson +Member of School Board ,District 6 ,7293 Prairie Rd.,,Winnsboro,LA,71295,318-435-9046,FRANKLIN,Tim Eubanks,1259 Hwy. 857,,Baskin,LA,71219,5,318-248-2125,W,M,D,255,12/31/2010,1/1/2007,Mr. Eubanks +Member of School Board ,District 7 ,7293 Prairie Rd.,,Winnsboro,LA,71295,318-435-9046,FRANKLIN,Dorothy W. Brown,1207 Maple St.,,Winnsboro,LA,71219,5,318-435-6422,B,F,D,255,12/31/2010,1/1/2007,Ms. Brown +Justice of the Peace ,Justice of the Peace District 1 ,1971 WPA Rd.,,Delhi,LA,71232,318-878-5436,FRANKLIN,"John W. ""Moose"" Ogden",2328 Hwy. 17,,Delhi,LA,71232,5,318-878-9713,W,M,D,265,12/31/2014,1/1/2009,Mr. Ogden +Justice of the Peace ,Justice of the Peace District 2 ,171 Arvel Linder Rd.,,Winnsboro,LA,71295,318-435-7723,FRANKLIN,"Carl Williams, Jr.",171 Arvel Linder Rd.,,Winnsboro,LA,71295,5,318-435-7723,W,M,,265,12/31/2014,1/1/2009,Mr. Williams +Justice of the Peace ,Justice of the Peace District 3 ,140 Glynn Day Rd.,,Winnsboro,LA,71295,318-435-9875,FRANKLIN,Sharon T. Boone,775 Lishman Rd.,,Winnsboro,LA,71295,5,318-435-9543,W,F,D,265,12/31/2014,2/23/2009,Ms. Boone +Justice of the Peace ,Justice of the Peace District 5 ,271 First St.,,Gilbert,LA,71336,318-435-6062,FRANKLIN,R. V. Arnold,P.O. Box 724,,Gilbert,LA,71336,5,318-435-3192,W,M,R,265,12/31/2014,1/1/2009,Mr. Arnold +Justice of the Peace ,Justice of the Peace District 6 ,P. O. Box 929,,Wisner,LA,71378,318-724-6448,FRANKLIN,"""Bill"" Carroll",P.O. Box 36,,Wisner,LA,71378,5,318-724-6627,W,M,,265,12/31/2014,1/1/2009,Mr. Carroll +Justice of the Peace ,Justice of the Peace District 7 ,404 Blue Roberts Rd.,,Wisner,LA,71378,318-724-7693,FRANKLIN,Lawrence Roberts,235 Roberts Rd.,,Wisner,LA,71378,5,318-724-7774,W,M,R,265,12/31/2014,1/1/2009,Mr. Roberts +Justice of the Peace ,Justice of the Peace District 8 ,992 Hwy. 135,,Winnsboro,LA,71295,318-435-5960,FRANKLIN,"Jimmie R. Spears, Sr.",992 Hwy. 135,,Winnsboro,LA,71295,5,318-435-5960,B,M,D,265,12/31/2014,1/1/2009,Mr. Spears +Constable ,Justice of the Peace District 1 ,P.O. Box 22,,Crowville,LA,71232,318-722-3752,FRANKLIN,Johnnie Marshall,P.O. Box 22,,Crowville,LA,71230,5,318-722-3752,W,M,D,267,12/31/2014,1/1/2009,Mr. Marshall +Constable ,Justice of the Peace District 2 ,192 Dobber Glass Rd.,,Baskin,LA,71219,318-248-3163,FRANKLIN,"Carl ""Trey"" Williams",230 Arvel Linder Rd.,,Winnsboro,LA,71295,5,318-435-0955,W,M,,267,12/31/2014,1/1/2009,Mr. Williams +Constable ,Justice of the Peace District 3 ,P.O. Box 274,,Winnsboro,LA,71295,318-435-5808,FRANKLIN,Glynn R. Day,131 Glynn Day Rd.,,Winnsboro,LA,71295,5,318-435-5808,W,M,D,267,12/31/2014,1/1/2009,Mr. Day +Constable ,Justice of the Peace District 5 ,P.O. Box 491,,Gilbert,LA,71336,318-435-5740,FRANKLIN,"""Don"" R. Beaube",P.O. Box 541,,Gilbert,LA,71336,5,318-412-9738,W,M,,267,12/31/2014,1/1/2009,Mr. Beaube +Constable ,Justice of the Peace District 6 ,P.O. Box 661,,Wisner,LA,71378,318-724-7455,FRANKLIN,Danny Richardson,P.O. Box 661,,Wisner,LA,71378,5,318-724-7455,W,M,,267,12/31/2014,1/1/2009,Mr. Richardson +Constable ,Justice of the Peace District 7 ,404 Blue Roberts Rd.,,Wisner,LA,71378,318-723-7693,FRANKLIN,Dale Mason,404 Blue Roberts Rd.,,Wisner,LA,71378,5,318-724-7693,W,M,,267,12/31/2014,1/1/2009,Mr. Mason +Constable ,Justice of the Peace District 8 ,1814 Hwy. 135,,Winnsboro,LA,71295,318-435-9616,FRANKLIN,Timothy Washington,1052 Hwy. 135,,Winnsboro,LA,71295,5,318-435-4467,B,M,D,267,12/31/2014,1/1/2009,Mr. Washington +Mayor ,City of Winnsboro ,P.O. Box 250,,Winnsboro,LA,,318-435-9087,FRANKLIN,Jack Hammons,P.O. Box 100,,Winnsboro,LA,71295,5,318-435-9363,W,M,D,300,6/30/2010,7/1/2006,Mayor Hammons +Mayor ,Town of Wisner ,P.O. Box 290,,Wisner,LA,,318-724-6568,FRANKLIN,Allyn Jean Luckett,P.O. Box 57,,Wisner,LA,71378,5,318-724-6604,B,F,D,300,12/31/2010,2/20/2008,Mayor Luckett +Mayor,Village of Baskin,P. O. Box 359,,Baskin,LA,71219,318-248-3700,FRANKLIN,Billy Joe Cupp,1719 Hwy. 857,,Baskin,LA,71219,5,318-248-3346,W,M,,300,12/31/2010,9/14/2007,Mayor Cupp +Mayor ,Village of Gilbert ,P. O. Box 600,,Gilbert,LA,,318-435-6506,FRANKLIN,"""Mike"" Stephens",P.O. Box 511,,Gilbert,LA,71336,5,318-412-8473,W,M,,300,12/31/2010,1/1/2007,Mr. Stephens +Chief of Police ,City of Winnsboro ,P.O. Box 250,,Winnsboro,LA,71295,318-435-9087,FRANKLIN,Lester Thomas,2608 Baldwin Dr.,,Winnsboro,LA,71295,5,318-435-4918,B,M,D,305,6/30/2010,7/1/2006,Mr. Thomas +Chief of Police ,Town of Wisner ,P.O. Box 290,,Wisner,LA,71378,318-274-6568,FRANKLIN,Billy Cureington,P.O. Box 158,,Wisner,LA,71378,5,318-724-6322,W,M,D,305,12/31/2010,1/1/2007,Chief Cureington +Chief of Police ,Village of Baskin ,P. O. Box 359,,Baskin,LA,71219,318-248-3700,FRANKLIN,Danny Barber,182 Seymore Rd.,,Baskin,LA,71219,5,,W,M,,305,12/31/2010,6/9/2009,Chief Barber +Chief of Police ,Village of Gilbert ,P. O. Box 600,,Gilbert,LA,71336,318-435-6506,FRANKLIN,Ty Britt,P.O. Box 764,,Gilbert,LA,71336,5,318-435-9809,W,M,,305,12/31/2010,1/1/2007,Mr. Britt +Alderman ,Town of Wisner ,P.O. Box 290,,Wisner,LA,71378,318-724-6568,FRANKLIN,Nettie B. Brown,P.O. Box 53,,Wisner,LA,71378,5,318-724-6255,B,F,D,310,12/31/2010,1/1/2007,Ms. Brown +Alderman ,Town of Wisner ,P.O. Box 290,,Wisner,LA,71378,318-724-6568,FRANKLIN,"Mike Caldwell, ",P.O. Box 290,,Wisner,LA,71378,5,,,,,310,,11/5/2009,Mr. Caldwell +Alderman ,Town of Wisner ,P.O. Box 290,,Wisner,LA,71378,318-724-6568,FRANKLIN,Thomas Lemle,P.O. Box 275,,Wisner,LA,71378,5,318-724-6521,B,M,D,310,12/31/2010,7/21/2008,Mr. Lemle +Alderman ,Town of Wisner ,P.O. Box 290,,Wisner,LA,71378,318-724-6568,FRANKLIN,Marc McCarty,P.O. Box 298,,Wisner,LA,71378,5,318-724-6570,W,M,R,310,12/31/2010,1/1/2007,Mr. McCarty +Alderman ,Town of Wisner ,P.O. Box 290,,Wisner,LA,71378,318-724-6568,FRANKLIN,Thomas W. Moore,P.O. Box 6,,Wisner,LA,71378,5,318-724-6615,W,M,,310,12/31/2010,1/1/2007,Mr. Moore +Alderman ,Village of Baskin ,P. O. Box 359,,Baskin,LA,71219,318-248-3700,FRANKLIN,"""Mike"" Ballard",P.O. Box 614,,Baskin,LA,71219,5,318-614-1061,W,M,,310,12/31/2010,10/30/2007,Mr. Ballard +Alderman ,Village of Baskin ,P. O. Box 359,,Baskin,LA,71219,318-248-3700,FRANKLIN,Larry Robert LaBorde,245 Dobber Glass Rd.,,Baskin,LA,71219,5,318-248-3957,W,M,,310,12/31/2010,1/1/2007,Mr. LaBorde +Alderman ,Village of Baskin ,P. O. Box 359,,Baskin,LA,71219,318-248-3700,FRANKLIN,Wanda Lilly,P.O. Box 1246,,Winnsboro,LA,71295,5,318-248-3377,W,F,,310,12/31/2010,7/21/2008,Ms. Lilly +Alderman ,Village of Gilbert ,P. O. Box 600,,Gilbert,LA,71336,318-435-6506,FRANKLIN,Kathleen Dunaway,419 Old Hwy. 15,,Gilbert,LA,71336,5,318-435-5840,W,F,,310,12/31/2010,7/21/2008,Ms. Dunaway +Alderman ,Village of Gilbert ,P. O. Box 600,,Gilbert,LA,71336,318-435-6506,FRANKLIN,Marcus Louis Ezell,P.O. Box 648,,Gilbert,LA,71336,5,318-435-4975,W,M,D,310,12/31/2010,7/21/2008,Mr. Ezell +Alderman ,Village of Gilbert ,P. O. Box 600,,Gilbert,LA,71336,318-435-6506,FRANKLIN,Leo Miller,P.O. Box 765,,Gilbert,LA,71336,5,318-435-8685,W,M,,310,12/31/2010,1/1/2007,Mr. Miller +Councilman ,"District 1, City of Winnsboro ",P.O. Box 250,,Winnsboro,LA,71295,318-435-9087,FRANKLIN,Richard Mahoney,P.O. Box 369,,Winnsboro,LA,71295,5,318-435-7400,W,M,,310,6/30/2010,7/1/2006,Mr. Mahoney +Councilman ,"District 1, City of Winnsboro ",P.O. Box 250,,Winnsboro,LA,71295,318-435-9087,FRANKLIN,"Richard Mahoney, ",130 Carolyn St.,,Winnsboro,LA,71295,5,318-498-1002,W,M,N,310,,, +Councilman ,"District 2, City of Winnsboro ",P.O. Box 250,,Winnsboro,LA,71295,318-435-9087,FRANKLIN,"John ""Sonny"" Dumas",P.O. Box 334,,Winnsboro,LA,71295,5,318-435-6276,B,M,D,310,6/30/2010,7/1/2006,Mr. Dumas +Councilman ,"District 3, City of Winnsboro ",P.O. Box 250,,Winnsboro,LA,71295,318-435-9087,FRANKLIN,Betty Johnson,3106 Earl Dr.,,Winnsboro,LA,71295,5,318-435-4496,B,F,D,310,6/30/2010,7/1/2006,Ms. Johnson +Councilman ,"District 3, City of Winnsboro ",P.O. Box 250,,Winnsboro,LA,71295,318-435-9087,FRANKLIN,"Betty Johnson, ",3106 Earle Dr.,,Winnsboro,LA,71295-4036,10,318-435-4496,B,F,D,310,,, +Councilman ,"District 4, City of Winnsboro ",P.O. Box 250,,Winnsboro,LA,71295,318-435-9087,FRANKLIN,Craig Gill,P.O. Box 46,,Winnsboro,LA,71295-0046 ,12,318-435-4565,W,M,R,310,6/30/2010,7/1/2006,Mr. Gill +Councilman ,"District 4, City of Winnsboro ",P.O. Box 250,,Winnsboro,LA,71295,318-435-9087,FRANKLIN,"Craig G. Gill, ",6637 Main St.,,Winnsboro,LA,71295-2763,10,318-435-4565,W,M,R,310,,, +Councilman ,"District 5, City of Winnsboro ",P.O. Box 250,,Winnsboro,LA,71295,315-435-9087,FRANKLIN,Rex McCarthy,2016 Roland Rd.,,Winnsboro,LA,71295,5,318-435-9330,B,M,D,310,6/30/2010,7/1/2006,Mr. McCarthy +Councilman ,"District 5, City of Winnsboro ",P.O. Box 250,,Winnsboro,LA,71295,315-435-9087,FRANKLIN,"Rex McCarthy, ",2016 Roland St.,,Winnsboro,LA,71295-3859,10,318-535-7111,B,M,D,310,,, +DPEC Member ,at Large ,,,,LA,,,GRANT,J. ElRay Lemoine,2157 Hwy 122,,Montgomery,LA,71454,5,318-646-3420,W,M,D,54,2/20/2012,2/20/2008,Mr. Lemoine +DPEC Member ,at Large ,,,,LA,,,GRANT,"""Connie"" Youngblood",303 Oak St.,,Colfax,LA,71417,5,318-627-5890,W,F,D,54,2/20/2012,2/20/2008,Ms. Youngblood +DPEC Member ,District 1 ,,,,LA,,,GRANT,,,,,,,0,,,,,56,,, +DPEC Member ,District 2 ,,,,LA,,,GRANT,Brandon H. Henderson,208 Birch St.,,Colfax,LA,71417,5,318-627-5447,W,M,D,56,2/20/2012,2/20/2008,Mr. Henderson +DPEC Member ,District 3 ,,,,LA,,,GRANT,,,,,,,0,,,,,56,,, +DPEC Member ,District 4 ,,,,LA,,,GRANT,,,,,,,0,,,,,56,,, +DPEC Member ,District 5 ,,,,LA,,,GRANT,,,,,,,0,,,,,56,,, +DPEC Member ,District 6 ,,,,LA,,,GRANT,,,,,,,0,,,,,56,,, +DPEC Member ,District 7 ,,,,LA,,,GRANT,,,,,,,0,,,,,56,,, +DPEC Member ,District 8 ,,,,LA,,,GRANT,,,,,,,0,,,,,56,,, +RPEC Member ,at Large ,,,,LA,,,GRANT,Sam Brimer,811 Springhill Loop,,Pollock,LA,71467,5,318-640-9791,W,M,R,64,2/20/2012,2/20/2008,Mr. Brimer +RPEC Member ,at Large ,,,,LA,,,GRANT,Alice M. Bryant,134 Overstreet Rd.,,Bentley,LA,71407,5,,,,,64,,8/15/2008,Ms. Bryant +RPEC Member ,at Large ,,,,LA,,,GRANT,Trevor S. Fry,136 Red Oak Ln.,,Dry Prong,LA,71423,5,318-229-1632,,,,64,,6/19/2008,Mr. Fry +RPEC Member ,at Large ,,,,LA,,,GRANT,Glynn K. Maxwell,916 Grove St.,,Dry Prong,LA,71423,5,318-899-5257,W,M,R,64,,10/17/2008,Mr. Maxwell +RPEC Member ,at Large ,,,,LA,,,GRANT,Ira A. Preuett,303 Hardwater Lake Rd.,,Pollock,LA,71467,5,318-765-7453,,,,64,,8/15/2008,Mr. Preuett +RPEC Member ,District 1 ,,,,LA,,,GRANT,Tony Lavespere,143 Bryant Rd.,,Montgomery,LA,71454-5427,10,318-646-2830,,,,66,,9/24/2008,Mr. Lavespere +RPEC Member ,District 2 ,,,,LA,,,GRANT,"C. ""Todd"" Vallee",1073 Hwy 158,,Colfax,LA,71417-5506,10,318-627-3527,,M,R,66,,10/21/2008,Mr. Vallee +RPEC Member ,District 3 ,,,,LA,,,GRANT,Alice S. Pharis,15306 Hwy. 8,,Colfax,LA,71417,5,318-793-8590,,,,66,,9/17/2008,Ms. Pharis +RPEC Member ,District 4 ,,,,LA,,,GRANT,Yvie Edwards Fry,136 Red Oak Ln.,,Dry Prong,LA,71423,5,318-229-1632,,,,66,,8/15/2008,Ms. Fry +RPEC Member ,District 5 ,,,,LA,,,GRANT,Jeremy C. Cedars,20620 Hwy. 167,,Dry Prong,LA,71423,5,318-899-1739,,,,66,,8/15/2008,Mr. Cedars +RPEC Member ,District 6 ,,,,LA,,,GRANT,"Charles E. ""Chuck"" Thomas, Jr.",664 Crawford Loop,,Pollock,LA,71467,5,318-765-9510,,,,66,,8/15/2008,Mr. Thomas +RPEC Member ,District 7 ,,,,LA,,,GRANT,Robbie C. Maxwell,916 Grove St.,,Dry Prong,LA,71423,5,318-899-5257,,,,66,,8/15/2008,Mr. Maxwell +RPEC Member ,District 8 ,,,,LA,,,GRANT,Donnell Spurgeon,4358 LA Hwy. 500,,Gerogetown,LA,71432,5,318-827-5490,,,,66,,9/24/2008,Mr. Spurgeon +Sheriff ,,P. O. Box 187,,Colfax,LA,71417,318-627-3261,GRANT,Baxter W. Welch,P.O. Box 61,,Bentley,LA,71407,5,318-640-2888,W,M,D,225,6/30/2012,7/1/2008,Sheriff Welch +Clerk of Court ,,P. O. Box 263,,Colfax,LA,71417,318-627-3246,GRANT,J. ElRay Lemoine,P.O. Box 263,,Colfax,LA,71417,5,318-646-3420,W,M,D,230,6/30/2012,7/1/2008,Mr. Lemoine +Assessor ,,200 Main St.,,Colfax,LA,71417,318-627-5471,GRANT,Walker Wright,1115 Walker Dr.,,Dry Prong,LA,71423,5,318-899-1824,W,M,D,235,12/31/2012,1/1/2009,Mr. Wright +Coroner ,,P.O. Box 399,,Colfax,LA,71417,318-627-3114,GRANT,Roy Dean Nugent,P.O. Box 400,,Colfax,LA,71417,5,318-627-5185,W,M,R,240,3/25/2012,3/24/2008,Mr. Nugent +Police Juror ,District 1 ,200 Main Street,,Colfax,LA,,318-627-3157,GRANT,Garland McCracken,1245 Highway 1240,,Montgomery,LA,71454,5,318-646-3764,W,M,,245,1/8/2012,1/14/2008,Mr. McCracken +Police Juror ,District 2 ,200 Main Street,,Colfax,LA,71417,318-627-3157,GRANT,Jimmy Bryant,310 Richardson Road,,Colfax,LA,71417,5,318-627-5603,W,M,D,245,1/8/2012,1/14/2008,Mr. Brryant +Police Juror ,District 3 ,200 Main Street,,Colfax,LA,71417,318-627-3157,GRANT,"Tom Hamilton, Jr.",452 Lake Street,,Colfax,LA,71417,5,318-627-5731,,,D,245,1/8/2012,1/14/2008,"Mr,. Hamilton " +Police Juror ,District 4 ,200 Main Street,,Colfax,LA,71417,318-627-3157,GRANT,Arnold R. Murrell,161 Bob Johnson Road,,Dry Prong,LA,71423,5,318-640-2375,W,M,D,245,1/8/2012,1/14/2008,Mr. Murrell +Police Juror ,District 5 ,200 Main Street,,Colfax,LA,71417,318-627-3157,GRANT,Donnie Brown,1094 Hudson Creek Road,,Dry Prong,LA,71423,5,318-640-7089,W,M,,245,1/8/2012,1/14/2008,Mr. Brown +Police Juror ,District 6 ,200 Main Street,,Colfax,LA,71417,318-627-3157,GRANT,Lloyd J. Kirtland,P.O. Box 122,,Pollock,LA,71467,5,318-765-9566,W,M,D,245,1/8/2012,1/14/2008,Mr. Kirkland +Police Juror ,District 7 ,200 Main Street,,Colfax,LA,71417,318-627-3157,GRANT,Lucas LaCour,17399 Hwy 167,,Dry Prong,LA,71423,5,318-899-5561,W,M,R,245,1/8/2012,1/14/2008,Mr. LaCour +Police Juror ,District 8 ,200 Main Street,,Colfax,LA,71417,318-627-3157,GRANT,Roy G. Edwards,404 Edwards Road,,Georgetown,LA,71432,5,318-827-5271,W,M,D,245,1/8/2012,1/14/2008,Mr. Edwards +Member of School Board ,District 1 ,P. O. Box 208,,Colfax,LA,71417,318-627-3274,GRANT,"A. J. ""Tony"" Lavespere",145 Bryant Rd.,,Montgomery,LA,71454,5,318-646-2830,W,M,R,255,12/31/2010,1/1/2007,Mr. Lavespere +Member of School Board ,District 2 ,P. O. Box 208,,Colfax,LA,71417,318-627-3274,GRANT,Marvin P. DeLong,138 Fred DeLong Rd.,,Colfax,LA,71417,5,318-627-5485,W,M,D,255,12/31/2010,1/1/2007,Mr. DeLong +Member of School Board ,District 3 ,P. O. Box 208,,Colfax,LA,71417,318-627-3274,GRANT,Karen Y. Layton,P.O. Box 607,,Colfax,LA,71417,5,318-627-5762,B,F,D,255,12/31/2010,1/1/2007,Ms. Layton +Member of School Board ,District 4 ,P. O. Box 208,,Colfax,LA,71417,318-627-3274,GRANT,Eddie E. Baxley,152 Red Oak,,Dry Prong,LA,71423,5,318-641-0948,W,M,D,255,12/31/2010,1/1/2007,Mr. Baxley +Member of School Board ,District 5 ,P. O. Box 208,,Colfax,LA,71417,318-627-3274,GRANT,"""Randy"" Browning",142 Roger Dr.,,Dry Prong,LA,71423,5,318-640-0681,W,M,R,255,12/31/2010,1/1/2007,Mr. Browning +Member of School Board ,District 6 ,P. O. Box 208,,Colfax,LA,71417,318-627-3274,GRANT,A. D. Futrell,P.O. Box 39,,Pollock,LA,71467,5,318-765-9626,W,M,D,255,12/31/2010,1/1/2007,Mr. Futrell +Member of School Board ,District 7 ,P. O. Box 208,,Colfax,LA,71417,318-627-3274,GRANT,Craig McCain,311 Kisatchie Dr.,,Dry Prong,LA,71423,5,318-899-3311,W,M,R,255,12/31/2010,1/1/2007,Mr. McCain +Member of School Board ,District 8 ,P. O. Box 208,,Colfax,LA,71417,318-627-3274,GRANT,Terry W. Oliver,P.O. Box 245,,Georgetown,LA,71432,5,318-827-5391,W,M,D,255,12/31/2010,1/1/2007,Mr. Oliver +Justice of the Peace ,Justice of the Peace District A ,962 Hwy. 122,,Montgomery,LA,71454,318-646-3831,GRANT,"Tony L. ""Bo"" Vets, II",116 Second St.,,Colfax,LA,71417,5,318-419-2235,W,M,R,265,12/31/2014,1/1/2009,Mr. Vets +Justice of the Peace ,Justice of the Peace District B ,12220 Hwy 8,,Colfax,LA,71417,318-627-3759,GRANT,"Larry Parker, Sr.",12220 Hwy. 8,,Colfax,LA,71417,5,318-627-3759,W,M,R,265,12/31/2014,1/1/2009,Mr. Parker +Justice of the Peace ,Justice of the Peace District C ,21139 Hwy. 167,,Dry Prong,LA,71423,318-640-2210,GRANT,Karen Holston Edwards,21139 Hwy. 167,,Dry Prong,LA,71423,5,318-640-2210,W,F,D,265,12/31/2014,1/1/2009,Ms. Edwards +Justice of the Peace ,Justice of the Peace District D ,P. O. Box 610,,Pollock,LA,71467,318-765-3997,GRANT,Judy Guynes Brimer,811 Springhill Loop,,Pollock,LA,71467,5,318-640-9791,W,F,R,265,12/31/2014,1/1/2009,Ms. Brimer +Justice of the Peace ,Justice of the Peace District E ,3540 Hwy. 472,,Dry Prong,LA,71423,318-899-3732,GRANT,"Charles E. ""Chuck"" Evans",3540 Hwy. 472,,Dry Prong,LA,71423,5,318-899-3732,W,M,R,265,12/31/2014,1/1/2009,Mr. Evans +Constable ,Justice of the Peace District A ,P.O. Box 356,,Montgomery,LA,71454,318-646-2224,GRANT,"John Timothy ""Tim"" Coolman",P. O. Box 356,,Montgomery,LA,71454,5,318-646-2224,W,M,D,267,12/31/2014,1/1/2009,Mr. Coolman +Constable ,Justice of the Peace District B ,P.O. Box 638,,Colfax,LA,71417,318-627-5990,GRANT,Willie R. Peavy,P. O. Box 638 .,,Colfax,LA,71417,5,318-740-7104,W,M,D,267,12/31/2014,1/1/2009,Mr. Peavy +Constable ,Justice of the Peace District C ,154 AJ's Ln.,,Pollock,LA,71467,318-641-9031,GRANT,Joey E. Fuller,298 Hwy. 1241,,Colfax,LA,71417,5,318-308-8102,W,M,R,267,12/31/2014,1/1/2009,Mr. Fuller +Constable ,Justice of the Peace District D ,141 Wainwright Rd.,,Pollock,LA,71467,318-765-3423,GRANT,"B. E. Gene Durand, Jr.",141 Wainwright Rd.,,Pollock,LA,71467,5,318-765-3423,W,M,O,267,12/31/2014,1/1/2009,Mr. Durand +Constable ,Justice of the Peace District E ,1177 Willett Rd.,,Dry Prong,LA,71423,318-899-3870,GRANT,"F. H. ""Bubba"" Dykes",1177 Willett Rd.,,Dry Prong,LA,71423,5,318-899-3870,W,M,R,267,12/31/2014,1/1/2009,Mr. Dykes +Mayor ,Town of Colfax ,P. O. Box 310,,Colfax,LA,,318-627-3711,GRANT,Gerald Hamilton,449 Lake St.,,Colfax,LA,71417,5,318-627-3197,B,M,D,300,6/30/2010,7/1/2006,Mayor Hamilton +Mayor ,Town of Colfax ,P. O. Box 310,,Colfax,LA,,318-627-3711,GRANT,"Gerald Hamilton, ",449 Lake St.,,Colfax,LA,71417-1213,10,318-627-3197,B,M,D,300,,, +Mayor ,Town of Montgomery ,P. O. Box 99,,Montgomery,LA,,318-646-3110,GRANT,Stephen Lee Gunn,P.O. Box 229,,Montgomery,LA,71454,5,318-646-3374,W,M,,300,12/31/2010,1/1/2007,Mr. Gunn +Mayor ,Town of Pollock ,P. O. Box 189,,Pollock,LA,,318-765-3796,GRANT,Jerome F. Scott,P.O. Box 305,,Pollock,LA,71467,5,318-765-9024,W,M,D,300,12/31/2010,1/1/2007,Mr. Scott +Mayor ,Village of Creola ,241 Gray's Creek Rd.,,Dry Prong,LA,71423,318-641-0430,GRANT,R. Wayne Nugent,21428 Hwy. 167,,Dry Prong,LA,71423,5,318-447-2371,W,M,R,300,6/30/2011,7/1/2007,Mayor Nugent +Mayor ,Village of Dry Prong ,607 Russell Hataway St.,,Dry Prong,LA,,318-899-5341,GRANT,John Landry,P.O. Box 10,,Dry Prong,LA,71423,5,318-481-2581,W,M,D,300,6/30/2012,8/24/2009,Mayor Landry +Mayor ,Village of Georgetown ,P. O. Box 220,,Georgetown,LA,,318-827-5527,GRANT,Danny C. Olden,297 Hwy. 502,,Georgetown,LA,71432,5,318-827-5576,W,M,O,300,12/31/2012,1/1/2009,Mayor Olden +Chief of Police,Town of Colfax,P. O. Box 310,,Colfax,LA,71417,318-627-3711,GRANT,Kraig D. Fussell,131 Gore Rd.,,Bentley,LA,71407,5,,,,,305,,5/29/2009,Chief Fussell +Chief of Police ,Town of Pollock ,P. O. Box 189,,Pollock,LA,71467,318-765-3796,GRANT,"Christopher ""Chris"" Paul",P. O. Box 118,,Pollock,LA,71467,5,318-765-9915,W,M,D,305,12/31/2010,10/14/2008,Chief Paul +Chief of Police ,Village of Creola ,241 Gray's Creek Rd.,,Dry Prong,LA,71423,318-641-0430,GRANT,Preston H. Mosley,21428 Hwy 167,,Dry Prong,LA,71423,5,318-201-6680,W,M,D,305,6/30/2011,2/23/2009,Chief Mosley +Chief of Police ,Village of Georgetown ,P. O. Box 220,,Georgetown,LA,71432,318-827-5527,GRANT,"Billy Ray Prince, III",P.O. Box 96,,Georgetown,LA,71432,5,318-715-5134,W,M,R,305,12/31/2012,2/23/2009,Chief Prince +Alderman ,Town of Colfax ,P. O. Box 310,,Colfax,LA,71417,318-627-3711,GRANT,Alan D. Futrell,506 Seventh St.,,Colfax,LA,71417,5,318-627-5842,W,M,D,310,6/30/2010,7/1/2006,Mr. Futrell +Alderman ,Town of Colfax ,P. O. Box 310,,Colfax,LA,71417,318-627-3711,GRANT,Lourain C. LaCour,1204 Ash St.,,Colfax,LA,71417,5,318-627-5928,B,F,D,310,6/30/2010,7/1/2006,Ms. LaCour +Alderman ,Town of Colfax ,P. O. Box 310,,Colfax,LA,71417,318-627-3711,GRANT,Cora Reed,101 Hud Loop,,Colfax,LA,71417,5,318-627-9932,B,F,D,310,6/30/2010,7/1/2006,Ms. Reed +Alderman ,Town of Colfax ,P. O. Box 310,,Colfax,LA,71417,318-627-3711,GRANT,Lorraine G. Sapp,416 Eleanor St.,,Colfax,LA,71417,5,318-627-2851,B,F,D,310,6/30/2010,7/1/2006,Ms. Sapp +Alderman ,Town of Colfax ,P. O. Box 310,,Colfax,LA,71417,318-627-3711,GRANT,"Gayle ""Sonny"" Tyler",507 Foulk St.,,Colfax,LA,71417,5,318-627-3048,W,M,R,310,6/30/2010,7/1/2006,Mr. Tyler +Alderman ,Village of Creola ,241 Gray's Creek Rd.,,Dry Prong,LA,71423,318-641-0430,GRANT,Shannon Basco,241 Gray's Creek Rd.,,Dry Prong,LA,71423,5,318-641-0430,,,,310,,10/12/2009,Ms. Basco +Alderman ,Village of Creola ,241 Gray's Creek Rd.,,Dry Prong,LA,71423,318-641-0430,GRANT,Lisa M. Butchee,21430 Hwy. 167,,Dry Prong,LA,71423,5,318-641-1356,W,F,,310,6/30/2011,7/1/2007,Ms. Butchee +Alderman ,Village of Creola ,241 Gray's Creek Rd.,,Dry Prong,LA,71423,318-641-0430,GRANT,Sharon Fisher-Basco,132 Flagon Rd.,,Dry Prong,LA,71423,5,318-641-1326,W,F,,310,6/30/2011,7/1/2007,Ms. Fisher +Alderman ,Village of Dry Prong ,607 Russell Hataway St.,,Dry Prong,LA,71423,318-899-5341,GRANT,"Roger Davis, ",P.O. Box 327,,Dry Prong,LA,71423,5,318-443-9284,,,,310,,11/16/2009,Mr Davis +Alderman ,Village of Dry Prong ,607 Russell Hataway St.,,Dry Prong,LA,71423,318-899-5341,GRANT,"Roger E. Davis, ",1108 Walker Dr.,,Dry Prong,LA,71423-9306,10,318-899-5245,W,M,D,310,,2/15/2010, +Alderman ,Village of Dry Prong ,607 Russell Hataway St.,,Dry Prong,LA,71423,318-899-5341,GRANT,Jerry G. Edwards,P.O. Box 189,,Dry Prong,LA,71423,5,318-899-5320,W,M,D,310,6/30/2012,8/24/2009,Mr. Edwards +Alderman ,Village of Dry Prong ,607 Russell Hataway St.,,Dry Prong,LA,71423,318-899-5341,GRANT,Belinda L. Gauthier,P.O. Box 136,,Dry Prong,LA,71423,5,318-899-5913,W,F,D,310,6/30/2012,7/1/2008,Ms. Gauthier +Alderman ,Village of Georgetown ,P. O. Box 220,,Georgetown,LA,71432,318-827-5527,GRANT,"""Jim"" Bradford",P. O. Box 192,,Georgetown,LA,71432,5,318-827-5587,W,M,,310,12/31/2012,1/1/2009,Mr. Bradford +Alderman ,Village of Georgetown ,P. O. Box 220,,Georgetown,LA,71432,318-827-5527,GRANT,Robert K. Sanders,P.O. Box 176,,Georgetown,LA,71432,5,318-827-5839,W,M,O,310,12/31/2012,1/1/2009,Mr. Sanders +Alderman ,Village of Georgetown ,P. O. Box 220,,Georgetown,LA,71432,318-827-5527,GRANT,"Ray Williamson, Jr.",P.O. Box 132,,Georgetown,LA,71432,5,318-827-9649,W,M,,310,12/31/2012,2/23/2009,Mr. Williamson +Council Member ,Town of Montgomery ,P. O. Box 99,,Montgomery,LA,71454,318-646-3110,GRANT,James C. Carter,P.O. Box 121,,Montgomery,LA,71454,5,318-646-3467,W,M,D,310,12/31/2010,1/1/2007,Mr. Carter +Council Member ,Town of Montgomery ,P. O. Box 99,,Montgomery,LA,71454,318-646-3110,GRANT,Velma Fletcher,P.O. Box 874,,Montgomery,LA,71454,5,318-646-2605,W,F,,310,12/31/2010,1/1/2007,Ms. Fletcher +Council Member ,Town of Montgomery ,P. O. Box 99,,Montgomery,LA,71454,318-646-3110,GRANT,Joann B. Lary,P.O. Box 536,,Montgomery,LA,71454,5,318-646-3457,W,F,R,310,12/31/2010,1/1/2007,Ms. Lary +Council Member ,Town of Montgomery ,P. O. Box 99,,Montgomery,LA,71454,318-646-3110,GRANT,Denise Pearson,P.O. Box 287,,Montgomery,LA,71454,5,318-646-9226,B,F,D,310,12/31/2010,1/1/2007,Ms. Pearson +Council Member ,Town of Montgomery ,P. O. Box 99,,Montgomery,LA,71454,318-646-3110,GRANT,John Savant,P.O. Box 387,,Montgomery,LA,71454,5,318-646-8469,W,M,,310,12/31/2010,1/1/2007,Mr. Savant +Councilmen ,Town of Pollock ,P. O. Box 189,,Pollock,LA,71467,318-765-3796,GRANT,"Charles ""Eddie"" Butterfield, Jr.",4106 Hwy. 8,,Pollock,LA,71467,5,318-229-5066,W,M,O,310,12/31/2010,11/14/2008,Mr. Butterfield +Councilmen ,Town of Pollock ,P. O. Box 189,,Pollock,LA,71467,318-765-3796,GRANT,Faye Mayeaux,P.O. Box 576,,Pollack,LA,71467,5,318-765-9067,W,F,D,310,12/31/2010,1/1/2007,Ms. Mayeaux +Councilmen ,Town of Pollock ,P. O. Box 189,,Pollock,LA,71467,318-765-3796,GRANT,Winnie Nichols,1640 Willett St.,,Pollock,LA,71467,5,318-765-0973,W,F,D,310,12/31/2010,1/1/2007,Ms. Nichols +Councilmen ,Town of Pollock ,P. O. Box 189,,Pollock,LA,71467,318-765-3796,GRANT,"""Ron"" Wilkins",132 Durham Rd.,,Pollock,LA,71467,5,318-765-3856,W,M,O,310,12/31/2010,4/14/2009,Mr. Wilkins +Councilmen ,Town of Pollock ,P. O. Box 189,,Pollock,LA,71467,318-765-3796,GRANT,Sharon Lincecum Zeh,1911 Hickory St.,,Pollock,LA,71467,5,,W,F,D,310,12/31/2010,1/1/2007,Ms. Zeh +DPEC Member ,at Large ,,,,LA,,,IBERIA,Perry Segura,P.O Box 13410,,New Iberia,LA,70562,5,337-367-7785,W,M,D,54,2/20/2012,2/20/2008,Mr. Segura +DPEC Member ,District 1 ,,,,LA,,,IBERIA,,,,,,,0,,,,,56,,, +DPEC Member ,District 2 ,,,,LA,,,IBERIA,,,,,,,0,,,,,56,,, +DPEC Member ,District 3 ,,,,LA,,,IBERIA,,,,,,,0,,,,,56,,, +DPEC Member ,District 4 ,,,,LA,,,IBERIA,,,,,,,0,,,,,56,,, +DPEC Member ,District 5 ,,,,LA,,,IBERIA,,,,,,,0,,,,,56,,, +DPEC Member ,District 6 ,,,,LA,,,IBERIA,Stephen I. Etienne,1304 Southport Blvd.,,New Iberia,LA,70560,5,337-365-6195,B,M,D,56,2/20/2012,2/20/2008,Mr. Etienne +DPEC Member ,District 7 ,,,,LA,,,IBERIA,,,,,,,0,,,,,56,,, +DPEC Member ,District 8 ,,,,LA,,,IBERIA,,,,,,,0,,,,,56,,, +DPEC Member ,District 9 ,,,,LA,,,IBERIA,,,,,,,0,,,,,56,,, +DPEC Member ,District 10 ,,,,LA,,,IBERIA,,,,,,,0,,,,,56,,, +DPEC Member ,District 11 ,,,,LA,,,IBERIA,,,,,,,0,,,,,56,,, +DPEC Member ,District 12 ,,,,LA,,,IBERIA,,,,,,,0,,,,,56,,, +DPEC Member ,District 13 ,,,,LA,,,IBERIA,,,,,,,0,,,,,56,,, +DPEC Member ,District 14 ,,,,LA,,,IBERIA,,,,,,,0,,,,,56,,, +RPEC Member ,at Large ,,,,LA,,,IBERIA,Anne B. Caffery,1001 Loreauville Rd.,,New Iberia,LA,70563,5,337-365-3617,W,F,R,64,2/20/2012,2/20/2008,Ms. Caffery +RPEC Member ,at Large ,,,,LA,,,IBERIA,Jeffery Martin Landry,101 Arbor Ln.,,New Iberia,LA,70563,5,,,,,64,,11/9/2009,Ms. Landry +RPEC Member ,at Large ,,,,LA,,,IBERIA,Shelley Greer Rankin,129 Center St.,,New Iberia,LA,70560,5,,,,,64,,11/9/2009,Ms. Rankin +RPEC Member ,District 1 ,,,,LA,,,IBERIA,,,,,,,0,,,,,66,,, +RPEC Member ,District 2 ,,,,LA,,,IBERIA,,,,,,,0,,,,,66,,, +RPEC Member ,District 3 ,,,,LA,,,IBERIA,,,,,,,0,,,,,66,,, +RPEC Member ,District 4 ,,,,LA,,,IBERIA,,,,,,,0,,,,,66,,, +RPEC Member ,District 5 ,,,,LA,,,IBERIA,"James Wright Wyche, III",703 Julia St.,,New Iberia,LA,70563,5,,,,,66,,11/9/2009,Mr. Wyche +RPEC Member ,District 6 ,,,,LA,,,IBERIA,,,,,,,0,,,,,66,,, +RPEC Member ,District 7 ,,,,LA,,,IBERIA,Christopher John Gary,933 Myra St.,,New Iberia,LA,70563,5,,,,,66,,11/9/2009,Mr. Gary +RPEC Member ,District 8 ,,,,LA,,,IBERIA,"Roger Paul Hamilton, Jr.",105 Janice Avnue,,New Iberia,LA,70563,5,,,,,66,,11/9/2009,Mr. Hamilton +RPEC Member ,District 9 ,,,,LA,,,IBERIA,,,,,,,0,,,,,66,,, +RPEC Member ,District 10 ,,,,LA,,,IBERIA,,,,,,,0,,,,,66,,, +RPEC Member ,District 11 ,,,,LA,,,IBERIA,Rebecca Motty Allain,1933 Main St.,,Jeanerette,LA,70544,5,,,,,66,,11/9/2009, +RPEC Member ,District 12 ,,,,LA,,,IBERIA,,,,,,,0,,,,,66,,, +RPEC Member ,District 13 ,,,,LA,,,IBERIA,,,,,,,0,,,,,66,,, +RPEC Member ,District 14 ,,,,LA,,,IBERIA,,,,,,,0,,,,,66,,, +Sheriff ,,"300 Iberia St., Ste. 120",,New Iberia,LA,70560-4584,318-369-3714,IBERIA,Louis Ackal,"300 Iberia St., Ste. 120",,New Iberia,LA,70560-4584,10,337-367-0782,W,M,R,225,6/30/2012,7/1/2008,Sheriff Ackal +Clerk of Court ,,P. O. Drawer 12010,,New Iberia,LA,70562-2010,337-365-7282,IBERIA,"""Mike"" Thibodeaux",P.O. Drawer 12010,,New Iberia,LA,70562-2010,10,337-365-7282,W,M,D,230,6/30/2012,7/1/2008,Mr. Thibodeaux +Assessor ,,"300 Iberia St., Ste. B-100",,New Iberia,LA,70560,337-369-4415,IBERIA,Rickey Huval,2013 Alligator Alley,,New Iberia,LA,70560,5,337-364-7313,W,M,D,235,12/31/2012,1/1/2009,Mr. Huval +Coroner ,,P.O. Box 590,,Jeanerette,LA,70544,337-276-6374,IBERIA,"James B. Falterman, Sr.",P.O. Box 590,,Jeanerette,LA,70544,5,337-276-6374,W,M,D,240,3/25/2012,3/24/2008,Mr. Falterman +Parish President ,,"300 Iberia St., Ste. 410",,New Iberia,LA,70560-4543,337-365-8246,IBERIA,Ernest Freyou,2601 Freyou Rd.,,New Iberia,LA,70560,5,337-364-5633,W,M,R,243,1/9/2012,1/14/2008,Mr. Freyou +Councilman,District 1,"300 Iberia St., Ste. 410",,New Iberia,LA,70560-4543,337-365-8246,IBERIA,Maggie F. Daniels,309 Emery Lewis Ave.,,New Iberia,LA,70560,5,337-369-4477,B,F,D,245,1/9/2012,1/14/2008,Ms. Daniels +Councilman ,District 2 ,"300 Iberia St., Ste. 410",,New Iberia,LA,70560-4543,337-365-8246,IBERIA,"Curtis ""Joe"" Boudoin",1511 Eden St.,,New Iberia,LA,70560,5,337-365-4144,W,M,D,245,1/9/2012,1/14/2008,Mr. Boudoin +Councilman ,District 3 ,"300 Iberia St., Ste. 410",,New Iberia,LA,70560-4543,337-365-8246,IBERIA,Thomas J. Landry,3304 W. Old Spanish Trail,,New Iberia,LA,70560,5,337-367-3533,W,M,R,245,1/9/2012,1/14/2008,Mr. Landry +Councilman ,District 4 ,"300 Iberia St., Ste. 410",,New Iberia,LA,70560-4543,337-365-8246,IBERIA,Lloyd Brown,813 Francis St.,,New Iberia,LA,70560,5,337-365-4298,B,M,D,245,1/9/2012,1/14/2008,Mr. Brown +Councilman ,District 5 ,"300 Iberia St., Ste. 410",,New Iberia,LA,70560-4543,337-365-8246,IBERIA,Troy Comeaux,1609 Southwood Dr.,,New Iberia,LA,70560,5,337-369-6812,W,M,,245,1/9/2012,1/14/2008,Mr. Comeaux +Councilman ,District 6 ,"300 Iberia St., Ste. 410",,New Iberia,LA,70560-4543,337-365-8246,IBERIA,Bernard E. Broussard,703 Jefferson Terrace,,New Iberia,LA,70560,5,337-364-3433,W,M,R,245,1/9/2012,1/14/2008,Mr. Broussard +Councilman ,District 7 ,"300 Iberia St., Ste. 410",,New Iberia,LA,70560-4543,337-365-8246,IBERIA,John Berard,205 Pollard Ave.,,New Iberia,LA,70563,5,337-367-9286,W,M,,245,1/9/2012,1/14/2008,Mr. Berard +Councilman ,District 8 ,"300 Iberia St., Ste. 410",,New Iberia,LA,70560-4543,337-365-8246,IBERIA,Barry Verret,1704 Daspit Rd.,,New Iberia,LA,70560,5,337-365-6168,W,M,,245,1/9/2012,1/14/2008,Mr. Verret +Councilman ,District 9 ,"300 Iberia St., Ste. 410",,New Iberia,LA,70560-4543,337-365-8246,IBERIA,Glenn P. Romero,5919 Loreauville Rd.,,New Iberia,LA,70563,5,337-229-6529,W,M,D,245,1/9/2012,1/14/2008,Mr. Romero +Councilman ,District 10 ,"300 Iberia St., Ste. 410",,New Iberia,LA,70560-4543,337-365-8246,IBERIA,Roger Duncan,4016 Coco Miquel Dr.,,New Iberia,LA,70560,5,337-369-9507,W,M,,245,1/9/2012,1/14/2008,Mr. Duncan +Councilman ,District 11 ,"300 Iberia St., Ste. 410",,New Iberia,LA,70560-4543,337-365-8246,IBERIA,Jerome W. Fitch,9305 Old Jeanerette Rd.,,Jeanerette,LA,70544,5,337-276-4398,W,M,D,245,1/9/2012,1/14/2008,Mr. Fitch +Councilman ,District 12 ,"300 Iberia St., Ste. 410",,New Iberia,LA,70560-4543,337-365-8246,IBERIA,"Charles ""Charlie Brown"" Williams",809 Morris Charles,,Jeanerette,LA,70544,5,337-276-3526,B,M,D,245,1/9/2012,1/14/2008,Mr. Brown +Councilman ,District 13 ,"300 Iberia St., Ste. 410",,New Iberia,LA,70560-4543,337-365-8246,IBERIA,M. Larry Richard,3113 Avery Island Rd.,,New Iberia,LA,70560,5,337-365-0025,B,M,,245,1/9/2012,1/14/2008,Mr. Richard +Councilman ,District 14 ,"300 Iberia St., Ste. 410",,New Iberia,LA,70560-4543,337-365-8246,IBERIA,Naray Hulin,6211 Fremin Rd.,,New Iberia,LA,70560,5,337-367-1871,W,M,D,245,1/9/2012,1/14/2008,Mr. Hulin +City Judge ,"City Court, City of Jeanerette ",P. O. Box 268,,Jeanerette,LA,70544,337-276-5603,IBERIA,Cameron B. Simmons,P.O. Box 232,,Jeanerette,LA,70544,5,337-276-6034,W,M,D,250,12/31/2014,1/1/2009,Judge Simmons +City Judge ,"City Court, City of New Iberia ","457 E. Main St., Rm. 206",,New Iberia,LA,70560-3700,318-369-2334,IBERIA,Robert L. Segura,135 Plantation Dr.,,New Iberia,LA,70563,5,337-365-7103,W,M,D,250,12/31/2014,1/1/2009,Judge Segura +City Marshal ,"City Court, City of Jeanerette ",P. O. Box 268,,Jeanerette,LA,70544,337-276-5603,IBERIA,"Fernest ""Pacman"" Martin",1505 Martin Luther King Dr.,,Jeanerette,LA,70544,5,,B,M,D,250,12/31/2014,1/1/2009,Marshal Martin +City Marshal ,"City Court, City of New Iberia ","457 E. Main St., Rm. 206",,New Iberia,LA,70560-3700,318-369-2332,IBERIA,"Victor ""Vic"" Delcambre",149 Plantation Dr.,,New Iberia,LA,70563,5,337-364-7984,W,M,D,250,12/31/2014,1/1/2009,Marshal Delcambre +Member of School Board ,District 1 ,P. O. Box 200,,New Iberia,LA,70562-0200 ,337-365-2341,IBERIA,Clara Degay Carrier,717 Elizabeth St.,,New Iberia,LA,70560,5,337-364-2049,B,F,D,255,12/31/2010,1/1/2007,Ms. Carrier +Member of School Board ,District 2 ,P. O. Box 200,,New Iberia,LA,70562-0200 ,337-365-2341,IBERIA,"Elvin ""Dee"" Pradia",1717 S. Gibbs Ln.,,New Iberia,LA,70560,5,337-369-3246,B,M,D,255,12/31/2010,1/1/2007,Mr. Pradia +Member of School Board ,District 3 ,P. O. Box 200,,New Iberia,LA,70562-0200 ,337-365-2341,IBERIA,"""Jay"" McDonald",107 W. Tampico St.,,New Iberia,LA,70563,5,337-365-2223,W,M,,255,12/31/2010,1/1/2007,Mr. McDonald +Member of School Board ,District 4 ,P. O. Box 200,,New Iberia,LA,70562-0200 ,337-365-2341,IBERIA,"Mary Batiste ""Mel"" Davis",P.O.Box 12101,,New Iberia,LA,70562,5,337-365-1374,B,F,D,255,12/31/2010,1/1/2007,Ms. Davis +Member of School Board ,District 5 ,P. O. Box 200,,New Iberia,LA,70562-0200 ,337-365-2341,IBERIA,Robbie J. LeBlanc,912 Sydney St.,,New Iberia,LA,70560,5,337-365-7632,W,M,,255,12/31/2010,1/1/2007,Mr. LeBlanc +Member of School Board ,District 6 ,P. O. Box 200,,New Iberia,LA,70562-0200 ,337-365-2341,IBERIA,"Richard L. Denison, Jr.",120 Lee St.,,New Iberia,LA,70560,5,337-519-6550,W,M,R,255,12/31/2010,1/1/2007,Mr. Denison +Member of School Board ,District 7 ,P. O. Box 200,,New Iberia,LA,70562-0200 ,337-365-2341,IBERIA,"Dan LeBlanc, Sr.",203 Everette St.,,New Iberia,LA,70563,5,337-365-6537,W,M,R,255,12/31/2010,1/1/2007,Mr. LeBlanc +Member of School Board ,District 8 ,P. O. Box 200,,New Iberia,LA,70562-0200 ,337-365-2341,IBERIA,"""Ed"" Buford",700 Terrell Crt.,,New Iberia,LA,70563,5,337-365-2852,W,M,D,255,12/31/2010,1/1/2007,Mr. Buford +Member of School Board ,District 9 ,P. O. Box 200,,New Iberia,LA,70562-0200 ,337-365-2341,IBERIA,Joel J. Dugas,117 Ed Provost Rd.,,New Iberia,LA,70563,5,337-229-4896,W,M,R,255,12/31/2010,1/1/2007,Mr. Dugas +Member of School Board ,District 10 ,P. O. Box 200,,New Iberia,LA,70562-0200 ,337-365-2341,IBERIA,Blaine Meche,P.O. Box 126,,Lydia,LA,70569,5,337-369-1634,W,M,,255,12/31/2010,1/1/2007,Mr. Meche +Member of School Board ,District 11 ,P. O. Box 200,,New Iberia,LA,70562-0200 ,337-365-2341,IBERIA,Mary Fay Lapeyrouse Freshley,1708 Main St.,,Jeanerette,LA,70544,5,337-276-4213,W,F,D,255,12/31/2010,1/1/2007,Ms. Freshley +Member of School Board ,District 12 ,P. O. Box 200,,New Iberia,LA,70562-0200 ,337-365-2341,IBERIA,Arthur L. Alexander,11308 E. Admiral Doyle Dr.,,Jeanerette,LA,70544,5,337-276-5713,B,M,D,255,12/31/2010,1/1/2007,Mr. Alexander +Member of School Board ,District 13 ,P. O. Box 200,,New Iberia,LA,70562-0200 ,337-365-2341,IBERIA,Danny D. Segura,5810 Derouen Rd.,,New Iberia,LA,70560,5,337-365-5823,W,M,,255,12/31/2010,1/1/2007,Mr. Segura +Member of School Board ,District 14 ,P. O. Box 200,,New Iberia,LA,70562-0200 ,337-365-2341,IBERIA,"Kenric ""Mushy"" Fremin",5711 Fremin Rd.,,New Iberia,LA,70560,5,337-365-6004,W,M,D,255,12/31/2010,5/12/2009,Mr. Fremin +Justice of the Peace ,Justice of the Peace Ward 1 ,114 Migues Rd.,,New Iberia,LA,70560,337-364-4409,IBERIA,"John N. ""Johnny"" Hebert",P.O. Box 12024,,New Iberia,LA,70562,5,337-364-4409,W,M,,265,12/31/2014,1/1/2009,Mr. Hebert +Justice of the Peace ,Justice of the Peace Ward 2 ,4918 Freyou Rd.,,New IberIA,LA,70560,337-364-3662,IBERIA,Henry Charpentier,4918 Freyou Rd.,,New Iberia,LA,70560,5,337-364-3662,W,M,D,265,12/31/2014,1/1/2009,Mr. Charpentier +Justice of the Peace ,Justice of the Peace Ward 3 ,5201 Loreauville Rd.,,New Iberia,LA,70563,337-229-4925,IBERIA,Veronica B. Ferry,3304 Sugarmill Rd.,,New Iberia,LA,70563,5,337-376-6199,W,F,R,265,12/31/2014,1/1/2009,Mr. Ferry +Constable ,Justice of the Peace Ward 1 ,7708 Coteau Rd.,,New Iberia,LA,70560,337-367-3515,IBERIA,Lynn P. Guillotte,7708 Coteau Rd.,,New Iberia,LA,70560,5,337-367-3515,W,M,R,267,12/31/2014,1/1/2009,Mr. Guillotte +Constable ,Justice of the Peace Ward 2 ,5018 Freyou Rd.,,New Iberia,LA,70560,337-365-1019,IBERIA,Mark Charpentier,5018 Freyou Rd.,,New Iberia,LA,70560,5,337-365-1019,W,M,D,267,12/31/2014,1/1/2009,Mr. Charpentier +Constable ,Justice of the Peace Ward 3 ,7512 Loreauville Rd.,,New Iberia,LA,70563,337-229-4995,IBERIA,Benjamin J. Hoffpauir,7119 Loreauville Rd.,,New Iberia,LA,70563,5,337-229-4506,W,M,D,267,12/31/2014,1/1/2009,Mr. Hoffpauir +Mayor ,City of Jeanerette ,P. O. Box 209,,Jeanerette,LA,,337-276-4587,IBERIA,Arthur L. Verret,2121 Deslatte St.,,Jeanerette,LA,70544,5,337-276-5883,W,M,D,300,6/30/2011,7/1/2007,Mayor Verret +Mayor ,City of New Iberia ,"457 E. Main St., Ste.300",,New Iberia,LA,,337-369-2300,IBERIA,"""Hilda"" Daigre-Curry",370 Hilltop Cr.,,New Iberia,LA,70563,5,337-369-3133,W,F,D,300,12/31/2012,1/1/2009,Mayor Daigre-Curry +Mayor ,Village of Loreauville ,P. O. Box 336,,Loreauville,LA,,337-229-8306,IBERIA,"Albert A. Broussard, Jr.",P.O. Box 52,,Loreauville,LA,70552,5,337-229-6768,W,M,R,300,12/31/2012,1/1/2009,Mr. Broussard +Alderman at Large ,City of Jeanerette ,P. O. Box 209,,Jeanerette,LA,70544,337-276-4587,IBERIA,Aprill Foulcard,637 Hebert St.,,Jeanerette,LA,70544,5,337-519-5378,B,F,D,308,6/30/2011,7/1/2007,Ms. Foulcard +Council Member ,"At Large, City of New Iberia ","457 E. Main St., Ste.300",,New Iberia,LA,70560-3700,337-369-2300,IBERIA,"Frederick H. ""Freddie"" DeCourt, Jr.",403 Loreauville Rd.,,New Iberia,LA,70563,5,337-364-3616,W,M,R,308,12/31/2012,1/1/2009,Mr. DeCourt +Alderman ,Village of Loreauville ,P. O. Box 336,,Loreauville,LA,70552,337-229-8306,IBERIA,Tony Broussard,P.O. Box 818,,Loreauville,LA,70552,5,337-229-9295,W,M,,310,12/31/2012,1/1/2009,Mr. Broussard +Alderman ,Village of Loreauville ,P. O. Box 336,,Loreauville,LA,70552,337-229-8306,IBERIA,Mark Landry,P. O. Box 564,,Loreauville,LA,70552,5,337-229-8425,W,M,R,310,12/31/2012,1/1/2009,Mr. Landry +Alderman ,Village of Loreauville ,P. O. Box 336,,Loreauville,LA,70552,337-229-8306,IBERIA,Sandy J. Sonnier,P.O. Box 230,,Loreauville,LA,70552,5,337-229-4491,W,M,R,310,12/31/2012,1/1/2009,Ms. Sonnier +Alderman ,"Ward 1, City of Jeanerette ",P. O. Box 209,,Jeanerette,LA,70544,337-276-4587,IBERIA,Betty M. Bouie,605 Martin Luther King Dr.,,Jeanerette,LA,70544,5,337-276-5508,B,F,D,310,6/30/2011,7/1/2007,Ms. Bouie +Alderman ,"Ward 2, City of Jeanerette ",P. O. Box 209,,Jeanerette,LA,70544,337-276-4587,IBERIA,Vernell Mitchell,P.O. Box 622,,Jeanerette,LA,70544,5,337-276-5648,B,F,D,310,6/30/2011,7/1/2007,Mr. Mitchell +Alderman ,"Ward 3, City of Jeanerette ",P. O. Box 209,,Jeanerette,LA,70544,337-276-4587,IBERIA,"Sanders ""Sandy"" Derise",220 Main St.,,Jeanerette,LA,70544,5,337-276-4017,W,M,D,310,6/30/2011,7/1/2007,Ms. Derise +Alderman ,"Ward 4, City of Jeanerette ",P. O. Box 209,,Jeanerette,LA,70544,337-276-4587,IBERIA,Kenneth Kern,515 Louisiana St.,,Jeanerette,LA,70544,5,337-276-4389,W,M,R,310,6/30/2011,7/1/2007,Mr. Kern +Council Member ,"District 1, City of New Iberia ","457 E. Main St., Ste.300",,New Iberia,LA,70560-3700,337-369-2300,IBERIA,Therese M. Segura,709 Darby Ln.,,New Iberia,LA,70560,5,337-367-5118,W,F,D,310,12/31/2012,1/1/2009,Mr. Segura +Council Member ,"District 2, City of New Iberia ","457 E. Main St., Ste.300",,New Iberia,LA,70560-3700,337-369-2300,IBERIA,Peggy L. Gerac,624 Hebert St.,,New Iberia,LA,70560,5,337-364-0357,B,F,D,310,12/31/2012,1/1/2009,Ms. Gerac +Council Member ,"District 3, City of New Iberia ","457 E. Main St., Ste.300",,New Iberia,LA,70560-3700,337-369-2300,IBERIA,Robert J. Suire,302 E. Dale St.,,New Iberia,LA,70560,5,337-367-1185,W,M,D,310,12/31/2012,1/1/2009,Mr. Suire +Council Member ,"District 4, City of New Iberia ","457 E. Main St., Ste.300",,New Iberia,LA,70560-3700,337-369-2300,IBERIA,David Merrill,301 Caroline St.,,New Iberia,LA,70560,5,337-251-3400,B,M,D,310,12/31/2012,1/1/2009,Mr. Merrill +Council Member ,"District 5, City of New Iberia ","457 E. Main St., Ste.300",,New Iberia,LA,70560-3700,337-369-2300,IBERIA,"Raymond ""Shoe-Do"" Lewis",1230 Angie St.,,New Iberia,LA,70560,5,337-365-7695,B,M,D,310,12/31/2012,1/1/2009,Mr. Lewis +Council Member ,"District 6, City of New Iberia ","457 E. Main St., Ste.300",,New Iberia,LA,70560-3700,337-369-2300,IBERIA,Calvin Begnaud,605 Astor Place Dr.,,New Iberia,LA,70563,5,337-364-4976,W,M,D,310,12/31/2012,1/1/2009,Mr. Begnaud +DPEC Member ,at Large ,,,,LA,,,IBERVILLE,"Kevin ""Butchie"" Ambeau",P.O. Box 33,,Carville,LA,70721,5,225-642-0444,B,M,D,54,2/20/2012,2/20/2008,Mr. Ambeau +DPEC Member ,at Large ,,,,LA,,,IBERVILLE,"Michael ""Chief"" Barbee",58110 LaBauve Ave.,,Plaquemine,LA,70764,5,225-687-5310,W,M,D,54,2/20/2012,2/20/2008,Mr. Barbee +DPEC Member ,at Large ,,,,LA,,,IBERVILLE,"Edward ""Lucky"" Songy, Jr.",P.O. Box 148,,Plaquemine,LA,70765,5,225-687-2644,W,M,D,54,2/20/2012,2/20/2008,Mr. Songy +DPEC Member ,at Large ,,,,LA,,,IBERVILLE,Peggy Young,P.O. Box 662,,Plaquemine,LA,70765,5,225-659-2834,B,F,D,54,2/20/2012,2/20/2008,Ms. Young +DPEC Member ,District 1 ,,,,LA,,,IBERVILLE,,,,,,,0,,,,,56,,, +DPEC Member ,District 2 ,,,,LA,,,IBERVILLE,,,,,,,0,,,,,56,,, +DPEC Member ,District 3 ,,,,LA,,,IBERVILLE,,,,,,,0,,,,,56,,, +DPEC Member ,District 4 ,,,,LA,,,IBERVILLE,,,,,,,0,,,,,56,,, +DPEC Member ,District 5 ,,,,LA,,,IBERVILLE,,,,,,,0,,,,,56,,, +DPEC Member ,District 6 ,,,,LA,,,IBERVILLE,,,,,,,0,,,,,56,,, +DPEC Member ,District 7 ,,,,LA,,,IBERVILLE,"Brandon ""Troy"" Mellieon",58475 Nats Aly,,Plaquemine,LA,70764,5,225-685-1091,B,M,D,56,2/20/2012,2/20/2008,Mr. Mellieon +DPEC Member ,District 8 ,,,,LA,,,IBERVILLE,Daryl Tempanaro,57988 Borruano Dr.,,Plaquemine,LA,70764,5,225-687-9413,W,M,D,56,2/20/2012,2/20/2008,Mr. Tempanaro +DPEC Member ,District 9 ,,,,LA,,,IBERVILLE,"J. G. ""Jade"" Dupont, III",20340 Sallie Dr.,,Plaquemine,LA,70764,5,225-687-7891,W,M,D,56,2/20/2012,2/20/2008,Mr. Dupont +DPEC Member ,District 10 ,,,,LA,,,IBERVILLE,,,,,,,0,,,,,56,,, +DPEC Member ,District 11 ,,,,LA,,,IBERVILLE,,,,,,,0,,,,,56,,, +DPEC Member ,District 12 ,,,,LA,,,IBERVILLE,,,,,,,0,,,,,56,,, +DPEC Member ,District 13 ,,,,LA,,,IBERVILLE,,,,,,,0,,,,,56,,, +RPEC Member ,at Large ,,,,LA,,,IBERVILLE,Karen Fitzgerald,21960 Talbot Dr.,,Plaquemine,LA,70764,5,225-687-8453,W,F,R,64,2/20/2012,2/20/2008, +RPEC Member ,at Large ,,,,LA,,,IBERVILLE,Vanessa Banta Moore,22560 Talbot Dr.,,Plaquemine,LA,70764,5,225-687-8584,W,F,R,64,2/20/2012,2/20/2008,Ms. Moore +RPEC Member ,District 1 ,,,,LA,,,IBERVILLE,,,,,,,0,,,,,66,,, +RPEC Member ,District 2 ,,,,LA,,,IBERVILLE,,,,,,,0,,,,,66,,, +RPEC Member ,District 3 ,,,,LA,,,IBERVILLE,,,,,,,0,,,,,66,,, +RPEC Member ,District 4 ,,,,LA,,,IBERVILLE,,,,,,,0,,,,,66,,, +RPEC Member ,District 5 ,,,,LA,,,IBERVILLE,,,,,,,0,,,,,66,,, +RPEC Member ,District 6 ,,,,LA,,,IBERVILLE,,,,,,,0,,,,,66,,, +RPEC Member ,District 7 ,,,,LA,,,IBERVILLE,,,,,,,0,,,,,66,,, +RPEC Member ,District 8 ,,,,LA,,,IBERVILLE,,,,,,,0,,,,,66,,, +RPEC Member ,District 9 ,,,,LA,,,IBERVILLE,,,,,,,0,,,,,66,,, +RPEC Member ,District 10 ,,,,LA,,,IBERVILLE,,,,,,,0,,,,,66,,, +RPEC Member ,District 11 ,,,,LA,,,IBERVILLE,,,,,,,0,,,,,66,,, +RPEC Member ,District 12 ,,,,LA,,,IBERVILLE,,,,,,,0,,,,,66,,, +RPEC Member ,District 13 ,,,,LA,,,IBERVILLE,,,,,,,0,,,,,66,,, +Sheriff ,,P. O. Box 231,,Plaquemine,LA,70765,225-687-5100,IBERVILLE,Brent Allain,P.O. Box 231,,Plaquemine,LA,70765,5,225-687-3747,W,M,D,225,6/30/2012,7/1/2008,Sheriff Allain +Clerk of Court ,,P. O. Box 423,,Plaquemine,LA,70765,225-687-5160,IBERVILLE,"J. G.""Bubbie"" Dupont, Jr.",P.O. Box 423,,Plaquemine,LA,70765,5,225-687-7891,W,M,D,230,6/30/2012,7/1/2008,Mr. Dupont +Assessor ,,58050 Meriam St.,,Plaquemine,LA,70765,225-687-3568,IBERVILLE,"""Randy"" Sexton",P.O. Box 419,,Rosedale,LA,70772,5,225-648-2392,W,M,D,235,12/31/2012,1/1/2009,Mr. Sexton +Coroner ,,58038 Fort Street,,Plaquemine,LA,70764,225-687-8555,IBERVILLE,Steven E. Lee,P.O. Box 927,,Plaquemine,LA,70765,5,225-978-1265,W,M,D,240,3/25/2012,3/24/2008,Mr. Lee +Parish President ,,P.O. Box 389,,Plaquemine,LA,70765-0389 ,225-687-3257,IBERVILLE,"Jessel ""Mitchell"" Ourso, Jr.",24070 Kirtley Dr.,,Plaquemine,LA,70764,5,225-659-7143,W,M,D,243,1/9/2012,1/14/2008,Mr. Ourso +Council Member ,District 1 ,P. O. Box 389,,Plaquemine,LA,,225-687-3257,IBERVILLE,"Warren ""T-Notchie"" Taylor",32250 Bowie Street,,White Castle,LA,70788,5,225-545-3197,B,M,D,245,1/9/2012,1/14/2008,Mr. Taylor +Council Member ,District 2 ,P. O. Box 389,,Plaquemine,LA,70765-0389 ,225-687-3257,IBERVILLE,Mitchel J. Ourso,56950 Ourso Road,,White Castle,LA,70788,5,225-545-2422,W,M,D,245,1/9/2012,1/14/2008,Mr. Ourso +Council Member ,District 3 ,P. O. Box 389,,Plaquemine,LA,70765-0389 ,225-687-3257,IBERVILLE,"Henry ""Bucket"" Scott",P.O. Box 151,,White Castle,LA,70788,5,225-413-1438,B,M,D,245,1/9/2012,1/14/2008,Mr. Scott +Council Member ,District 4 ,P. O. Box 389,,Plaquemine,LA,70765-0389 ,225-687-3257,IBERVILLE,"Leonard ""Buck"" Jackson",P.O. Box 124,,Carville,LA,70721,5,225-776-1753,B,M,D,245,1/9/2012,1/14/2008,Mr. Jackson +Council Member ,District 5 ,P. O. Box 389,,Plaquemine,LA,70765-0389 ,225-687-3257,IBERVILLE,"Edwin M. ""Ed"" Reeves, Jr.",58680 St. Clement Ave.,,Plaquemine,LA,70764,5,225-687-9073,W,M,D,245,1/9/2012,1/14/2008,Mr. Reeves +Council Member ,District 6 ,P. O. Box 389,,Plaquemine,LA,70765-0389 ,225-687-3257,IBERVILLE,"Salaris ""Sal"" Butler",24710 Hwy. #1,,Plaquemine,LA,70764,5,225-776-1811,B,M,D,245,1/9/2012,1/14/2008,Ms. Butler +Council Member ,District 7 ,P. O. Box 389,,Plaquemine,LA,70765-0389 ,225-687-3257,IBERVILLE,"Howard Oubre, Jr.",58886 Allen St.,,Plaquemine,LA,70764,5,225-776-5500,B,M,D,245,1/9/2012,1/14/2008,Mr. Oubre +Council Member ,District 8 ,P. O. Box 389,,Plaquemine,LA,70765-0389 ,225-687-3257,IBERVILLE,"Eugene P. Stevens, Jr.",57973 Borruano Dr.,,Plaquemine,LA,70764,5,225-687-1724,W,M,D,245,1/9/2012,1/14/2008,Mr. Stevens +Council Member ,District 9 ,P. O. Box 389,,Plaquemine,LA,70765-0389 ,225-687-3257,IBERVILLE,Terry J. Bradford,24520 Kirtley Dr.,,Plaquemine,LA,70764,5,225-603-4802,W,M,D,245,1/9/2012,1/14/2008,Mr. Bradford +Council Member ,District 10 ,P. O. Box 389,,Plaquemine,LA,70765-0389 ,225-687-3257,IBERVILLE,"Louis ""Pete"" Kelley, Jr.",65785 J.R. Drive,,Plaquemine,LA,70764,5,225-659-7790,W,M,D,245,1/9/2012,1/14/2008,Mr. Kelley +Council Member ,District 11 ,P. O. Box 389,,Plaquemine,LA,70765-0389 ,225-687-3257,IBERVILLE,"""Tim"" Vallet",77290 McBay Dr.,,Grosse Tete,LA,70740,5,225-648-2784,W,M,D,245,1/9/2012,1/14/2008,Mr. Vallet +Council Member ,District 12 ,P. O. Box 389,,Plaquemine,LA,70765-0389 ,225-687-3257,IBERVILLE,"""Matt"" Jewell",P.O. Box 596,,Maringouin,LA,70757,5,225-324-6951,W,M,D,245,1/9/2012,1/14/2008,Mr. Jewell +Council Member ,District 13 ,P. O. Box 389,,Plaquemine,LA,70765-0389 ,225-687-3257,IBERVILLE,Wayne M. Roy,6995 Bayou Paul Rd.,,St. Gabriel,LA,70776,5,225-642-9724,W,M,D,245,1/9/2012,1/14/2008,Mr. Roy +City Judge ,"City Court, City of Plaquemine ",P. O. Box 1017,,Plaquemine,LA,70764,225-687-7236,IBERVILLE,"Michael M. Distefano, Sr.",P.O. Box 361,,Plaquemine,LA,70765,5,225-385-4477,W,M,D,250,12/31/2014,1/1/2009,Judge Distefano +City Marshal ,"City Court, City of Plaquemine ",P. O. Box 1017,,Plaquemine,LA,70764,225-687-7236,IBERVILLE,"S.J. ""Bronco"" Wilbert",P.O. Box 1029,,Plaquemine,LA,70765,5,225-687-2514,W,M,D,250,12/31/2014,1/1/2009,Marshal Wilbert +Member of School Board ,District A ,P. O. Box 151,,Plaquemine,LA,70765-0151 ,225-687-4341,IBERVILLE,Stanley Washington,P.O. Box 524,,Maringouin,LA,70757,5,225-625-3004,B,M,D,255,12/31/2010,1/1/2007,Mr. Washington +Member of School Board ,District B ,P. O. Box 151,,Plaquemine,LA,70765-0151 ,225-687-4341,IBERVILLE,"David ""Worm"" Daigle",77505 Wille Dr.,,Grosse Tete,LA,70740,5,225-648-3149,W,M,D,255,12/31/2010,1/1/2007,Mr. Daigle +Member of School Board ,District C ,P. O. Box 151,,Plaquemine,LA,70765-0151 ,225-687-4341,IBERVILLE,Glyna Mendoza Kelley,65785 JR Dr.,,Plaquemine,LA,70764,5,225-659-7790,W,F,D,255,12/31/2010,1/1/2007,Ms. Kelley +Member of School Board ,District D ,P. O. Box 151,,Plaquemine,LA,70765-0151 ,225-687-4341,IBERVILLE,"Michael J. Hebert, Jr.",25320 Hwy. #77,,Plaquemine,LA,70764,5,225-659-1240,W,M,D,255,12/31/2010,1/1/2007,Mr. Hebert +Member of School Board ,District E ,P. O. Box 151,,Plaquemine,LA,70765-0151 ,225-687-4341,IBERVILLE,Paul Distefano,P.O. Box 361,,Plaquemine,LA,70764,5,225-687-9229,W,M,D,255,12/31/2010,1/1/2007,Mr. Distefano +Member of School Board ,District F ,P. O. Box 151,,Plaquemine,LA,70765-0151 ,225-687-4341,IBERVILLE,"Michael ""Chief"" Barbee",58110 LaBauve Ave.,,Plaquemine,LA,70764,5,225-687-5310,O,M,D,255,12/31/2010,1/1/2007,Mr. Barbee +Member of School Board ,District G ,P. O. Box 151,,Plaquemine,LA,70765-0151 ,225-687-4341,IBERVILLE,"Thomas ""Tom"" Delahaye",58425 St. Clement Ave.,,Plaquemine,LA,70764,5,225-687-8924,W,M,D,255,12/31/2010,1/1/2007,Mr. Delahaye +Member of School Board ,District H ,P. O. Box 151,,Plaquemine,LA,70765-0151 ,225-687-4341,IBERVILLE,Dorothy R. Sansoni,23730 Cypress St.,,Plaquemine,LA,70764,5,225-687-4068,B,F,D,255,12/31/2010,1/1/2007,Ms. Sansoni +Member of School Board ,District I ,P. O. Box 151,,Plaquemine,LA,70765-0151 ,225-687-4341,IBERVILLE,Yolanda Butler Laws,24705 Hebert St.,,Plaquemine,LA,70764,5,225-802-2022,B,F,D,255,12/31/2010,1/1/2007,Ms. Laws +Member of School Board ,District J ,P. O. Box 151,,Plaquemine,LA,70765-0151 ,225-687-4341,IBERVILLE,Brian Willis,59590-B Belleview Rd.,,Plaquemine,LA,70764,5,225-687-2535,W,M,D,255,12/31/2010,1/1/2007,Mr. Willis +Member of School Board ,District K ,P. O. Box 151,,Plaquemine,LA,70765-0151 ,225-687-4341,IBERVILLE,Nancy T. Broussard,610 Pecan Dr.,,St. Gabriel,LA,70776,5,225-642-8622,W,F,,255,12/31/2010,1/1/2007,Ms. Broussard +Member of School Board ,District L ,P. O. Box 151,,Plaquemine,LA,70765-0151 ,225-687-4341,IBERVILLE,"Freddie ""Sam"" Molden, III",P.O. Box 266,,White Castle,LA,70788,5,225-545-8116,B,M,D,255,12/31/2010,1/1/2007,Mr. Molden +Member of School Board ,District M ,P. O. Box 151,,Plaquemine,LA,70765-0151 ,225-687-4341,IBERVILLE,Melvin Lodge,3665 Grenada Dr.,,St. Gabriel,LA,70776,5,225-642-5184,B,M,D,255,12/31/2010,1/1/2007,Mr. Lodge +Member of School Board ,District N ,P. O. Box 151,,Plaquemine,LA,70765-0151 ,225-687-4341,IBERVILLE,"Albertha Davis ""Alp"" Hasten",32365 Doc Dean St.,,White Castle,LA,70788,5,225-545-5520,B,F,D,255,12/31/2010,1/1/2007,Ms. Hasten +Member of School Board ,District O ,P. O. Box 151,,Plaquemine,LA,70765-0151 ,225-687-4341,IBERVILLE,Darlene M. Ourso,57030 Ourso Rd.,,White Castle,LA,70788,5,225-545-8961,W,F,D,255,12/31/2010,1/1/2007,Ms. Ourso +Justice of the Peace ,Justice of the Peace Ward 1 ,34000 Bowie St.,,White Castle,LA,70788,225-545-3034,IBERVILLE,"Roland ""Roach"" Fremin",34000 Bowie St.,,White Castle,LA,70788,5,225-545-3034,W,M,D,265,12/31/2014,1/1/2009,Mr. Fremin +Justice of the Peace ,Justice of the Peace Ward 2 ,P. O. Box 35,,Carville,LA,70721,225-642-9692,IBERVILLE,"Jimmy Green, III",P.O. Box 451,,Carville,LA,70721,5,225-319-7101,B,M,,265,12/31/2014,1/1/2009,Mr. Green +Justice of the Peace ,Justice of the Peace Ward 3 ,24100 Sebastian St.,,Plaquemine,LA,70764,225-687-1235,IBERVILLE,"Steve C. ""Pine"" Smith",24100 Sebastian St.,,Plaquemine,LA,70764,5,225-687-1235,W,M,D,265,12/31/2014,1/1/2009,Mr. Smith +Justice of the Peace ,Justice of the Peace Ward 4 ,P. O. Box 1272,,Plaquemine,LA,70765,225-776-3053,IBERVILLE,Mark Migliacio,58465 Island Dr.,,Plaquemine,LA,70764,5,225-776-3053,W,M,D,265,12/31/2014,1/1/2009,Mr. Migliacio +Justice of the Peace ,Justice of the Peace Ward 5 ,25245 Patreau Lane,,Plaquemine,LA,70764,225-659-2272,IBERVILLE,Justin Kane Mendoza,61660 Bayou Rd.,,Plaquemine,LA,70764,5,225-776-5171,W,M,D,265,12/31/2014,1/1/2009,Mr. Mendoza +Justice of the Peace ,Justice of the Peace Ward 6 ,P.O. Box 703,,Maringouin,LA,70757,225-625-2383,IBERVILLE,"""Jackie"" Wesley",P.O. Box 185,,Maringouin,LA,70757,5,225-625-2383,B,F,D,265,12/31/2014,1/1/2009,Ms. Wesley +Constable ,Justice of the Peace Ward 1 ,58720 Hymel St.,,White Castle,LA,70788,225-545-8597,IBERVILLE,"Joseph ""Joe"" Richard",32590 Graham St.,,White Castle,LA,70788,5,225-545-2463,W,M,D,267,12/31/2014,1/1/2009,Mr. Richard +Constable ,Justice of the Peace Ward 2 ,P.O. Box 542,,Sunshine,LA,70780,225-642-0031,IBERVILLE,"Lloyd ""Big Red"" Snowten",P.O. Box 573,,St. Gabriel,LA,70776,5,225-642-8546,B,M,D,267,12/31/2014,1/1/2009,Mr. Snowten +Constable ,Justice of the Peace Ward 3 ,59055 Darby Ave.,,Plaquemine,LA,70764,225-687-9568,IBERVILLE,"""Tommy"" Tucker",57935 Desobry St.,,Plaquemine,LA,70764,5,225-687-9521,W,M,D,267,12/31/2014,1/1/2009,Mr. Tucker +Constable ,Justice of the Peace Ward 4 ,23462 Eden St.,,Plaquemine,LA,70764,225-687-5252,IBERVILLE,"John ""JB"" Barker",23462 Eden St.,,Plaquemine,LA,70764,5,225-776-0050,W,M,D,267,12/31/2014,1/1/2009,Mr. Barker +Constable ,Justice of the Peace Ward 5 ,66285 Spur 75,,Plaquemine,LA,70764,225-569-7049,IBERVILLE,"Ronald ""Ronnie"" Hebert",66285 Spur 75,,Plaquemine,LA,70764,5,225-659-7049,W,M,D,267,12/31/2014,1/1/2009,Mr. Hebert +Constable ,Justice of the Peace Ward 6 ,21655 Hwy. 77,,Grosse Tete,LA,70740,225-648-2766,IBERVILLE,Larry Johnson,13615 Hwy. 411,,Maringouin,LA,70757,5,225-625-3213,B,M,D,267,12/31/2014,1/1/2009,Mr. Johnson +Mayor ,City of Plaquemine ,P. O. Box 675,,Plaquemine,LA,,225-687-3661,IBERVILLE,"Mark ""Tony"" Gulotta",24020 Eden St.,,Plaquemine,LA,70764,5,225-687-0113,W,M,D,300,12/31/2012,1/1/2009,Mayor Gulotta +Mayor ,City of St. Gabriel ,5035 Iberville St.,,St. Gabriel,LA,,225-642-9600,IBERVILLE,"George L. Grace, Sr.",1625 Besson Ln.,,Sunshine,LA,70780,5,225-615-5913,B,M,D,300,6/30/2011,7/1/2007,Mayor +Mayor ,Town of Maringouin ,P. O. Box 10,,Maringouin,LA,,225-625-2630,IBERVILLE,John F. Overton,P.O. Box 624,,Maringouin,LA,70757,5,225-625-3785,B,M,D,300,12/31/2010,1/1/2007,Mr. Overton +Mayor ,Town of White Castle ,P. O. Box 488,,White Castle,LA,,225-545-3012,IBERVILLE,"Maurice ""Big Moe"" Brown",32330 Chairmonte St.,,White Castle,LA,70788,5,225-545-8448,B,M,D,300,12/31/2010,1/1/2007,Mayor +Mayor ,Village of Grosse Tete ,P. O. Box 98,,Grosse Tete,LA,,225-648-2131,IBERVILLE,"Michael D. Chauffe, Sr.",P.O. Box 151,,Grosse Tete,LA,70740,5,225-648-2431,W,M,D,300,12/31/2012,1/1/2009,Mayor Chauffe +Mayor ,Village of Rosedale ,P. O. Box 167,,Rosedale,LA,,225-648-2333,IBERVILLE,"Lawrence ""Football"" Badeaux",P.O. Box 276,,Rosedale,LA,70772,5,225-776-7032,W,M,D,300,12/31/2012,1/1/2009,Mayor Badeaux +Chief of Police ,City of St. Gabriel ,5035 Iberville St.,,St. Gabriel,LA,70776,225-642-9600,IBERVILLE,"Kevin ""Butchie"" Ambeau",P.O. Box 33,,Carville,LA,70721,5,225-642-0444,B,M,D,305,6/30/2011,7/1/2007,Chief Ambeau +Chief of Police ,Town of Maringouin ,P. O. Box 10,,Maringouin,LA,70757-0010 ,225-625-2630,IBERVILLE,"John ""Big John"" Simien",P.O. Box 202,,Maringouin,LA,70757,5,225-892-6409,B,M,D,305,12/31/2010,1/1/2007,Mr. Simien +Chief of Police ,Town of White Castle ,P. O. Box 488,,White Castle,LA,70788,225-545-3012,IBERVILLE,Mario D. Brown,P.O. Box 279,,White Castle,LA,70788,5,225-545-8844,B,M,D,305,12/31/2010,1/1/2007,Mr. Brown +Chief of Police ,Village of Grosse Tete ,P. O. Box 98,,Grosse Tete,LA,70740,225-648-2131,IBERVILLE,"""Tommy"" Dardenne",18070 Bayou Rd.,,Grosse Tete,LA,70740,5,225-648-2148,W,M,D,305,12/31/2012,1/1/2009,Chief Dardenne +Chief of Police ,Village of Rosedale ,P. O. Box 167,,Rosedale,LA,70772,225-648-2333,IBERVILLE,"""Mike"" Sparks",P.O. Box 411,,Rosedale,LA,70772,5,225-648-2815,W,M,D,305,12/31/2012,1/1/2009,Chief Sparks +Marshal ,City of Plaquemine ,P. O. Box 675,,Plaquemine,LA,70765,225-687-3661,IBERVILLE,Orian Gulotta,58040 Main St.,,Plaquemine,LA,70764,5,225-687-4943,W,M,D,305,12/31/2012,1/1/2009,Mr. Gulotta +Alderman ,"Division A, Village of Rosedale ",P. O. Box 167,,Rosedale,LA,70772,225-648-2333,IBERVILLE,Kevin Gantt,16345 Sidney Rd.,,Rosedale,LA,70772,5,225-648-2374,W,M,D,310,12/31/2012,1/1/2009,Mr. Gantt +Alderman ,"Division B, Village of Rosedale ",P. O. Box 167,,Rosedale,LA,70772,225-648-2333,IBERVILLE,"Randel ""Panco"" Badeaux",P.O. Box 322,,Rosedale,LA,70772,5,225-485-3444,W,M,D,310,12/31/2012,1/1/2009,Mr. Badeaux +Alderman ,"Division C, Village of Rosedale ",P. O. Box 167,,Rosedale,LA,70772,225-648-2333,IBERVILLE,Dana Nereaux Alexander,16195 Deer Buck Run,,Rosedale,LA,70772,5,225-343-0759,W,F,O,310,12/31/2012,1/1/2009,Ms. Alexander +Alderman ,Town of Maringouin ,P. O. Box 10,,Maringouin,LA,70757-0010 ,225-625-2630,IBERVILLE,"Kirkland Anderson, Sr.",P.O. Box 684,,Maringouin,LA,70757,5,225-625-3530,B,M,D,310,12/31/2010,1/1/2007,Mr. Anderson +Alderman ,Town of Maringouin ,P. O. Box 10,,Maringouin,LA,70757-0010 ,225-625-2630,IBERVILLE,"Samuel C. ""Sammy"" Collura",P.O. Box 413,,Maringouin,LA,70757,5,225-625-2159,W,M,D,310,12/31/2010,1/1/2007,Mr. Collura +Alderman ,Town of Maringouin ,P. O. Box 10,,Maringouin,LA,70757-0010 ,225-625-2630,IBERVILLE,"Edward James, Jr.",P.O. Box 103,,Maringouin,LA,70757,5,225-405-8021,B,M,D,310,12/31/2010,1/1/2007,Mr. James +Alderman ,Town of Maringouin ,P. O. Box 10,,Maringouin,LA,70757-0010 ,225-625-2630,IBERVILLE,Demi Vorise,P.O. Box 697,,Maringouin,LA,70757,5,225-625-2057,B,F,D,310,12/31/2010,1/1/2007,Ms. Vorise +Alderman ,Town of Maringouin ,P. O. Box 10,,Maringouin,LA,70757-0010 ,225-625-2630,IBERVILLE,Charles E. Wright,P.O. Box 403,,Maringouin,LA,70757,5,225-625-3433,B,M,D,310,12/31/2010,1/1/2007,Mr. Wright +Alderman ,Town of White Castle ,P. O. Box 488,,White Castle,LA,70788,225-545-3012,IBERVILLE,"John ""Plug"" Barlow",32565 Willow St.,,White Castle,LA,70788,5,225-545-4017,W,M,D,310,12/31/2010,1/1/2007,Mr. Barlow +Alderman ,Town of White Castle ,P. O. Box 488,,White Castle,LA,70788,225-545-3012,IBERVILLE,"Erick ""Duck"" Batiste",32415 Doc Dean St.,,White Castle,LA,70788,5,225-545-3307,B,M,,310,12/31/2010,1/1/2007,Mr. Batiste +Alderman ,Town of White Castle ,P. O. Box 488,,White Castle,LA,70788,225-545-3012,IBERVILLE,"Jonathan ""Jon-Kris"" Greene",32345 Ray St.,,White Castle,LA,70788,5,225-328-5099,B,M,D,310,12/31/2010,1/1/2007,Mr. Greene +Alderman ,Town of White Castle ,P. O. Box 488,,White Castle,LA,70788,225-545-3012,IBERVILLE,"Gerald ""Jermarr"" Williams",32750 Bowie St.,,White Castle,LA,70788,5,225-776-2265,B,M,D,310,12/31/2010,1/1/2007,Mr. Williams +Alderman ,Town of White Castle ,P. O. Box 488,,White Castle,LA,70788,225-545-3012,IBERVILLE,Garnell Young,P.O. Box 353,,White Castle,LA,70788,5,225-545-8623,B,M,D,310,12/31/2010,1/1/2007,Mr. Young +Alderman ,Village of Grosse Tete ,P. O. Box 98,,Grosse Tete,LA,70740,225-648-2131,IBERVILLE,Kyle Booksh,P.O. Box 325,,Grosse Tete,LA,70740,5,225-648-2974,W,M,R,310,12/31/2012,1/1/2009,Mr. Booksh +Alderman ,Village of Grosse Tete ,P. O. Box 98,,Grosse Tete,LA,70740,225-648-2131,IBERVILLE,C. Richard David,18005 Sidney Rd.,,Grosse Tete,LA,70740,5,225-648-2977,W,M,R,310,12/31/2012,1/1/2009,Mr. David +Alderman ,Village of Grosse Tete ,P. O. Box 98,,Grosse Tete,LA,70740,225-648-2131,IBERVILLE,Juanita J. Hill,P.O. Box 223,,Grosse Tete,LA,70740,5,225-648-2443,B,F,D,310,12/31/2012,1/1/2009,Ms. Hill +Council Member,City of St. Gabriel,P. O. Box 389,,Plaquemine,LA,70765,225-642-9600,IBERVILLE,"Deborah R. ""Debbie"" Alexander",P.O. Box 562,,St. Gabriel,LA,70776,5,225-642-0391,B,F,D,310,6/30/2011,7/1/2007,Ms. Alexander +Council Member,City of St. Gabriel,P. O. Box 389,,Plaquemine,LA,70765,225-642-9600,IBERVILLE,Flora J. Danielfield,4975 Maryland St.,,St. Gabriel,LA,70776,5,225-319-2192,B,F,D,310,6/30/2011,7/1/2007,Ms. Danielfield +Council Member,City of St. Gabriel,P. O. Box 389,,Plaquemine,LA,70765,225-642-9600,IBERVILLE,"Freddie ""Carl"" Frazier, Sr.",P.O. Box 42,,St. Gabriel,LA,70776,5,225-642-0037,B,M,D,310,6/30/2011,7/1/2007,Mr. Frazier +Council Member,City of St. Gabriel,P. O. Box 389,,Plaquemine,LA,70765,225-642-9600,IBERVILLE,"Melvin L. Hasten, Sr.",P.O. Box 54,,Carville,LA,70721,5,225-319-2244,B,M,D,310,6/30/2011,7/1/2007,Mr. Hasten +Council Member,City of St. Gabriel,P. O. Box 389,,Plaquemine,LA,70765,225-642-9600,IBERVILLE,"Ralph ""Big Guy"" Johnson",4907 Landry St.,,St. Gabriel,LA,70776,5,225-572-4883,B,M,D,310,6/30/2011,7/1/2007,Mr. Johnson +Selectman ,"District I, City of Plaquemine ",P. O. Box 675,,Plaquemine,LA,70765,225-687-3661,IBERVILLE,"Lindon A. ""Lin"" Rivet, Jr.",23160 Short St.,,Plaquemine,LA,70764,5,225-687-9417,W,M,D,310,12/31/2012,1/1/2009,Mr. Rivet +Selectman ,"District II, City of Plaquemine ",P. O. Box 675,,Plaquemine,LA,70765,225-687-3661,IBERVILLE,Oscar S. Mellion,P.O. Box 265,,Plaquemine,LA,70765,5,504-416-1254,B,M,D,310,12/31/2012,1/1/2009,Mr. Mellion +Selectman ,"District III, City of Plaquemine ",P. O. Box 675,,Plaquemine,LA,70765,225-687-3661,IBERVILLE,"Ralph Stassi, Jr.",58330 Elm St.,,Plaquemine,LA,70764,5,225-687-6231,W,M,D,310,12/31/2012,1/1/2009,Mr. Stassi +Selectman ,"District IV, City of Plaquemine ",P. O. Box 675,,Plaquemine,LA,70765,225-687-3661,IBERVILLE,"Michael ""Mickey"" Rivet",58455 Canal St.,,Plaquemine,LA,70764,5,225-954-6462,W,M,D,310,12/31/2012,1/1/2009,Mr. Rivet +Selectman ,"District V, City of Plaquemine ",P. O. Box 675,,Plaquemine,LA,70765,225-687-3661,IBERVILLE,"Timothy L. ""Timmy"" Martinez",59115 Laurstin Ln.,,Plaquemine,LA,70764,5,225-687-6648,W,M,D,310,12/31/2012,1/1/2009,Mr. Martinez +Selectman ,"District VI, City of Plaquemine ",P. O. Box 675,,Plaquemine,LA,70765,225-687-3661,IBERVILLE,"Jimmie ""Fatboy"" Randle",23920 Baytown St.,,Plaquemine,LA,70764,5,225-687-4814,B,M,D,310,12/31/2012,1/1/2009,Mr. Randle +DPEC Member ,at Large ,,,,LA,,,JACKSON,Bobby L. Culpepper,4500 Walker Rd.,,Jonesboro,LA,71251,5,318-259-4184,W,M,D,54,2/20/2012,2/20/2008,Mr. Culpepper +DPEC Member ,District 1 ,,,,LA,,,JACKSON,,,,,,,0,,,,,56,,, +DPEC Member ,District 2 ,,,,LA,,,JACKSON,,,,,,,0,,,,,56,,, +DPEC Member ,District 3 ,,,,LA,,,JACKSON,,,,,,,0,,,,,56,,, +DPEC Member ,District 4 ,,,,LA,,,JACKSON,,,,,,,0,,,,,56,,, +DPEC Member ,District 5 ,,,,LA,,,JACKSON,,,,,,,0,,,,,56,,, +DPEC Member ,District 6 ,,,,LA,,,JACKSON,,,,,,,0,,,,,56,,, +DPEC Member ,District 7 ,,,,LA,,,JACKSON,,,,,,,0,,,,,56,,, +RPEC Member ,at Large ,,,,LA,,,JACKSON,"""Dusty"" Hampton",116 Ave. B,,Jonesboro,LA,71251,5,318-259-6677,W,M,R,64,2/20/2012,2/20/2008,Mr. Hampton +RPEC Member ,at Large ,,,,LA,,,JACKSON,Robin Potts,257 Firewood Rd.,,Jonesboro,LA,71251,5,318-259-2245,W,F,R,64,2/20/2012,2/20/2008,Mr. Potts +RPEC Member ,at Large ,,,,LA,,,JACKSON,"Benton ""Ben"" Young",1300 E. Main St.,,Jonesboro,LA,71251,5,318-259-8323,W,M,R,64,2/20/2012,2/20/2008,Mr. Young +RPEC Member ,Ward 1 ,,,,LA,,,JACKSON,,,,,,,0,,,,,66,,, +RPEC Member ,Ward 2 ,,,,LA,,,JACKSON,,,,,,,0,,,,,66,,, +RPEC Member ,Ward 3 ,,,,LA,,,JACKSON,,,,,,,0,,,,,66,,, +RPEC Member ,Ward 4 ,,,,LA,,,JACKSON,,,,,,,0,,,,,66,,, +RPEC Member ,Ward 5 ,,,,LA,,,JACKSON,Roger Young,114 Southeastern Dr.,,Jonesboro,LA,71251,5,318-395-2211,W,M,R,66,2/20/2012,2/20/2008,Mr. Young +RPEC Member ,Ward 6 ,,,,LA,,,JACKSON,,,,,,,0,,,,,66,,, +RPEC Member ,Ward 7 ,,,,LA,,,JACKSON,Robert Rubens,110 Michigan Ave.,,Jonesboro,LA,71251,5,318-259-4186,W,M,R,66,2/20/2012,2/20/2008,Mr. Rubens +Sheriff ,,"500 E. Court St., Rm. 100",,Jonesboro,LA,71251,318-259-9021,JACKSON,"""Andy"" Brown","500 E. Court St., Rm. 100",,Jonesboro,LA,71251,5,318-259-8758,W,M,D,225,6/30/2012,7/1/2008,Sheriff Brown +Clerk of Court ,,P. O. Box 730,,Jonesboro,LA,71251,318-259-2424,JACKSON,Ann B. Walsworth,P.O. Box 730,,Jonesboro,LA,71251,5,318-259-3561,W,F,D,230,6/30/2012,7/1/2008,Ms. Walsworth +Assessor ,,"500 E. Court, Rm. 101",,Jonesboro,LA,71251,318-259-2151,JACKSON,Eddie G. Gatlin,1231 Hwy 813-3,,Jonesboro,LA,71251,5,318-259-7461,W,M,D,235,12/31/2012,1/1/2009,Mr. Gatlin +Coroner ,,236 Hwy. 505,,Jonesboro,LA,71251,318-259-4106,JACKSON,"""Bill"" Staples",236 Hwy 505,,Jonesboro,LA,71251,5,318-259-2764,W,M,D,240,3/25/2012,3/24/2008,Mr. Staples +Police Juror ,Ward 1 ,"500 East Court Street, Rm. 301",,Jonesboro,LA,,318-259-2361,JACKSON,"""Tom"" Goss",P.O. Box 341,,Quitman,LA,71268,5,318-259-8091,W,M,R,245,1/8/2012,1/14/2008,Mr. Goss +Police Juror ,Ward 2 ,"500 East Court Street, Rm. 301",,Jonesboro,LA,71251,318-259-2361,JACKSON,Eddie Langston,770 Taylor Rd.,,Jonesboro,LA,71251,5,318-259-7448,W,M,D,245,1/8/2012,1/14/2008,Mr. Langston +Police Juror ,Ward 3 ,"500 East Court Street, Rm. 301",,Jonesboro,LA,71251,318-259-2361,JACKSON,Kent Hightower,275 Hickory Ln.,,,LA,71251,5,318-259-8340,W,M,,245,1/8/2012,1/14/2008,Mr. Hightower +Police Juror ,Ward 4 ,"500 East Court Street, Rm. 301",,Jonesboro,LA,71251,318-259-2361,JACKSON,"Nathaniel Zeno, Jr.",1407 Leon Dr.,,Jonesboro,LA,71251,5,318-259-4741,B,M,D,245,1/8/2012,1/14/2008,Mr. Zeno +Police Juror ,Ward 5 ,"500 East Court Street, Rm. 301",,Jonesboro,LA,71251,318-259-2361,JACKSON,Maxie Faye Monroe,802 Leon Dr.,,Jonesboro,LA,71251,5,318-259-7948,B,F,D,245,1/8/2012,1/14/2008,Ms. Monroe +Police Juror ,Ward 6 ,"500 East Court Street, Rm. 301",,Jonesboro,LA,71251,318-259-2361,JACKSON,"Ray Duck, Jr.",256 Traina Rd.,,Jonesboro,LA,71251,5,318-395-2056,W,M,D,245,1/8/2012,1/14/2008,Mr. Duck +Police Juror ,Ward 7 ,"500 East Court Street, Rm. 301",,Jonesboro,LA,71251,318-259-2361,JACKSON,Troy L. Smith,P.O. Box 793,,Hodge,LA,71247,5,318-259-8753,W,M,D,245,1/8/2012,1/14/2008,Mr. Smith +Member of School Board ,District 1 ,P. O. Box 705,,Jonesboro,LA,71251,318-259-4456,JACKSON,"""Bart"" Waggoner",2274 Hwy. 548,,Eros,LA,71238,5,318-249-2261,W,M,D,255,12/31/2010,1/1/2007,Mr. Waggoner +Member of School Board ,District 2 ,P. O. Box 705,,Jonesboro,LA,71251,318-259-4456,JACKSON,Melissa Watts Perry,699 Taylor Rd.,,Jonesboro,LA,71251,5,318-259-3599,W,F,R,255,12/31/2010,1/1/2007,Ms. Perry +Member of School Board ,District 3 ,P. O. Box 705,,Jonesboro,LA,71251,318-259-4456,JACKSON,"Mary ""May"" Saulters",240 Country Ln.,,Quitman,LA,71268,5,318-395-9562,W,F,R,255,12/31/2010,1/1/2007,Ms. Saulters +Member of School Board ,District 4 ,P. O. Box 705,,Jonesboro,LA,71251,318-259-4456,JACKSON,Gerry Mims,P.O. Box 1008,,Hodge,LA,71247,5,318-259-4229,B,M,D,255,12/31/2010,1/1/2007,Mr. Mims +Member of School Board ,District 5 ,P. O. Box 705,,Jonesboro,LA,71251,318-259-4456,JACKSON,Harvey T. Robinson,321 Morocco St.,,Jonesboro,LA,71251,5,318-259-3880,B,M,D,255,12/31/2010,1/1/2007,Mr. Robinson +Member of School Board ,District 6 ,P. O. Box 705,,Jonesboro,LA,71251,318-259-4456,JACKSON,Dennis Clary,156 Pine Hill Rd.,,Quitman,LA,71268,5,318-259-6330,W,M,R,255,12/31/2010,1/1/2007,Mr. Clary +Member of School Board ,District 7 ,P. O. Box 705,,Jonesboro,LA,71251,318-259-4456,JACKSON,Wade McBride,213 Jan Circle,,Jonesboro,LA,71251,5,318-259-9695,W,M,D,255,12/31/2010,10/27/2009,Mr. McBride +Justice of the Peace ,Justice of the Peace District A ,884 N. Antioch,,Quitman,LA,71268,318-259-7492,JACKSON,David Smith,884 North Antioch Rd.,,Quitman,LA,71268,5,318-259-7492,W,M,D,265,12/31/2014,1/1/2009,Mr. Smith +Justice of the Peace ,Justice of the Peace District B ,1138 Rosco Rd.,,Quitman,LA,71268,318-259-9442,JACKSON,Milton S. Bryant,1138 Roscoe Rd.,,Quitman,LA,71268,5,318-259-9442,B,M,,265,12/31/2014,1/1/2009,Mr. Bryant +Justice of the Peace ,Justice of the Peace District C ,P. O. Box 148,,Chatham,LA,71226,318-249-2200,JACKSON,Martha Chambless,6665 Hwy. 34,,Chatham,LA,71226,5,318-249-2200,W,F,D,265,12/31/2014,1/1/2009,Ms. Chambless +Justice of the Peace ,Justice of the Peace District D ,P. O. Box 880,,Hodge,LA,71247,318-259-8773,JACKSON,Buiel L. Magee,P. O. Box 880,,Hodge,LA,71247,5,318-259-8773,W,M,R,265,12/31/2014,1/1/2009,Mr. Magee +Justice of the Peace ,Justice of the Peace District E ,227 Talbot St.,,Jonesboro,LA,71251,318-259-7772,JACKSON,Sharon L. Satcher,P. O. Box 585,,Jonesboro,LA,71251,5,318-259-9736,B,F,D,265,12/31/2014,1/1/2009,Ms. Satcher +Constable ,Justice of the Peace District A ,6126 Beech Springs Rd.,,Quitman,LA,71268,318-259-9286,JACKSON,Claude McMillan,6126 Beech Springs Rd.,,Quitman,LA,71268,5,318-259-9286,W,M,D,267,12/31/2014,1/1/2009,Mr. McMillan +Constable ,Justice of the Peace District B ,2037 Vernon Eros Rd.,,Ruston,LA,71270,318-249-4158,JACKSON,Emma Jones,2037 Vernon-Eros Rd.,,Ruston,LA,71270,5,318-249-4158,W,F,R,267,12/31/2014,1/1/2009,Ms. Jones +Constable ,Justice of the Peace District C ,P.O. Box 148,,Chatham,LA,71226,318-249-2200,JACKSON,Wayne Mosley,P. O. Box 244,,Chatham,LA,71226,5,318-249-2402,W,M,R,267,12/31/2014,1/1/2009,Mr. Mosley +Constable ,Justice of the Peace District D ,210 Jan Cir.,,Jonesboro,LA,71251,318-259-3278,JACKSON,Wilfred Foster,210 Jans Cir.,,Jonesboro,LA,71251,5,318-259-3278,W,M,R,267,12/31/2014,1/1/2009,Mr. Foster +Constable ,Justice of the Peace District E ,1200 Maple St.,,Jonesboro,LA,71251,318-259-7867,JACKSON,John R. Williams,1200 Maple St.,,Jonesboro,LA,71251,5,318-259-7867,B,M,D,267,12/31/2014,1/1/2009,Mr. Williams +Mayor ,Town of Chatham ,P. O. Box 7,,Chatham,LA,,318-249-2541,JACKSON,Herman Lenard,P. O. Box 159,,Chatham,LA,71226,5,318-249-4619,W,M,D,300,12/31/2012,1/1/2009,Mayor Lenard +Mayor,Town of Eros,P. O. Drawer 200,,Eros,LA,71238,318-249-2183,JACKSON,"Candace ""Candy"" Myers",P. O. Box 14,,Eros,LA,71238,5,318-249-2236,W,F,,300,12/31/2012,1/1/2009,Ms. Myers +Mayor ,Town of Jonesboro ,P. O. Box 610,,Jonesboro,LA,,318-259-2385,JACKSON,Leslie Thompson,101 Holly Dr.,,Jonesboro,LA,71251,5,318-259-4772,B,M,D,300,12/31/2010,1/1/2007,Ms. Thompson +Mayor ,Village of East Hodge ,P. O. Drawer 10,,East Hodge,LA,,318-259-9127,JACKSON,Fred Ford,P.O. Box 55,,East Hodge,LA,71247,5,318-259-1009,B,M,D,300,12/31/2010,1/1/2007,Mr. Ford +Mayor ,Village of Hodge ,P. O. Drawer 280,,Hodge,LA,,318-259-4704,JACKSON,Quenton Causey,P.O. Box 415,,Hodge,LA,71247,5,318-259-7930,W,M,D,300,12/31/2010,1/1/2007,Mr. Causey +Mayor ,Village of North Hodge ,P. O. Box 520,,North Hodge,LA,,318-259-4272,JACKSON,Geraldine Causey,P.O. Box 492,,Hodge,LA,71247,5,318-259-9144,W,F,D,300,12/31/2010,1/1/2007,Ms. Causey +Mayor ,Village of Quitman ,P. O. Box 35,,Quitman,LA,,318-259-8014,JACKSON,Joe Vail,P.O. Box 103,,Quitman,LA,71268,5,318-259-9193,W,M,D,300,12/31/2010,1/1/2007,Mayor Vail +Chief of Police ,Town of Chatham ,P. O. Box 7,,Chatham,LA,71226,318-249-2541,JACKSON,"""Mike"" Wilson",P. O. Box 435,,Chatham,LA,71226,5,318-245-0536,W,M,D,305,12/31/2012,1/1/2009,Chief Wilson +Chief of Police ,Town of Eros ,P. O. Box 200,,Eros,LA,71238,318-249-2183,JACKSON,Glen Tullos,P. O. Box 190,,Eros,LA,71238,5,318-376-5577,W,M,,305,12/31/2012,1/1/2009,Chief Tullos +Chief of Police ,Town of Jonesboro ,P. O. Box 610,,Jonesboro,LA,71251-0610 ,318-259-2385,JACKSON,Wesley Horton,937 Walker Rd.,,Jonesboro,LA,71251,5,318-259-8855,W,M,D,305,12/31/2010,1/1/2007,Mr. Horton +Chief of Police ,Village of East Hodge ,P. O. Drawer 10,,East Hodge,LA,71247,318-259-9127,JACKSON,"Simmie T. ""Slim"" Brown",P.O. Box 1745,,Hodge,LA,71247,5,318-259-3223,B,M,D,305,12/31/2010,1/1/2007,Mr. Brown +Chief of Police ,Village of Hodge ,P. O. Drawer 280,,Hodge,LA,71247,318-259-4704,JACKSON,Johnny Shively,P.O. Box 1636,,Hodge,LA,71247,5,318-395-0700,W,M,D,305,12/31/2010,1/1/2007,Mr. Shively +Chief of Police ,Village of North Hodge ,P. O. Box 632,,North Hodge,LA,71247,318-259-4272,JACKSON,Phillip Moffett,P.O. Box 865,,North Hodge,LA,71247,5,318-259-1431,W,M,O,305,12/31/2010,1/1/2007,Mr. Moffitt +Chief of Police ,Village of Quitman ,P. O. Box 35,,Quitman,LA,71268,318-259-8014,JACKSON,Donald E. Comer,240 Church Rd.,,Quitman,LA,71268,5,318-259-2921,W,M,D,305,12/31/2010,1/1/2007,Chief Comer +Alderman at Large ,Town of Jonesboro ,,,,LA,,,JACKSON,Randy Shows,128 Hickory St.,,Jonesboro,LA,71251,5,318-259-8490,W,M,D,308,12/31/2010,1/1/2007,Mr. Shows +Alderman ,"District A, Town of Jonesboro ",P. O. Box 610,,Jonesboro,LA,71251-0610 ,318-259-2385,JACKSON,"""Randy"" Layfield",116 Wood St.,,Jonesboro,LA,71251,5,318-259-9170,W,M,R,310,12/31/2010,1/1/2007,Mr. Layfield +Alderman ,"District B, Town of Jonesboro ",P. O. Box 610,,Jonesboro,LA,71251-0610 ,318-259-2385,JACKSON,Renee Stringer,P.O. Box 417,,Jonesboro,LA,71251,5,318-259-6281,W,F,R,310,12/31/2010,1/1/2007,Ms. Stringer +Alderman ,"District C, Town of Jonesboro ",P. O. Box 610,,Jonesboro,LA,71251-0610 ,318-259-2385,JACKSON,"Aaron ""Pete"" Stringer",712 Johnson St.,,Jonesboro,LA,71251,5,318-395-9176,B,M,D,310,12/31/2010,1/1/2007,Mr. Stringer +Alderman ,"District D, Town of Jonesboro ",P. O. Box 610,,Jonesboro,LA,71251-0610 ,318-259-2385,JACKSON,Terry L. Wiley,374 Terrace Hill Dr.,,Jonesboro,LA,71251,5,318-259-2544,B,M,D,310,12/31/2010,1/1/2007,Mr. Wiley +Alderman ,Town of Chatham ,P. O. Box 7,,Chatham,LA,71226,318-249-2541,JACKSON,Claudean M. Cartwright,12398 Hwy. 4,,Chatham,LA,71226,5,318-376-0736,W,F,R,310,12/31/2012,1/1/2009,Ms. Cartwright +Alderman ,Town of Chatham ,P. O. Box 7,,Chatham,LA,71226,318-249-2541,JACKSON,"""Toni"" Malone",P. O. Box 86,,Chatham,LA,71226,5,318-249-3693,W,F,R,310,12/31/2012,1/1/2009,Ms. Malone +Alderman ,Town of Chatham ,P. O. Box 7,,Chatham,LA,71226,318-249-2541,JACKSON,Laverne Mixon,P. O. Box 252,,Chatham,LA,71226,5,318-249-2796,B,F,D,310,12/31/2012,1/1/2009,Ms. Mixon +Alderman ,Town of Chatham ,P. O. Box 7,,Chatham,LA,71226,318-249-2541,JACKSON,Sue Proffer,P. O. Box 394,,Chatham,LA,71226,5,318-249-2667,W,F,,310,12/31/2012,1/1/2009,Ms. Proffer +Alderman ,Town of Chatham ,P. O. Box 7,,Chatham,LA,71226,318-249-2541,JACKSON,Frances B. Womack,P. O. Box 314,,Chatham,LA,71226,5,318-249-2327,W,F,R,310,12/31/2012,1/1/2009,Ms. Womack +Alderman ,Town of Eros ,P. O. Box 200,,Eros,LA,71238,318-249-2183,JACKSON,Elizabeth Irene Baugh,P. O. Box 11,,Eros,LA,71238,5,318-249-2320,W,F,O,310,12/31/2012,1/1/2009,Ms. Baugh +Alderman ,Town of Eros ,P. O. Box 200,,Eros,LA,71238,318-249-2183,JACKSON,Amy Costin,P. O. Box 147,,Eros,LA,71238,5,318-249-2116,W,F,O,310,12/31/2012,1/1/2009,Ms. Costin +Alderman ,Town of Eros ,P. O. Box 200,,Eros,LA,71238,318-249-2183,JACKSON,"Melba Creech, ",1107 Third St.,,Eros,LA,71238-8722,10,318-249-3354,W,F,N,310,,2/15/2010, +Alderman ,Town of Eros ,P. O. Box 200,,Eros,LA,71238,318-249-2183,JACKSON,"Melba Jean Creech, ",1107 Third St.,,Eros,LA,71238,5,318-249-3354,,,,310,,1/4/2010,Ms. Creech +Alderman ,Town of Eros ,P. O. Box 200,,Eros,LA,71238,318-249-2183,JACKSON,Glenda Tullos,P. O. Box 68,,Eros,LA,71238,5,318-249-2531,W,F,O,310,12/31/2012,1/1/2009,Ms. Tullos +Alderman ,Town of Eros ,P. O. Box 200,,Eros,LA,71238,318-249-2183,JACKSON,"""Bill"" Wheelis",P. O. Box 190,,Eros,LA,71238,5,318-249-4799,W,M,,310,12/31/2012,1/1/2009,Mr. Wheelis +Alderman ,Village of East Hodge ,P. O. Drawer 10,,East Hodge,LA,71247,318-259-9127,JACKSON,Dorothy Flowers Jones,P.O. Box 913,,East Hodge,LA,71247,5,318-259-7085,B,F,D,310,12/31/2010,1/1/2007,Ms. Jones +Alderman ,Village of East Hodge ,P. O. Drawer 10,,East Hodge,LA,71247,318-259-9127,JACKSON,Hal M. Mims,P.O. Box 306,,Hodge,LA,71247,5,318-259-1051,B,M,D,310,12/31/2010,1/1/2007,Mr. Sims +Alderman ,Village of East Hodge ,P. O. Drawer 10,,East Hodge,LA,71247,318-259-9127,JACKSON,Preston Traxler,P.O. Box 813,,East Hodge,LA,71247,5,318-259-2181,B,M,D,310,12/31/2010,1/1/2007,Mr. Traxler +Alderman ,Village of Hodge ,P. O. Drawer 280,,Hodge,LA,71247,318-259-4704,JACKSON,"James C. ""Jimmy"" Culpepper",P.O. Box 285,,Hodge,LA,71247,5,318-259-4383,W,M,D,310,12/31/2010,1/1/2007,Mr. Culpepper +Alderman ,Village of Hodge ,P. O. Drawer 280,,Hodge,LA,71247,318-259-4704,JACKSON,Randal Harrington,P.O. Box 13,,Hodge,LA,71247,5,318-259-3566,W,M,D,310,12/31/2010,1/1/2007,Mr. Harrington +Alderman ,Village of Hodge ,P. O. Drawer 280,,Hodge,LA,71247,318-259-4704,JACKSON,Carla Smith,P.O. Box 793,,Hodge,LA,71247,5,318-259-8753,W,F,R,310,12/31/2010,1/1/2007,Ms. Smith +Alderman ,Village of North Hodge ,P. O. Box 632,,North Hodge,LA,71247,318-259-4272,JACKSON,Sarah Allen Fitzpatrick,P.O. Box 58,,North Hodge,LA,71247,5,318-259-7736,,,O,310,12/31/2010,1/1/2007,Ms. Fitzpatrick +Alderman ,Village of North Hodge ,P. O. Box 632,,North Hodge,LA,71247,318-259-4272,JACKSON,Travis Hall,5517 Quitman Hwy.,,Hodge,LA,71247,5,318-259-3138,W,M,R,310,12/31/2010,1/1/2007,Mr. Hall +Alderman ,Village of North Hodge ,P. O. Box 632,,North Hodge,LA,71247,318-259-4272,JACKSON,David D. Womack,136 West Second St.,,Quitman,LA,71268,5,318-259-9609,W,M,R,310,12/31/2010,1/1/2007,Mr. Womack +Alderman ,Village of Quitman ,P. O. Box 35,,Quitman,LA,71268,318-259-8014,JACKSON,William Culpepper,P.O. Box 323,,Quitman,LA,71268,5,318-259-6268,W,M,D,310,12/31/2010,1/1/2007,Mr. Culpepper +Alderman ,Village of Quitman ,P. O. Box 35,,Quitman,LA,71268,318-259-8014,JACKSON,Sylvia J. Pagan,P.O. Box 305,,Quitman,LA,71268,5,318-259-7785,W,F,D,310,12/31/2010,1/1/2007,Ms. Pagan +Alderman ,Village of Quitman ,P. O. Box 35,,Quitman,LA,71268,318-259-8014,JACKSON,James H. Trull,246 Church Rd.,,Quitman,LA,71268,5,318-259-3090,W,M,,310,12/31/2010,1/1/2007,Mr. Trull +DPEC Member ,at Large ,,,,LA,,,JEFFERSON,Leonard M. Berins,3944 Uri St.,,Metairie,LA,70002,5,504-455-9544,W,M,D,54,2/20/2012,2/20/2008,Mr. Berins +DPEC Member ,at Large ,,,,LA,,,JEFFERSON,R. Stephen Johnson,928 Champagne Dr.,,Kenner,LA,70065,5,504-390-2677,,,D,54,2/20/2012,2/20/2008,Mr. Johnson +DPEC Member ,at Large ,,,,LA,,,JEFFERSON,Brent A. Klibert,1809 Elizabeth Ave.,,Metairie,LA,70005,5,504-451-4777,W,M,D,54,2/20/2012,2/20/2008,Mr. Klibert +DPEC Member ,at Large ,,,,LA,,,JEFFERSON,David Quidd,6220 Riverside Dr. Unit 588,,Metairie,LA,70003,5,504-722-8537,W,M,D,54,2/20/2012,2/20/2008,Mr. Quidd +DPEC Member ,at Large ,,,,LA,,,JEFFERSON,Arleeta Terrell,7801 Nevada St.,,Metairie,LA,70003,5,,B,F,D,54,2/20/2012,2/20/2008,Ms. Terrell +DPEC Member ,District 1 ,,,,LA,,,JEFFERSON,Leatrice Hollis,3021 Hampton Dr.,,Harvey,LA,70058,5,,,,,56,,8/19/2008, +DPEC Member ,District 1 ,,,,LA,,,JEFFERSON,Paul Pearson,4029 Briant Dr.,,Marrero,LA,70072,5,,,,,56,,3/17/2009,Mr. Pearson +DPEC Member ,District 2 ,,,,LA,,,JEFFERSON,Anthony Behan,424 Stratford Dr.,,Harahan,LA,70123,5,,,,,56,,3/17/2009,Mr. Behan +DPEC Member ,District 2 ,,,,LA,,,JEFFERSON,Glenn Green,218 Ave. A,,Westwego,LA,70094,5,504-328-7043,,,D,56,2/20/2012,2/20/2008,Mr. Green +DPEC Member ,District 2 ,,,,LA,,,JEFFERSON,Barbara Lassalle,425 Riverdale Dr.,,Jefferson,LA,70121,5,,,,,56,,5/19/2008, +DPEC Member ,District 2 ,,,,LA,,,JEFFERSON,Kennith J. Lassalle,425 Riverdale Dr.,,Jefferson,LA,70121,5,,,,,56,,5/19/2008, +DPEC Member ,District 2 ,,,,LA,,,JEFFERSON,Robert Reed,127 Highway Dr.,,Jefferson,LA,70121,5,504-232-5074,W,M,D,56,2/20/2012,2/20/2008,Mr. Reed +DPEC Member ,District 3 ,,,,LA,,,JEFFERSON,Michele' P. Holmes,204 Chapel Ln.,,Avondale,LA,70094,5,,,,,56,,7/15/2008, +DPEC Member ,District 3 ,,,,LA,,,JEFFERSON,Wilma W. Irvin,715 Daniel St.,,Kenner,LA,70062,5,,,,,56,,3/17/2009,Ms. Irvin +DPEC Member ,District 3 ,,,,LA,,,JEFFERSON,Paul Johnson,4057 S. Windmere St.,,Harvey,LA,70058,5,,,,,56,,8/19/2008, +DPEC Member ,District 3 ,,,,LA,,,JEFFERSON,Eric Thompson,916 Silver Lilly,,Marrero,LA,70072,5,,,,,56,,8/19/2008, +DPEC Member ,District 4 ,,,,LA,,,JEFFERSON,Donald Blum,1512 Colony Rd.,,Metairie,LA,70003,5,504-885-8610,W,M,D,56,2/20/2012,2/20/2008,Mr. Blum +DPEC Member ,District 4 ,,,,LA,,,JEFFERSON,Robert Marrero,4161 Cognac Dr.,,Kenner,LA,70065,5,504-464-6778,W,M,D,56,2/20/2012,2/20/2008,Mr. Marrero +DPEC Member ,District 4 ,,,,LA,,,JEFFERSON,"M. V. ""Vinny"" Mendoza",3510 Ole Miss Dr.,,Kenner,LA,70065,5,504-913-3971,O,M,D,56,2/20/2012,2/20/2008,Mr. Mendoza +DPEC Member ,District 4 ,,,,LA,,,JEFFERSON,Gilda Reed,1108 N. Starrett Rd.,,Metairie,LA,70003,5,,,,,56,,5/19/2008, +DPEC Member ,District 5 ,,,,LA,,,JEFFERSON,Michael M. Davis,P.O. Box 6764,,Metairie,LA,70009,5,504-835-2114,W,M,D,56,2/20/2012,2/20/2008,Mr. Davis +DPEC Member ,District 5 ,,,,LA,,,JEFFERSON,David Gereighty,2932 Ridgeway Dr.,,Metairie,LA,70002,5,504-831-9576,W,M,D,56,2/20/2012,2/20/2008,Mr. Gereighty +DPEC Member ,District 5 ,,,,LA,,,JEFFERSON,"Fred ""Ed"" Matthew",310 Metairie Heights Ave.,,Metairie,LA,70002,5,504-450-7666,W,M,D,56,2/20/2012,2/20/2008,Mr. Matthew +DPEC Member ,District 5 ,,,,LA,,,JEFFERSON,Jenny Nee,1341 Wisteria Dr.,,Metairie,LA,70005,5,504-259-0031,W,F,D,56,2/20/2012,2/20/2008,Ms. Nee +DPEC Member ,District 5 ,,,,LA,,,JEFFERSON,"Raymond ""Ray"" Waguespack",1908 Division St.,,Metairie,LA,70001,5,504-723-5402,W,M,D,56,2/20/2012,2/20/2008,Mr. Waguespack +DPEC Member ,District 6 ,,,,LA,,,JEFFERSON,,,,,,,0,,,,,56,,, +RPEC Member ,at Large ,,,,LA,,,JEFFERSON,Betty Bonura,1009 Chateau Lafitte Dr.,,Kenner,LA,70065,5,504-467-7402,W,F,R,64,2/20/2012,2/20/2008,Ms. Bonura +RPEC Member ,at Large ,,,,LA,,,JEFFERSON,"""Bob"" DeViney",3730 Jean Place,,Metairie,LA,70002,5,504-258-9373,W,M,R,64,2/20/2012,2/20/2008,Mr. Deviney +RPEC Member ,at Large ,,,,LA,,,JEFFERSON,John F. LaBruzzo,1427 Choctaw Ave.,,Metairie,LA,70005,5,504-838-4449,W,M,R,64,2/20/2012,2/20/2008,Mr. LaBruzzo +RPEC Member ,at Large ,,,,LA,,,JEFFERSON,"""Polly"" Thomas",3230 Metairie Crt.,,Metairie,LA,70002,5,504-833-7727,W,F,R,64,2/20/2012,2/20/2008,Ms. Thomas +RPEC Member ,at Large ,,,,LA,,,JEFFERSON,John S. Treen,112 Charleston Park,,Metairie,LA,70005,5,504-835-6636,W,M,R,64,2/20/2012,2/20/2008,Mr. Treen +RPEC Member ,District 1 ,,,,LA,,,JEFFERSON,"""Billy"" Arnold",2283 S. Von Braun Ct.,,Harvey,LA,70058,5,504-368-4292,W,M,R,66,2/20/2012,2/20/2008, +RPEC Member ,District 1 ,,,,LA,,,JEFFERSON,"Frank J. Borne, Jr.",2685 Highland Dr. West,,Gretna,LA,70056,5,504-394-0321,W,M,R,66,2/20/2012,2/20/2008,Mr. Borne: +RPEC Member ,District 1 ,,,,LA,,,JEFFERSON,Cherreen H. Gegenheimer,440 Timberlane Dr.,,Gretna,LA,70056,5,504-361-5366,W,F,R,66,2/20/2012,2/20/2008,Ms. Gegenheimer +RPEC Member ,District 1 ,,,,LA,,,JEFFERSON,Stephen Leonard,1916 Carol Sue Ave.,,Terrytown,LA,70056,5,,W,M,R,66,2/20/2012,2/20/2008,Mr. Leonard +RPEC Member ,District 1 ,,,,LA,,,JEFFERSON,"James A. ""Tripp"" Rabalais",328 Fairfield Ave.,,Gretna,LA,70056,5,504-368-7363,W,M,R,66,2/20/2012,2/20/2008,Mr. Rabalais +RPEC Member ,District 2 ,,,,LA,,,JEFFERSON,Howard Bennett,9811 Elm Pl.,,River Ridge,LA,70123,5,504-737-1471,W,M,R,66,2/20/2012,2/20/2008,Mr. Bennett +RPEC Member ,District 2 ,,,,LA,,,JEFFERSON,Paul D. Johnston,525 Kenmore Dr.,,Harahan,LA,70123,5,504-737-4345,W,M,R,66,2/20/2012,2/20/2008,Mr. Johnston +RPEC Member ,District 2 ,,,,LA,,,JEFFERSON,"""Bert"" Leblanc",1220 Orchid Dr.,,Harvey,LA,70058,5,504-340-5267,W,M,R,66,2/20/2012,2/20/2008,Mr. LeBlanc +RPEC Member ,District 2 ,,,,LA,,,JEFFERSON,"Provino ""Vinny"" Mosca",7212 Stoneleigh Dr.,,Harahan,LA,70123,5,504-738-3994,W,M,R,66,2/20/2012,2/20/2008,Mr. Mosca +RPEC Member ,District 2 ,,,,LA,,,JEFFERSON,"""Tim"" Walker",30 West Imperial Dr.,,Harahan,LA,70123,5,504-737-7327,W,M,R,66,2/20/2012,2/20/2008,Mr. Walker +RPEC Member ,District 3 ,,,,LA,,,JEFFERSON,"Matthew M. Cervini, Sr.",49 Aster Ln.,,Waggaman,LA,70094,5,504-628-3329,W,M,R,66,2/20/2012,2/20/2008, +RPEC Member ,District 3 ,,,,LA,,,JEFFERSON,"Louis J. Duffourc, Sr.",339 Buttercup Dr.,,Waggaman,LA,70094,5,,W,M,R,66,2/20/2012,2/20/2008, +RPEC Member ,District 3 ,,,,LA,,,JEFFERSON,Charles Gennaro,6535 River Rd.,,Waggaman,LA,70094,5,504-436-3959,W,M,R,66,2/20/2012,2/20/2008,Mr. Gennaro +RPEC Member ,District 3 ,,,,LA,,,JEFFERSON,Nicholas Muniz,3720 Burntwood Dr.,,Harvey,LA,70058,5,504-347-2516,W,M,R,66,2/20/2012,2/20/2008,Mr. Muniz +RPEC Member ,District 3 ,,,,LA,,,JEFFERSON,"James H. ""Jimmy"" Stevens, Jr.",100 Stevens Pl.,,River Ridge,LA,70123,5,504,W,M,R,66,2/20/2012,2/20/2008,Mr. Stevens +RPEC Member ,District 4 ,,,,LA,,,JEFFERSON,Vincent J. Bruno,729 Champaigne Dr.,,Kenner,LA,70065,5,504-319-7262,W,M,R,66,2/20/2012,2/20/2008,Mr. Bruno +RPEC Member ,District 4 ,,,,LA,,,JEFFERSON,"Philip L. ""Phil"" Capitano",4041 Teche Dr.,,Kenner,LA,70065,5,504-466-5767,W,M,R,66,2/20/2012,2/20/2008,Mr. Capitano +RPEC Member ,District 4 ,,,,LA,,,JEFFERSON,Marie M. Clesi,1100 Vintage Dr.,,Kenner,LA,70065,5,504-469-4268,W,F,R,66,2/20/2012,2/20/2008,Ms. Clesi +RPEC Member ,District 4 ,,,,LA,,,JEFFERSON,Kevin S. Delahoussaye,7 Traminer Dr.,,Kenner,LA,70065,5,504-465-9069,W,M,R,66,2/20/2012,2/20/2008,Mr. Delahoussaye +RPEC Member ,District 4 ,,,,LA,,,JEFFERSON,Jack Rizzuto,4525 Rebecca Dr.,,Metairie,LA,70002,5,504-888-4125,W,M,R,66,2/20/2012,2/20/2008,Mr. Rizzuto +RPEC Member ,District 5 ,,,,LA,,,JEFFERSON,Daniel I. Caplan,4712 N. Turnbull Dr.,,Metairie,LA,70002,5,504-888-5050,W,M,R,66,2/20/2012,2/20/2008,Mr. Caplan +RPEC Member ,District 5 ,,,,LA,,,JEFFERSON,"William B. Faust, III",4205 N. Turnbull Dr.,,Metairie,LA,70002,5,504-455-2834,W,M,R,66,2/20/2012,2/20/2008,Mr. Faust +RPEC Member ,District 5 ,,,,LA,,,JEFFERSON,"""Ray"" Muniz",4212 Caldwell St.,,Metairie,LA,70001,5,504-455-1527,W,M,R,66,2/20/2012,2/20/2008,Mr. Muniz +RPEC Member ,District 5 ,,,,LA,,,JEFFERSON,Eric Skrmetta,P.O. Box 55896,,Metairie,LA,70055,5,504-650-0642,W,M,R,66,2/20/2012,2/20/2008,Mr. Skrmetta +RPEC Member ,District 5 ,,,,LA,,,JEFFERSON,"Robert ""Coach Bob"" Stevens",3716 North Woodlawn Ave.,,Metairie,LA,70006,5,504-454-3421,W,M,R,66,2/20/2012,2/20/2008,Mr. Stevens +RPEC Member ,District 6 ,,,,LA,,,JEFFERSON,,,,,,,0,,,,,66,,, +Judge ,"1st Parish Court, Division A ",924 David Dr.,,Metairie,LA,70003,504-736-8913,JEFFERSON,Rebecca M. Olivier,7920 Ferrara Dr.,,Harahan,LA,70123,5,504-739-9933,W,F,R,220,12/31/2014,1/1/2009,Judge Olivier +Judge ,"1st Parish Court, Division B ",924 David Dr.,,Metairie,LA,70003,504-736-8977,JEFFERSON,George W. Giacobbe,5513 David Dr.,,Kenner,LA,70065,5,504-889-2476,W,M,R,220,12/31/2014,1/1/2009,Judge Giacobbe +Judge ,"2nd Parish Court, Division A ",100 Huey P. Long Ave.,,Gretna,LA,70053,504-364-2800,JEFFERSON,Roy M. Cascio,73 Marie Dr.,,Gretna,LA,70053,5,504-637-5577,W,M,D,220,12/31/2014,1/1/2009,Judge Cascio +Judge ,"2nd Parish Court, Division B ",100 Huey P. Long Ave.,,Gretna,LA,70053,504-364-2800,JEFFERSON,"Stephen ""Steve"" Grefer",29 Derbes Dr.,,Gretna,LA,70053,5,504-304-6648,W,M,R,220,12/31/2014,1/1/2009,Judge Grefer +Judge ,"Juvenile Court, Section A ",P. O. Box 1900,,Harvey,LA,70059,504-367-3500,JEFFERSON,Ann Murry Keller,P.O. Box 1900,,Harvey,LA,70059,5,504-367-3500,W,F,R,220,12/31/2014,1/1/2009,Judge Keller +Judge ,"Juvenile Court, Section B ",P. O. Box 1900,,Harvey,LA,70059,504-367-3500,JEFFERSON,Andrea Price Janzen,302 Southern Rd.,,River Ridge,LA,70123,5,504-737-0244,W,F,R,220,12/31/2014,1/1/2009,Judge Janzen +Judge ,"Juvenile Court, Section C ",P. O. Box 1900,,Harvey,LA,70059,504-367-3500,JEFFERSON,Nancy Amato Konrad,333 Rue St. Ann,,Metairie,LA,70005,5,504-835-2909,W,F,R,220,12/31/2014,1/1/2009,Judge Konrad +Sheriff ,,P. O. Box 327,,Gretna,LA,70054,504-363-5701,JEFFERSON,Newell D. Normand,P.O. Box 327,,Gretna,LA,70054,5,504-363-5725,W,M,R,225,6/30/2012,7/1/2008,Sheriff Normand +Clerk of Court ,,P. O. Box 10,,Gretna,LA,70054,504-364-2900,JEFFERSON,Jon A. Gegenheimer,P.O. Box 10,,Gretna,LA,70054,5,504-361-5366,W,M,R,230,6/30/2012,7/1/2008,Mr. Gegenheimer +Assessor ,,"200 Derbigny, Ste. 1100",,Gretna,LA,70053,504-362-4100,JEFFERSON,Lawrence E. Chehardy,183 Sauve Rd.,,River Ridge,LA,70123,5,504-737-9692,W,M,R,235,12/31/2012,1/1/2009,Mr. Chehardy +Coroner ,,2018 8th Street,,Harvey,LA,70058,504-365-9100,JEFFERSON,Robert E. Treuting,33 Waverly Place,,Metairie,LA,70003,5,504-455-1117,W,M,D,240,3/25/2012,3/24/2008,Mr. Treuting +Parish President ,,P.O. Box 9,,Gretna,LA,70054,504-364-2626,JEFFERSON,"Steve J. Theriot, ",P.O. Box 9,,Gretna,LA,70054,5,,,,,243,,1/13/2010,Mr. Theriot +Councilman at Large ,Division A ,P. O. Box 9,,Gretna,LA,70054,504-364-2626,JEFFERSON,"John F. Young, Jr.","609 Metairie Rd., #300",,Metairie,LA,70005,5,504-352-8855,W,M,R,244,1/3/2012,1/9/2008,Mr. Young +Councilman at Large ,Division B ,P. O. Box 9,,Gretna,LA,70054,504-364-2626,JEFFERSON,Thomas J. Capella,4928 Jasper St.,,Metairie,LA,70006,5,504-885-9883,W,M,R,244,1/3/2012,1/9/2008,Mr. Capella +Councilman ,District 1 ,P. O. Box 9,,Gretna,LA,,504-364-2626,JEFFERSON,"""Chris"" Roberts",2149 Hyde Park Ave. East,,Harvey,LA,70058,5,504-263-0530,W,M,D,245,1/3/2012,1/9/2008,Mr. Roberts +Councilman ,District 2 ,P. O. Box 9,,Gretna,LA,70054,504-364-2626,JEFFERSON,Elton Manard Lagasse,"200 Derbigny St., Ste. 6300",,Gretna,LA,70053,5,504-364-3446,W,M,R,245,1/3/2012,1/10/2008,Mr. Legasse +Councilman ,District 3 ,P. O. Box 9,,Gretna,LA,70054,504-364-2626,JEFFERSON,Byron Lee,40 Gainswood Dr. E.,,Marrero,LA,70072,5,504-364-2603,B,M,D,245,1/3/2012,1/9/2008,Mr. Lee +Councilman ,District 4 ,P. O. Box 9,,Gretna,LA,70054,504-364-2626,JEFFERSON,Louis J. Congemi,21 Palmetto,,Kenner,LA,70065,5,504-464-7017,W,M,R,245,1/3/2012,1/9/2008,Mr. Congemi +Councilman ,District 5 ,P. O. Box 9,,Gretna,LA,70054,504-364-2626,JEFFERSON,Cynthia Lee-Sheng,1405 Hesper Ave.,,Metairie,LA,70003,5,504-828-9746,O,F,R,245,1/3/2012,4/14/2009,Ms. Lee-Sheng +Member of School Board ,District 1 ,501 Manhattan Blvd.,,Harvey,LA,70058,504-349-7802,JEFFERSON,Mark C. Morgan,1106 Amelia St.,,Gretna,LA,70053,5,504-231-9238,W,M,D,255,12/31/2010,1/1/2007,Mr. Morgan +Member of School Board ,District 2 ,4600 River Road,,Marrero,LA,70072,504-349-7802,JEFFERSON,Etta S. Licciardi,5602 A Jean Lafitte Blvd.,,Lafitte,LA,70067,5,504-233-1200,W,F,R,255,12/31/2010,1/1/2007,Ms. Licciardi +Member of School Board ,District 3 ,4600 River Road,,Marrero,LA,70072,504-349-7802,JEFFERSON,Raymond R. St. Pierre,2816 Villa Dr.,,Marrero,LA,70072,5,504-344-9115,W,M,R,255,12/31/2010,1/1/2007,Mr. St. Pierre +Member of School Board ,District 4 ,4600 River Road,,Marrero,LA,70072,504-349-7802,JEFFERSON,Glenn W. Hayes,P.O. Box 1847,,Metairie,LA,70004,5,504-838-8974,W,M,R,255,12/31/2010,2/23/2009,Mr. Hayes +Member of School Board ,District 5 ,4600 River Road,,Marrero,LA,70072,504-349-7802,JEFFERSON,Cedric Floyd,P.O. Box 141,,Kenner,LA,70063,5,504-464-7011,B,M,D,255,12/31/2010,10/14/2008,Mr. Floyd +Member of School Board ,District 6 ,4600 River Road,,Marrero,LA,70072,504-349-7802,JEFFERSON,Martin B. Marino,1321 Pecan Ave.,,Metairie,LA,70001,5,504-455-2436,W,M,R,255,12/31/2010,1/1/2007,Mr. Marino +Member of School Board ,District 7 ,4600 River Road,,Marrero,LA,70072,504-349-7802,JEFFERSON,"""Libby"" L. Moran",8917 Belle Grove Pl.,,River Ridge,LA,70123,5,504-737-8050,W,F,R,255,12/31/2010,1/1/2007,Ms. Moran +Member of School Board ,District 8 ,4600 River Road,,Marrero,LA,70072,504-349-7802,JEFFERSON,Judy M. Colgan,4905 Elmwood Pkwy.,,Metairie,LA,70003,5,504-885-4982,W,F,R,255,12/31/2010,1/1/2007,Ms. Colgan +Member of School Board ,District 9 ,4600 River Road,,Marrero,LA,70072,504-349-7802,JEFFERSON,"Eugene R. ""Gene"" Katsanis",8 Chateau Magdelaine Dr.,,Kenner,LA,70065,5,,W,M,R,255,12/31/2010,1/1/2007,Mr. Katsanis +Justice of the Peace ,1st Justice Court ,941 Marlene Dr.,,Gretna,LA,70056,504-393-0032,JEFFERSON,"Vernon J. Wilty, III",941 Marlene Dr.,,Gretna,LA,70056,5,504-393-0032,W,M,D,265,12/31/2014,1/1/2009,Mr. Wilty +Justice of the Peace ,2nd Justice Court ,2701 Cedar Lawn Dr.,,Marrero,LA,70072,504-340-7458,JEFFERSON,Patrick DeJean,1637 Gulizo Dr.,,Marrero,LA,70072,5,504-324-3442,W,M,D,265,12/31/2014,1/1/2009,Mr. DeJean +Justice of the Peace ,3rd Justice Court ,P. O. Box 444,,Lafitte,LA,70067,504-689-4106,JEFFERSON,Charlie R. Kerner,P.O. Box 444,,Lafitte,LA,70067,5,504-689-4106,W,M,D,265,12/31/2014,1/1/2009,Mr. Kerner +Justice of the Peace ,4th Justice Court ,P. O. Box 812,,Grand Isle,LA,70358,985-787-2301,JEFFERSON,"Leon F. Bradberry, Jr.",P.O. Box 121,,Grand Isle,LA,70358,5,985-787-4767,W,M,,265,12/31/2014,1/1/2009,Mr. Bradberry +Justice of the Peace ,5th Justice Court ,2111 Harvard Ave.,,Metairie,LA,70001,504-838-4295,JEFFERSON,"Charles V. ""Chuck"" Cusimano, II",3705 N. Labarre Rd.,,Metairie,LA,70002,5,504-834-2630,W,M,R,265,12/31/2014,1/1/2009,Mr. Cusimano +Justice of the Peace ,6th Justice Court ,3016 Texas Ave.,,Kenner,LA,70065,504-466-7984,JEFFERSON,Kevin J. Centanni,3016 Texas Ave.,,Kenner,LA,70065,5,504-443-3238,W,M,R,265,12/31/2014,1/1/2009,Mr. Centanni +Justice of the Peace ,7th Justice Court ,405 George St.,,Avondale,LA,70094,504-436-3133,JEFFERSON,Eugene Fitchue,405 George St.,,Avondale,LA,70094,5,504-436-3133,B,M,D,265,12/31/2014,1/1/2009,Mr. Fitchue +Justice of the Peace ,8th Justice Court ,9014 Rousseau St.,,Kenner,LA,70065,,JEFFERSON,"Roscoe W. Lewis, Sr.",9014 Rousseau St.,,Kenner,LA,70062,5,504-466-5931,B,M,D,265,12/31/2014,1/1/2009,Mr. Lewis +Constable ,1st Justice Court ,1809 Cooper Rd.,,Terrytown,LA,70056,504-367-3491,JEFFERSON,Jonathan Liberto,300-D Terry Pkwy.,,Terrytown,LA,70056,5,504-339-7012,W,M,D,267,12/31/2014,1/1/2009,Mr. Liberto +Constable ,2nd Justice Court ,31 Shadows Court,,Marrero,LA,70072,504-347-1206,JEFFERSON,"Antoine J. ""Tony"" Thomassie",4116 Barataria Blvd.,,Marrero,LA,70072,5,504-347-1206,W,M,D,267,12/31/2014,1/1/2009,Mr. Thomassie +Constable ,3rd Justice Court ,2884 Privateer Blvd.,,Barataria,LA,70036,504-689-3179,JEFFERSON,"Albert T. Creppel, Sr.",2884 Privateer Blvd.,,Barataria,LA,70036,5,504-689-3179,W,M,D,267,12/31/2014,1/1/2009,Mr. Creppel +Constable ,4th Justice Court ,P.O. Box 356,,Grand Isle,LA,70358,504-787-2272,JEFFERSON,"Leon F. Bradberry, Sr.",P.O. Box 356,,Grand Isle,LA,70358,5,985-787-2273,W,M,,267,12/31/2014,1/1/2009,Mr. Bradberry +Constable ,5th Justice Court ,212 Atherton Dr.,,Metairie,LA,70005,504-833-9290,JEFFERSON,Dan E. Civello,212 Atherton Dr.,,Metairie,LA,70005,5,504-833-9290,W,M,R,267,12/31/2014,1/1/2009,Mr. Civello +Constable ,6th Justice Court ,312 Sophia St.,,River Ridge,LA,70123,504-737-9196,JEFFERSON,"E.J. ""Joe"" Bourgeois",312 Sophia St.,,River Ridge,LA,70123,5,504-737-9196,W,M,R,267,12/31/2014,1/1/2009,Mr. Bourgeois +Constable ,7th Justice Court ,105 Prairie View Court,,Avondale,LA,70094,504-436-7494,JEFFERSON,"James D. Cooper, Sr.",105 Prairieview Ct.,,Avondale,LA,70094,5,504-436-7494,B,M,D,267,12/31/2014,1/1/2009,Mr. Cooper +Constable ,8th Justice Court ,3139 Augusta St.,,Kenner,LA,70065,504-469-6760,JEFFERSON,Charles Wilson,3033 Ohio St.,,Kenner,LA,70065,5,504-512-1426,B,M,D,267,12/31/2014,1/1/2009,Mr. Wilson +Mayor ,City of Gretna ,P. O. Box 404,,Gretna,LA,,504-363-1500,JEFFERSON,Ronnie C. Harris,210 Lafayette St.,,Gretna,LA,70053,5,504-366-8747,W,M,D,300,6/30/2013,7/1/2009,Mayor Harris +Mayor ,City of Harahan ,6437 Jefferson Hwy.,,Harahan,LA,,504-737-6383,JEFFERSON,Paul D. Johnston,525 Kenmore Dr.,,Harahan,LA,70123,5,504-737-4345,W,M,R,300,12/31/2010,1/1/2007,Mr. Johnston +Mayor ,City of Kenner ,1801 Williams Blvd.,,Kenner,LA,,504-468-7254,JEFFERSON,"Edmond J. ""Ed"" Muniz",58 Chateau Latour Dr.,,Kenner,LA,70065,5,504-466-5958,W,M,R,300,6/30/2010,7/1/2006,Mayor Muniz +Mayor ,City of Westwego ,419 Avenue A,,Westwego,LA,,504-341-3424,JEFFERSON,"John I. ""Johnny"" Shaddinger, Jr.",312 Avenue B,,Westwego,LA,70094,5,504-348-4021,W,M,D,300,6/30/2013,7/1/2009,Mayor Shaddinger +Mayor ,Town of Grand Isle ,P. O. Box 200,,Grand Isle,LA,,985-787-3196,JEFFERSON,David Camardelle,P.O. Box 215,,Grand Isle,LA,70358,5,504-382-3573,W,M,D,300,6/30/2012,7/1/2008,Mayor Camardelle +Mayor ,Town of Jean Lafitte ,2654 Jean Lafitte Blvd.,,Lafitte,LA,,504-689-2208,JEFFERSON,Timothy P. Kerner,1156 Jean Lafitte Blvd.,,Lafitte,LA,70067,5,504-689-3540,W,M,D,300,6/30/2011,7/1/2007,Mayor Kerner +Chief of Police ,City of Gretna ,P. O. Box 404,,Gretna,LA,70054,504-363-1500,JEFFERSON,"Arthur S. Lawson, Jr.",20 Derbes Dr.,,Gretna,LA,70053,5,504-363-1700,W,M,D,305,6/30/2013,7/1/2009,Chief Lawson +Chief of Police ,City of Harahan ,6437 Jefferson Hwy.,,Harahan,LA,70123,504-737-6383,JEFFERSON,Peter Dale,7813 Seventh St.,,Harahan,LA,70123,5,504-736-2608,W,M,R,305,12/31/2010,1/1/2007,Mr. Dale +Chief of Police ,City of Kenner ,1801 Williams Blvd.,,Kenner,LA,70062,504-468-7254,JEFFERSON,"""Steve"" Caraway",705 Carmenere Dr.,,Kenner,LA,70065,5,504-466-2617,W,M,R,305,6/30/2010,7/1/2006,Mr. Caraway +Chief of Police ,City of Kenner ,1801 Williams Blvd.,,Kenner,LA,70062,504-468-7254,JEFFERSON,"""Steve"" Caraway, ",705 Carmenere Dr.,,Kenner,LA,70065-1109,10,504-466-2617,W,M,R,305,,, +Chief of Police ,City of Westwego ,419 Avenue A,,Westwego,LA,70094,504-341-3424,JEFFERSON,"Dwayne ""Poncho"" Munch",1257 Barbe Dr.,,Westwego,LA,70094,5,504-324-5903,W,M,R,305,6/30/2013,7/1/2009,Chief Munch +Chief of Police ,Town of Grand Isle ,P. O. Box 200,,Grand Isle,LA,70358,985-787-3196,JEFFERSON,Euris DuBois,1036 Hwy. 1,,Grand Isle,LA,70358,5,985-787-2324,W,M,D,305,6/30/2012,7/1/2008,Chief DuBois +Chief of Police ,Town of Jean Lafitte ,2654 Jean Lafitte Blvd.,,Lafitte,LA,70067,504-689-2208,JEFFERSON,Mary Jo Hargis,4971 Evelynn Dr.,,Lafitte,LA,70067,5,504-689-3408,W,F,D,305,6/30/2011,7/1/2007,Chief Hargis +Councilman at Large ,"Division A, City of Kenner ",1801 Williams Blvd.,,Kenner,LA,70062,504-468-7254,JEFFERSON,Michele P. Branigan,126 W. Esplanade Ave.,,Kenner,LA,70065,5,504-467-2979,W,F,R,308,6/30/2010,7/1/2006,Mr. Branigan +Councilman at Large ,"Division B, City of Kenner ",1801 Williams Blvd.,,Kenner,LA,70062,504-468-7254,JEFFERSON,"""Jeannie"" M. Black",3624 Lake Trail Dr.,,Kenner,LA,70065,5,504-455-1980,W,F,R,308,6/30/2010,7/1/2006,Ms. Black +Councilman at Large ,"Division B, City of Kenner ",1801 Williams Blvd.,,Kenner,LA,70062,504-468-7254,JEFFERSON,"""Jeannie"" M. Black, ",3624 Lake Trail Dr.,,Kenner,LA,70065-3312,10,504-455-1980,W,F,R,308,,, +Council Member ,"District 1, City of Westwego ",419 Avenue A,,Westwego,LA,70094,504-341-3424,JEFFERSON,Glenn Green,218 Avenue A,,Westwego,LA,70094,5,504-259-3694,B,M,D,310,6/30/2013,7/1/2009,Mr. Green +Council Member ,"District 2, City of Gretna ",P. O. Box 404,,Gretna,LA,70054,504-363-1500,JEFFERSON,"Belinda Cambre Constant, ",720 Huey P. Long Ave.,,Gretna,LA,70053-6126,10,504-382-8023,W,F,D,310,,2/15/2010, +Council Member ,"District 2, City of Westwego ",419 Avenue A,,Westwego,LA,70094,504-341-3424,JEFFERSON,Ted J. Munch,611 Chipley St.,,Westwego,LA,70094,5,504-442-1199,W,M,D,310,,7/1/2009,Mr. Munch +Council Member ,"District 3, City of Gretna ",P. O. Box 404,,Gretna,LA,70054,504-363-1500,JEFFERSON,"Vincent E. Cox, III",82 Mason Ave.,,Gretna,LA,70053-7025,10,504-361-0810,W,M,D,310,,2/15/2010, +Council Member ,"District 3, City of Westwego ",419 Avenue A,,Westwego,LA,70094,504-341-3424,JEFFERSON,Ivy Rogers,1101 Barbe Dr.,,Westwego,LA,70094,5,504-347-1368,W,M,D,310,6/30/2013,7/1/2009,Mr. Rogers +Council Member ,"District 4, City of Gretna ",P. O. Box 404,,Gretna,LA,70054,504-363-1500,JEFFERSON,"Raylyn Beevers, ",155 Linda Ct.,,Gretna,LA,70053-4959,10,504-361-4287,W,F,D,310,,2/15/2010, +Council Member ,"District 4, City of Westwego ",419 Avenue A,,Westwego,LA,70094,504-341-3424,JEFFERSON,Melvin Guidry,1161 Avenue C,,Westwego,LA,70094,5,504-347-6020,W,M,D,310,,7/1/2009,Mr. Guidry +Council Member ,"District 5, City of Westwego ",419 Avenue A,,Westwego,LA,70094,504-341-3424,JEFFERSON,Larry J. Warino,808 Avenue H,,Westwego,LA,70094,5,504-340-4638,W,M,,310,6/30/2013,7/1/2009,Mr. Warino +Council Member ,"Seat A, Town of Grand Isle ",P. O. Box 200,,Grand Isle,LA,70358,985-787-3196,JEFFERSON,Ray A. Santiny,P.O. Box 325,,Grand Isle,LA,70358,5,985-787-3211,W,M,D,310,6/30/2012,7/1/2008,Mr. Santiny +Council Member ,"Seat B, Town of Grand Isle ",P. O. Box 200,,Grand Isle,LA,70358,985-787-3196,JEFFERSON,"""Jay"" Lafont",P.O. Box 27,,Grand Isle,LA,70358,5,985-787-2641,W,M,D,310,6/30/2012,7/1/2008,Mr. Lafont +Council Member ,"Seat C, Town of Grand Isle ",P. O. Box 200,,Grand Isle,LA,70358,985-787-3196,JEFFERSON,"Clifford ""Dixie"" Santiny",3679 Highway 1,,Grand Isle,LA,70358,5,504-382-8602,W,M,R,310,6/30/2012,7/1/2008,Mr. Santiny +Council Member ,"Seat D, Town of Grand Isle ",P. O. Box 200,,Grand Isle,LA,70358,985-787-3196,JEFFERSON,"Stephen ""Scooter"" Resweber",P.O. Box 665,,Grand Isle,LA,70358,5,985-637-8056,W,M,D,310,6/30/2012,7/1/2008,Mr. Resweber +Council Member ,"Seat E, Town of Grand Isle ",P. O. Box 200,,Grand Isle,LA,70358,985-787-3196,JEFFERSON,Leoda Bladsacker,P.O. Box 881,,Grand Isle,LA,70358,5,985-787-2999,W,F,D,310,6/30/2012,7/1/2008,Ms. Bladsacker +Council Member at Large ,City of Gretna ,P. O. Box 404,,Gretna,LA,70054,504-363-1500,JEFFERSON,Wayne A. Rau,936 Lafayette St.,,Gretna,LA,70053,5,504-366-3893,W,M,D,310,6/30/2013,7/1/2009,Mr. Rau +Councilman ,City of Harahan ,6437 Jefferson Hwy.,,Harahan,LA,70123,504-737-6383,JEFFERSON,Timothy Baudier,184 Oakland Ave.,,Harahan,LA,70123,5,504-734-3278,W,M,R,310,12/31/2010,10/14/2008,Mr. Baudier +Councilman ,City of Harahan ,6437 Jefferson Hwy.,,Harahan,LA,70123,504-737-6383,JEFFERSON,Lawrence Landry,#11 Colonial Club Dr.,,Harahan,LA,70123,5,504-738-9677,W,M,R,310,12/31/2010,1/1/2007,Mr. Landry +Councilman ,City of Harahan ,6437 Jefferson Hwy.,,Harahan,LA,70123,504-737-6383,JEFFERSON,"Provino ""Vinny"" Mosca",7212 Stoneleigh Dr.,,Harahan,LA,70123,5,504-738-3994,W,M,R,310,12/31/2010,1/1/2007,Mr. Mosca +Councilman ,City of Harahan ,6437 Jefferson Hwy.,,Harahan,LA,70123,504-737-6383,JEFFERSON,Cindy Murray,125 Glenwood Ave,,Harahan,LA,70123,5,504-737-1683,W,F,R,310,12/31/2010,1/1/2007,Ms. Murray +Councilman ,City of Harahan ,6437 Jefferson Hwy.,,Harahan,LA,70123,504-737-6383,JEFFERSON,Tiffany Scot Wilken,812 Gordon Ave.,,Harahan,LA,70123,5,504-738-6406,W,F,R,310,12/31/2010,1/1/2007,Ms. Wilken +Councilman ,"District 1, City of Kenner ",1801 Williams Blvd.,,Kenner,LA,70062,504-468-7254,JEFFERSON,"Gregory W. Carroll, ",1915 Short St.,,Kenner,LA,70062-7549,10,504-469-1376,B,M,D,310,,, +Councilman ,"District 1, City of Kenner ",1801 Williams Blvd.,,Kenner,LA,70062,504-468-7254,JEFFERSON,"Gregory W. Carroll, ",1915 Short St.,,Kenner,LA,70065,5,504-782-3404,B,M,D,310,6/30/2010,11/24/2009,Mr. Carroll +Councilman ,"District 2, City of Kenner ",1801 Williams Blvd.,,Kenner,LA,70062,504-468-7254,JEFFERSON,Joe Stagni,1700 Taylor St.,,Kenner,LA,70062,5,504-467-9641,,,,310,6/30/2010,7/1/2006,Mr. Stagni +Councilman ,"District 3, City of Kenner ",1801 Williams Blvd.,,Kenner,LA,70062,504-468-7254,JEFFERSON,"""Ben"" Zahn, ",4328 Colorado Ave.,,Kenner,LA,70065-1324,10,504-464-0793,W,M,R,310,,, +Councilman ,"District 3, City of Kenner ",1801 Williams Blvd.,,Kenner,LA,70062,504-468-7254,JEFFERSON,"E.B. ""Ben"" Zahn, III",4328 Colorado Ave.,,Kenner,LA,70065,5,504-464-0791,W,M,R,310,6/30/2010,7/1/2006, +Councilman ,"District 4, City of Kenner ",1801 Williams Blvd.,,Kenner,LA,70062,504-468-7254,JEFFERSON,Maria DeFrancesch,20 Monte Carlo Dr.,,Kenner,LA,70065,5,504-467-1585,W,F,R,310,6/30/2010,7/1/2006,Ms. Defrancesch +Councilman ,"District 5, City of Kenner ",1801 Williams Blvd.,,Kenner,LA,70062,504-468-7254,JEFFERSON,Kent Denapolis,1801 Williams Blvd.,,Kenner,LA,70062,5,504-468-7520,W,M,R,310,6/30/2010,7/1/2006,Mr. Denapolis +Councilman ,Town of Jean Lafitte ,2654 Jean Lafitte Blvd.,,Lafitte,LA,70067,504-689-2208,JEFFERSON,Barry Bartholomew,2654 Jean Lafitte Blvd.,,Lafitte,LA,70067,5,,,,,310,,9/9/2009,Mr. Bartholomew +Councilman ,Town of Jean Lafitte ,2654 Jean Lafitte Blvd.,,Lafitte,LA,70067,504-689-2208,JEFFERSON,"Barry D. Bartholomew, ",1940 Jean Lafitte Blvd.,,Lafitte,LA,70067-3630,10,504-689-4720,W,M,D,310,,2/15/2010, +Councilman ,Town of Jean Lafitte ,2654 Jean Lafitte Blvd.,,Lafitte,LA,70067,504-689-2208,JEFFERSON,Christy Creppel,5128 Matherne St.,,Lafitte,LA,70067,5,504-481-7179,W,F,D,310,6/30/2011,7/1/2007,Ms. Creppel +Councilman ,Town of Jean Lafitte ,2654 Jean Lafitte Blvd.,,Lafitte,LA,70067,504-689-2208,JEFFERSON,Shirley Guillie,624 Jean Lafitte Blvd.,,Lafitte,LA,70067,5,504-689-5432,W,F,D,310,6/30/2011,7/1/2007,Ms. Guille +Councilman ,Town of Jean Lafitte ,2654 Jean Lafitte Blvd.,,Lafitte,LA,70067,504-689-2208,JEFFERSON,"Calvin ""Butch"" Lebeau",2072 Camille Ct.,,Lafitte,LA,70067,5,504-689-2288,W,M,D,310,6/30/2011,7/1/2007,Mr. Lebeau +Councilman ,Town of Jean Lafitte ,2654 Jean Lafitte Blvd.,,Lafitte,LA,70067,504-689-2208,JEFFERSON,"Verna ""Teta"" Smith",2761 Couevas St.,,Lafitte,LA,70067,5,504-689-4521,W,F,D,310,6/30/2011,7/1/2007,Ms. Smith +DPEC Member ,at Large ,,,,LA,,,JEFFERSON DAVIS,Michael C. Cassidy,603 Lucy St.,,Jennings,LA,70546,5,337-824-0315,W,M,D,54,2/20/2012,2/20/2008,Mr. Cassidy +DPEC Member ,District 1 ,,,,LA,,,JEFFERSON DAVIS,,,,,,,0,,,,,56,,, +DPEC Member ,District 2 ,,,,LA,,,JEFFERSON DAVIS,,,,,,,0,,,,,56,,, +DPEC Member ,District 3 ,,,,LA,,,JEFFERSON DAVIS,,,,,,,0,,,,,56,,, +DPEC Member ,District 4 ,,,,LA,,,JEFFERSON DAVIS,,,,,,,0,,,,,56,,, +DPEC Member ,District 5 ,,,,LA,,,JEFFERSON DAVIS,,,,,,,0,,,,,56,,, +DPEC Member ,District 6 ,,,,LA,,,JEFFERSON DAVIS,,,,,,,0,,,,,56,,, +DPEC Member ,District 7 ,,,,LA,,,JEFFERSON DAVIS,,,,,,,0,,,,,56,,, +DPEC Member ,District 8 ,,,,LA,,,JEFFERSON DAVIS,,,,,,,0,,,,,56,,, +DPEC Member ,District 9 ,,,,LA,,,JEFFERSON DAVIS,,,,,,,0,,,,,56,,, +DPEC Member ,District 10 ,,,,LA,,,JEFFERSON DAVIS,,,,,,,0,,,,,56,,, +DPEC Member ,District 11 ,,,,LA,,,JEFFERSON DAVIS,,,,,,,0,,,,,56,,, +DPEC Member ,District 12 ,,,,LA,,,JEFFERSON DAVIS,,,,,,,0,,,,,56,,, +DPEC Member ,District 13 ,,,,LA,,,JEFFERSON DAVIS,,,,,,,0,,,,,56,,, +RPEC Member ,at Large ,,,,LA,,,JEFFERSON DAVIS,,,,,,,0,,,,,64,,, +RPEC Member ,District 1 ,,,,LA,,,JEFFERSON DAVIS,,,,,,,0,,,,,66,,, +RPEC Member ,District 2 ,,,,LA,,,JEFFERSON DAVIS,Fred Schlesinger,821 N. Hwy. 26,,Lake Arthur,LA,70549-3407,10,337-774-2213,W,M,R,66,2/20/2012,2/20/2008,Mr. Schlesinger +RPEC Member ,District 3 ,,,,LA,,,JEFFERSON DAVIS,,,,,,,0,,,,,66,,, +RPEC Member ,District 4 ,,,,LA,,,JEFFERSON DAVIS,Charles C. Achane,P. O. Box 963,,Jennings,LA,70546,5,337-296-8580,B,M,R,66,2/20/2012,2/20/2008,Mr. Achane +RPEC Member ,District 5 ,,,,LA,,,JEFFERSON DAVIS,,,,,,,0,,,,,66,,, +RPEC Member ,District 6 ,,,,LA,,,JEFFERSON DAVIS,,,,,,,0,,,,,66,,, +RPEC Member ,District 7 ,,,,LA,,,JEFFERSON DAVIS,,,,,,,0,,,,,66,,, +RPEC Member ,District 8 ,,,,LA,,,JEFFERSON DAVIS,,,,,,,0,,,,,66,,, +RPEC Member ,District 9 ,,,,LA,,,JEFFERSON DAVIS,,,,,,,0,,,,,66,,, +RPEC Member ,District 10 ,,,,LA,,,JEFFERSON DAVIS,,,,,,,0,,,,,66,,, +RPEC Member ,District 11 ,,,,LA,,,JEFFERSON DAVIS,,,,,,,0,,,,,66,,, +RPEC Member ,District 12 ,,,,LA,,,JEFFERSON DAVIS,,,,,,,0,,,,,66,,, +RPEC Member ,District 13 ,,,,LA,,,JEFFERSON DAVIS,,,,,,,0,,,,,66,,, +Sheriff ,,P. O. Box 1449,,Jennings,LA,70546,337-821-2100,JEFFERSON DAVIS,"Richard ""Ricky"" Edwards, Jr.",P.O. Box 1449,,Jennings,LA,70546,5,337-824-5124,W,M,D,225,6/30/2012,7/1/2008,Sheriff Edwards +Clerk of Court ,,P. O. Box 799,,Jennings,LA,70546,337-824-1160,JEFFERSON DAVIS,Richard M. Arceneaux,P.O. Box 243,,Welsh,LA,70591,5,337-734-2220,W,M,D,230,6/30/2012,7/1/2008, +Assessor ,,"Cths. Bldg., Rm. 103 300 State St.",,Jennings,LA,70546,377-824-3451,JEFFERSON DAVIS,Donald G. Kratzer,1402 N. Sherman St.,,Jennings,LA,70546,5,337-824-0126,W,M,D,235,12/31/2012,1/1/2009,Mr. Kratzer +Coroner ,,4153 Aaron Road,,Jennings,LA,70546,337-824-6072,JEFFERSON DAVIS,"Charles J. Deese, ",1110 E Gallaugher Rd.,,Jennings,LA,70546-3238,10,337-824-5226,W,M,N,240,,2/15/2010, +Police Juror,District 1,P. O. Box 1409,,Jennings,LA,70546,337-824-4792,JEFFERSON DAVIS,"""Donald"" Woods",5008 Hwy 14,,Lake Arthur,LA,70549,5,337-774-3413,W,M,D,245,1/8/2012,1/14/2008,Mr. Woods +Police Juror ,District 2 ,P. O. Box 1409,,Jennings,LA,70546,337-824-4792,JEFFERSON DAVIS,John Marceaux,828 N. Hwy 26,,Lake Arthur,LA,70549,5,337-774-3728,W,M,R,245,1/8/2012,1/14/2008,Mr. Marceaux +Police Juror ,District 3 ,P. O. Box 1409,,Jennings,LA,70546,337-824-4792,JEFFERSON DAVIS,Warren A. Woods,1507 S. Cutting Ave.,,Jennings,LA,70546,5,337-824-4263,B,M,D,245,1/8/2012,1/14/2008,Mr. Woods +Police Juror ,District 4 ,P. O. Box 1409,,Jennings,LA,70546,337-824-4792,JEFFERSON DAVIS,Bradley Eastman,1205 W. Division St.,,Jennings,LA,70546,5,337-824-6178,W,M,D,245,1/8/2012,1/14/2008,Mr. Eastman +Police Juror ,District 5 ,P. O. Box 1409,,Jennings,LA,70546,337-824-4792,JEFFERSON DAVIS,"""Tom"" Kilpatrick",827 Comfort Lane,,Jennings,LA,70546,5,337-224-2420,W,M,R,245,1/8/2012,1/14/2008,Mr. Kilpatrick +Police Juror ,District 6 ,P. O. Box 1409,,Jennings,LA,70546,337-824-4792,JEFFERSON DAVIS,"Melvin ""Moe"" Adams",210 E. Sumner St.,,Jennings,LA,70546,5,337-824-9460,B,M,D,245,1/8/2012,1/14/2008,Mr. Adams +Police Juror ,District 7 ,P. O. Box 1409,,Jennings,LA,70546,337-824-4792,JEFFERSON DAVIS,"""Steve"" Eastman",430 E. Nezpique St.,,Jennings,LA,70546,5,337-824-8039,W,M,D,245,1/8/2012,1/14/2008,Mr. Eastman +Police Juror ,District 8 ,P. O. Box 1409,,Jennings,LA,70546,337-824-4792,JEFFERSON DAVIS,"""Joe"" Landry",22191 Hwy. 26,,Jennings,LA,70546,5,337-824-4979,W,M,R,245,1/8/2012,1/14/2008,Mr. Landry +Police Juror ,District 9 ,P. O. Box 1409,,Jennings,LA,70546,337-824-4792,JEFFERSON DAVIS,Curt Guillory,27129 Picket Rd.,,Elton,LA,70532-4312,10,337-584-2360,W,M,D,245,1/8/2012,1/14/2008,Mr. Guillory +Police Juror ,District 10 ,P. O. Box 1409,,Jennings,LA,70546,337-824-4792,JEFFERSON DAVIS,Byron Buller,25009 Barker Rd.,,Kinder,LA,70648,5,337-738-5710,W,M,D,245,1/8/2012,1/14/2008,Mr. Buller +Police Juror ,District 11 ,P. O. Box 1409,,Jennings,LA,70546,337-824-4792,JEFFERSON DAVIS,Mark A. Pousson,11308 Pecan Orchard Rd.,,Welsh,LA,70591,5,337-734-3231,W,M,D,245,1/8/2012,10/14/2008,Mr. Pousson +Police Juror ,District 12 ,P. O. Box 1409,,Jennings,LA,70546,337-824-4792,JEFFERSON DAVIS,"""Bill"" Wild",9256 Artemond Rd.,,Welsh,LA,70591-5725,10,337-753-2466,W,M,D,245,1/8/2012,1/14/2008,Mr. Wild +Police Juror ,District 13 ,P. O. Box 1409,,Jennings,LA,70546,337-824-4792,JEFFERSON DAVIS,Miron Navarre,10220 Demarest Rd.,,Welsh,LA,70591-5932,10,337-734-4800,W,M,R,245,1/8/2012,1/14/2008,Mr. Navarre +City Judge ,"City Court, City of Jennings ",P. O. Box 609,,Jennings,LA,70546,337-821-5514,JEFFERSON DAVIS,Daniel Stretcher,703 May St.,,Jennings,LA,70546,5,337-824-0110,W,M,,250,12/31/2014,10/15/2008,Judge Stretcher +City Marshal ,"City Court, City of Jennings ",P. O. Box 609,,Jennings,LA,70546,337-821-5514,JEFFERSON DAVIS,"Clarence L. Cormier, Jr.",818 N. Cutting Ave.,,Jennings,LA,70546-4858,10,337-824-1314,W,M,D,250,12/31/2014,1/1/2009,Marshal Cormier +Member of School Board ,District 1 ,P. O. Box 640,,Jennings,LA,70546,337-824-1834,JEFFERSON DAVIS,"""Greg"" Bordelon",6173 Morgan Shores Rd.,,Lake Arthur,LA,70549-5314,10,337-774-2172,W,M,,255,12/31/2010,1/1/2007,Mr. Bordelon +Member of School Board ,District 2 ,P. O. Box 640,,Jennings,LA,70546,337-824-1834,JEFFERSON DAVIS,Malon Dobson,P.O. Box 261,,Lake Arthur,LA,70549,5,337-774-3024,W,M,D,255,12/31/2010,1/1/2007,Mr. Dobson +Member of School Board ,District 3 ,P. O. Box 640,,Jennings,LA,70546,337-824-1834,JEFFERSON DAVIS,Phillip Arceneaux,P.O. Box 445,,Jennings,LA,70546,5,337-824-0279,B,M,D,255,12/31/2010,2/23/2009,Mr. Arceneaux +Member of School Board ,District 4 ,P. O. Box 640,,Jennings,LA,70546,337-824-1834,JEFFERSON DAVIS,"Robert W. ""Rob"" Menard",818 W. Academy Ave.,,Jennings,LA,70546,5,337-824-8125,W,M,,255,12/31/2010,1/1/2007,Mr. Menard +Member of School Board ,District 5 ,P. O. Box 640,,Jennings,LA,70546,337-824-1834,JEFFERSON DAVIS,"""Donn E"" Dees",1719 N. Main St.,,Jennings,LA,70546,5,337-824-6005,W,M,D,255,12/31/2010,1/1/2007,Mr. Dees +Member of School Board ,District 6 ,P. O. Box 640,,Jennings,LA,70546,337-824-1834,JEFFERSON DAVIS,"David S. ""Cap's"" Capdeville",302 Mulkern St.,,Jennings,LA,70546,5,337-824-1495,B,M,D,255,12/31/2010,1/1/2007,Mr. Capdeville +Member of School Board ,District 7 ,P. O. Box 640,,Jennings,LA,70546,337-824-1834,JEFFERSON DAVIS,"""Jimmy"" Segura",315 Crail St.,,Jennings,LA,70546,5,337-824-3013,W,M,O,255,12/31/2010,1/1/2007,Mr. Segura +Member of School Board ,District 8 ,P. O. Box 640,,Jennings,LA,70546,337-824-1834,JEFFERSON DAVIS,Michael J. Heinen,21014 Dama Landry Rd.,,Jennings,LA,70546-8846,10,337-824-3510,W,M,O,255,12/31/2010,1/1/2007,Mr. Heinen +Member of School Board ,District 9 ,P. O. Box 640,,Jennings,LA,70546,337-824-1834,JEFFERSON DAVIS,Charles Bruchhaus,4535 Dan Buller Rd.,,Elton,LA,70532,5,337-584-2937,W,M,D,255,12/31/2010,1/1/2007,Mr. Bruchhaus +Member of School Board ,District 10 ,P. O. Box 640,,Jennings,LA,70546,337-824-1834,JEFFERSON DAVIS,Richard McNabb,203 East Plaquemine St.,,Jennings,LA,70546,5,337-756-2340,W,M,O,255,12/31/2010,1/1/2007,Mr. McNabb +Member of School Board ,District 11 ,P. O. Box 640,,Jennings,LA,70546,337-824-1834,JEFFERSON DAVIS,Mark Boudreaux,405 S. Polk St.,,Welsh,LA,70591,5,337-734-2470,W,M,R,255,12/31/2010,1/1/2007,Mr. Boudreaux +Member of School Board ,District 12 ,P. O. Box 640,,Jennings,LA,70546,337-824-1834,JEFFERSON DAVIS,Jason J. Bouley,P.O. Box 192,,Roanoke,LA,70581-0192 ,11,337-753-2370,W,M,,255,12/31/2010,1/1/2007,Mr. Bouley +Member of School Board ,District 13 ,P. O. Box 640,,Jennings,LA,70546,337-824-1834,JEFFERSON DAVIS,"Julius ""Bubba"" Caraway",13168 Hornsby Rd.,,Iowa,LA,70647-6611,10,337-588-4269,W,M,R,255,12/31/2010,1/1/2007,Mr. Caraway +Justice of the Peace ,Justice of the Peace Ward 1 ,413 Kellogg Ave.,,Lake Arthur,LA,70549,337-774-5263,JEFFERSON DAVIS,Debbie Abshire,413 Kellog St.,,Lake Arthur,LA,70549,5,337-774-5263,W,F,D,265,12/31/2014,1/1/2009,Ms. Abshire +Justice of the Peace ,Justice of the Peace Ward 2 ,P. O. Box 309,,Elton,LA,70532,337-584-2811,JEFFERSON DAVIS,Linda G. Langley,309 Johnson St.,,Elton,LA,70532,5,337-584-2421,W,F,D,265,12/31/2014,1/1/2009,Ms. Langley +Justice of the Peace ,Justice of the Peace Ward 3 ,4325 Luthers Rd.,,Iowa,LA,70647,337-582-1669,JEFFERSON DAVIS,Tammie Miller,4351 Luthers Rd.,,Iowa,LA,70647,5,337-582-1669,W,F,D,265,12/31/2014,1/1/2009,Ms. Miller +Justice of the Peace ,Justice of the Peace Ward 4 ,103 Providence Ln.,,Welsh,LA,70591,337-734-2356,JEFFERSON DAVIS,Robert B. Ramagos,609 Beaufort St.,,Welsh,LA,70591,5,337-734-2356,W,M,O,265,12/31/2014,1/1/2009,Mr. Ramagos +Justice of the Peace ,Justice of the Peace Ward 5 ,6075 Grand Marias Rd.,,Jennings,LA,70546,337-824-4889,JEFFERSON DAVIS,Jennifer Courville Landry,4406 Pine Island Hwy.,,Jennings,LA,70546-6530,10,337-824-2835,W,F,R,265,12/31/2014,1/1/2009,Ms. Landry +Justice of the Peace ,Justice of the Peace Ward 6 ,21503 Pinehill Cemetery Rd.,,Iowa,LA,70647,,JEFFERSON DAVIS,George Gotreaux,21503 Pinehill Cemetary Rd.,,Iowa,LA,70647,5,337-582-3170,W,M,D,265,12/31/2014,1/1/2009,Mr. Gotreaux +Constable ,Justice of the Peace Ward 1 ,P.O. Box 253,,Lake Arthur,LA,70549,337-774-3471,JEFFERSON DAVIS,"C. H. ""Brandy"" Hammond",P. O. Box 455,,Lake Arthur,LA,70549,5,337-774-2852,W,M,R,267,12/31/2014,1/1/2009,Mr. Hammond +Constable ,Justice of the Peace Ward 2 ,P.O. Box 547,,Elton,LA,70532,337-584-2617,JEFFERSON DAVIS,"Cursey ""Junior"" Marcantel",P. O. Box 547,,Elton,LA,70532,5,337-584-2617,W,M,D,267,12/31/2014,1/1/2009,Mr. Marcantel +Constable ,Justice of the Peace Ward 3 ,25136 LA Hwy. 165,,Kinder,LA,70648,337-738-5755,JEFFERSON DAVIS,Clarence Talbert,P. O. Box 465,,Fenton,LA,70640,5,337-263-0837,B,M,D,267,12/31/2014,1/1/2009,Mr. Talbert +Constable ,Justice of the Peace Ward 4 ,609 S. Dautel St.,,Welsh,LA,70591-4709,337-734-2580,JEFFERSON DAVIS,Robyn Leblanc,202 Rowland St.,,Welsh,LA,70591,5,337-387-9188,W,F,D,267,12/31/2014,1/1/2009,Ms. LeBlanc +Constable ,Justice of the Peace Ward 5 ,6326 Bryan Rd.,,Jennins,LA,70546,337-824-0822,JEFFERSON DAVIS,Joseph W. Guidry,6326 Bryan Rd.,,Jennings,LA,70546,5,337-824-0822,W,M,D,267,12/31/2014,1/1/2009,Mr. Guidry +Constable ,Justice of the Peace Ward 6 ,P.O. Box 85,,Lacassine,LA,70650,337-588-4485,JEFFERSON DAVIS,Lee Adam Landry,319 Romero St.,,Lacassine,LA,70650,5,337-588-4485,W,M,D,267,12/31/2014,1/1/2009,Mr. Landry +Mayor ,City of Jennings ,P. O. Drawer 1249,,Jennings,LA,,337-821-5500,JEFFERSON DAVIS,Terry W. Duhon,1106 Granger St.,,Jennings,LA,70546,5,337-824-3163,W,M,D,300,6/30/2013,7/1/2009,Mayor Duhon +Mayor ,Town of Elton ,P. O. Box 27,,Elton,LA,,337-584-2992,JEFFERSON DAVIS,"""Cathy"" Hollingsworth",P.O. Box 542,,Elton,LA,70532,5,337-584-2759,W,F,D,300,12/31/2010,1/1/2007,Ms. Collinsworth +Mayor ,Town of Lake Arthur ,P. O. Drawer AK,,Lake Arthur,LA,,337-774-2211,JEFFERSON DAVIS,"E. R. ""Red"" Giles",P.O. Box 832,,Lake Arthur,LA,70549,5,337-774-5154,W,M,D,300,12/31/2010,1/1/2007,Mr. Giles +Mayor ,Town of Welsh ,P. O. Box 786,,Welsh,LA,,337-734-2231,JEFFERSON DAVIS,Carolyn Louviere,P.O. Box 824,,Welsh,LA,70591,5,337-734-3983,W,F,D,300,12/31/2012,1/1/2009,Mayor Louviere +Mayor ,Village of Fenton ,P. O. Box 310,,Fenton,LA,,337-756-2321,JEFFERSON DAVIS,"Eddie B. Alfred, Jr.",P.O. Box 106,,Fenton,LA,70640,5,337-756-2324,B,M,D,300,12/31/2012,1/1/2009,Mayor Alfred +Chief of Police ,Town of Elton ,P. O. Box 27,,Elton,LA,70532,337-584-2992,JEFFERSON DAVIS,Chad Carrier,P.O. Box 884,,Elton,LA,70532,5,337-329-2627,W,M,R,305,12/31/2010,1/1/2007,Mr. Carrier +Chief of Police ,Town of Lake Arthur ,P. O. Drawer AK,,Lake Arthur,LA,70549,337-774-2211,JEFFERSON DAVIS,Cheryl Vincent,136 Grand Ave.,,Lake Arthur,LA,70549,5,337-224-1844,W,F,D,305,12/31/2010,1/1/2007,Mr. Vincent +Chief of Police ,Town of Welsh ,P. O. Box 786,,Welsh,LA,70591,337-734-2231,JEFFERSON DAVIS,Tommy Chaisson,P. O. Box 382,,Welsh,LA,70591,5,337-802-4711,W,M,,305,12/31/2012,1/1/2009,Chief Chaisson +Chief of Police ,Village of Fenton ,,,,LA,,,JEFFERSON DAVIS,"Luther ""Sam"" Alfred",318 Fifth St.,,Fenton,LA,70640,5,337-756-2584,B,M,,305,12/31/2012,1/1/2009,Mr. Alfred +Alderman ,Town of Welsh ,P. O. Box 786,,Welsh,LA,70591,337-734-2231,JEFFERSON DAVIS,Allen Ardoin,P. O. Box 511,,Welsh,LA,70591,5,337-734-4212,W,M,D,310,12/31/2012,1/1/2009,Mr. Ardoin +Alderman ,Town of Welsh ,P. O. Box 786,,Welsh,LA,70591,337-734-2231,JEFFERSON DAVIS,"""Jimmy"" Cormier",109 S. Elms St.,,Welsh,LA,70591,5,337-275-1147,W,M,D,310,12/31/2012,1/1/2009,Mr. Cormier +Alderman ,Town of Welsh ,P. O. Box 786,,Welsh,LA,70591,337-734-2231,JEFFERSON DAVIS,Charles Drake,316 Davis St.,,Welsh,LA,70591,5,337-734-4759,B,M,D,310,12/31/2012,1/1/2009,Mr. Drake +Alderman ,Town of Welsh ,P. O. Box 786,,Welsh,LA,70591,337-734-2231,JEFFERSON DAVIS,Becky Hudson,109 South St.,,Welsh,LA,70591,5,337-734-4584,W,F,D,310,12/31/2012,1/1/2009,Ms. Hudson +Alderman ,Town of Welsh ,P. O. Box 786,,Welsh,LA,70591,337-734-2231,JEFFERSON DAVIS,Gloria King Viney,1211 Welsh St.,,Welsh,LA,70591-4041,10,337-734-4977,B,F,D,310,12/31/2012,1/1/2009,Ms. Viney +Alderman ,Village of Fenton ,P. O. Box 310,,Fenton,LA,70640-0310 ,337-756-2321,JEFFERSON DAVIS,"Eddie Alfred, Sr.",P.O. Box 24,,Fenton,LA,70640,5,337-756-2598,B,M,D,310,12/31/2012,1/1/2009,Mr. Alfred +Alderman ,Village of Fenton ,P. O. Box 310,,Fenton,LA,70640-0310 ,337-756-2321,JEFFERSON DAVIS,"""Fred"" Arclies",P.O. Box 21,,Fenton,LA,70640,5,337-756-2234,B,M,O,310,12/31/2012,1/1/2009,Mr. Arclies +Alderman ,Village of Fenton ,P. O. Box 310,,Fenton,LA,70640-0310 ,337-756-2321,JEFFERSON DAVIS,Mary Jones,P. O. Box 425,,Fenton,LA,70640-0425 ,11,337-756-2386,B,F,D,310,12/31/2012,1/1/2009,Ms. Jones +Council Member ,Town of Elton ,P. O. Box 27,,Elton,LA,70532,337-584-2992,JEFFERSON DAVIS,Tracie Doescher,P.O. Box 8,,Elton,LA,70532,5,337-584-3026,W,F,,310,12/31/2010,1/1/2007,Ms. Doescher +Council Member ,Town of Elton ,P. O. Box 27,,Elton,LA,70532,337-584-2992,JEFFERSON DAVIS,"Durffey Joseph Fontenot, Jr.",P.O. Box 936,,Elton,LA,70532,5,337-584-2093,B,M,O,310,12/31/2010,1/1/2007,Mr. Fontenot +Council Member ,Town of Elton ,P. O. Box 27,,Elton,LA,70532,337-584-2992,JEFFERSON DAVIS,Kimberly Manuel Guidry,P.O. Box 866,,Elton,LA,70532,5,337-584-2481,W,F,D,310,12/31/2010,1/1/2007,Ms. Guidry +Council Member ,Town of Elton ,P. O. Box 27,,Elton,LA,70532,337-584-2992,JEFFERSON DAVIS,"Alphonse ""Kotch"" Guillory",P.O. Box 111,,Elton,LA,70532-5407,10,337-584-2898,W,M,D,310,12/31/2010,1/1/2007,Mr. Guillory +Council Member ,Town of Elton ,P. O. Box 27,,Elton,LA,70532,337-584-2992,JEFFERSON DAVIS,Margaret G. Langley,P.O. Box 401,,Elton,LA,70532,5,337-584-5105,W,F,D,310,12/31/2010,1/1/2007,Ms. Langley +Council Member ,Town of Lake Arthur ,P. O. Drawer AK,,Lake Arthur,LA,70549,337-774-2211,JEFFERSON DAVIS,Dorothy L. Charles,635 New Orleans Ave.,,Lake Arthur,LA,70549,5,337-774-2666,B,F,D,310,12/31/2010,1/1/2007,Ms. Charles +Council Member ,Town of Lake Arthur ,P. O. Drawer AK,,Lake Arthur,LA,70549,337-774-2211,JEFFERSON DAVIS,Kirk J. Conner,712 Arthur Ave.,,Lake Arthur,LA,70549,5,337-774-5563,W,M,R,310,12/31/2010,1/1/2007,Mr. Conner +Council Member ,Town of Lake Arthur ,P. O. Drawer AK,,Lake Arthur,LA,70549,337-774-2211,JEFFERSON DAVIS,Ellsworth Duhon,222 Hwy. 14,,Lake Arthur,LA,70549-4805,10,337-774-3675,W,M,D,310,12/31/2010,1/1/2007,Mr. Duhon +Council Member ,Town of Lake Arthur ,P. O. Drawer AK,,Lake Arthur,LA,70549,337-774-2211,JEFFERSON DAVIS,David A. Hanks,1311 State St.,,Lake Arthur,LA,70549,5,337-774-3902,W,M,D,310,12/31/2010,1/1/2007,Mr. Hanks +Council Member ,Town of Lake Arthur ,P. O. Drawer AK,,Lake Arthur,LA,70549,337-774-2211,JEFFERSON DAVIS,"""Cindy"" Lapoint",P.O. Box 467,,Lake Arthur,LA,70549-3301,10,337-774-5625,W,F,D,310,12/31/2010,1/1/2007,Ms. Lapoint +Councilman ,"District A, City of Jennings ",P. O. Drawer 1249,,Jennings,LA,70546,337-821-5500,JEFFERSON DAVIS,Rogeous Lawdins,1626 S. Main St.,,Jennings,LA,70546,5,337-824-5785,B,M,D,310,6/30/2013,7/1/2009,Mr. Lawdins +Councilman ,"District B, City of Jennings ",P. O. Drawer 1249,,Jennings,LA,70546,337-821-5500,JEFFERSON DAVIS,"""Johnny"" Armentor",1405 W. Division St.,,Jennings,LA,70546,5,337-824-8872,W,M,R,310,6/30/2013,7/1/2009,Mr. Armentor +Councilman ,"District C, City of Jennings ",P. O. Drawer 1249,,Jennings,LA,70546,337-821-5500,JEFFERSON DAVIS,Trey Myers,418 May St.,,Jennings,LA,70546,5,337-824-5426,W,M,,310,6/30/2013,7/1/2009,Mr. Myers +Councilman ,"District D, City of Jennings ",P. O. Drawer 1249,,Jennings,LA,70546,337-821-5500,JEFFERSON DAVIS,"Anthony Philip LeBlanc, Jr.",214 E. Sumner St.,,Jennings,LA,70546,5,337-824-6821,B,M,D,310,6/30/2013,7/1/2009,Mr. LeBlanc +Councilman ,"District E, City of Jennings ",P. O. Drawer 1249,,Jennings,LA,70546,337-821-5500,JEFFERSON DAVIS,"""Stevie"" VanHook",2140 E. Academy Ave.,,Jennings,LA,70546,5,337-824-7905,W,M,R,310,6/30/2013,7/1/2009,Mr. VanHook +DPEC Member ,at Large ,,,,LA,,,LAFAYETTE,Ann L. Ardoin,112 D Hess Rd.,,Carencro,LA,70520,5,337-896-8211,W,F,D,54,2/20/2012,2/20/2008,Ms. Ardoin +DPEC Member ,at Large ,,,,LA,,,LAFAYETTE,"Alfred F. Boustany, II",P.O. Box 4626,,Lafayette,LA,70502,5,337-237-2147,W,M,D,54,2/20/2012,2/20/2008,Mr. Boustany +DPEC Member ,at Large ,,,,LA,,,LAFAYETTE,"""Jeff"" Moss",814 S. Washington St.,,Lafayette,LA,70501,5,337-237-6280,W,M,D,54,2/20/2012,2/20/2008,Mr. Moss +DPEC Member ,at Large ,,,,LA,,,LAFAYETTE,Wilfred Pierre,105 Maglorie Rd.,,Lafayette,LA,70501,5,337-261-0044,B,M,D,54,2/20/2012,2/20/2008,Mr. Pierre +DPEC Member ,at Large ,,,,LA,,,LAFAYETTE,Mike Stagg,153 Shady Oaks Dr.,,Lafayette,LA,70506,5,337-261-8116,W,M,D,54,2/20/2012,2/20/2008,Mr. Stagg +DPEC Member ,District 1 ,,,,LA,,,LAFAYETTE,Susannah J. Malbreaux,305 Nashua Dr.,,Carencro,LA,70520,5,337-896-7489,B,F,D,56,2/20/2012,2/20/2008,Ms. Malbreaux +DPEC Member ,District 2 ,,,,LA,,,LAFAYETTE,"""Greg"" Dean",177 Greenfield,,Carencro,LA,70520,5,337-896-4614,W,M,D,56,2/20/2012,2/20/2008,Mr. Dean +DPEC Member ,District 3 ,,,,LA,,,LAFAYETTE,Jerilyn M. Hill,1127 W. Gilman Rd.,,Lafayette,LA,70501,5,337-235-7982,B,F,D,56,2/20/2012,2/20/2008,Ms. Hill +DPEC Member ,District 4 ,,,,LA,,,LAFAYETTE,Lester Gauthier,P.O. Box 3371,,Lafayette,LA,70502,5,337-235-1811,W,M,D,56,2/20/2012,2/20/2008,Mr. Gauthier +DPEC Member ,District 5 ,,,,LA,,,LAFAYETTE,Stephen Handwerk,205 Pinto St.,,Lafayette,LA,70506,5,337-991-0294,W,M,D,56,2/20/2012,2/20/2008,Mr. Handwerk +DPEC Member ,District 6 ,,,,LA,,,LAFAYETTE,John D. Bernhardt,P.O. Box 52309,,Lafayette,LA,70505,5,337-232-6510,W,M,D,56,2/20/2012,2/20/2008,Mr. Bernhardt +DPEC Member ,District 7 ,,,,LA,,,LAFAYETTE,"""Ken"" Bouillion",420 Lippi Blvd.,,Lafayette,LA,70508,5,337-234-6303,W,M,D,56,2/20/2012,2/20/2008,Mr. Bouillion +DPEC Member ,District 8 ,,,,LA,,,LAFAYETTE,Glenn Armentor,300 Stewart St.,,Lafayette,LA,70501,5,337-233-1471,W,M,D,56,2/20/2012,2/20/2008,Mr. Armentor +DPEC Member ,District 9 ,,,,LA,,,LAFAYETTE,Boyd F. Zeke Zitzmann,P.O. Box 1315,,Broussard,LA,70518,5,337-322-3555,W,M,D,56,2/20/2012,2/20/2008,Mr. Zitzmann +RPEC Member ,at Large ,,,,LA,,,LAFAYETTE,"""Ernie"" Alexander",301 Leonpacher Rd.,,Lafayette,LA,70508,5,337-232-9124,W,M,R,64,2/20/2012,2/20/2008,Mr. Alexander +RPEC Member ,at Large ,,,,LA,,,LAFAYETTE,"Stanley ""Tee"" Brosky",319 Marilyn Dr.,,Lafayette,LA,70503,5,337-981-5807,W,M,R,64,2/20/2012,2/20/2008,Mr. Brosky +RPEC Member ,at Large ,,,,LA,,,LAFAYETTE,"Ronald ""Ron"" Gomez",305 Annunciation St.,,Lafayette,LA,70508,5,337-981-9325,W,M,R,64,2/20/2012,2/20/2008,Mr Gomez +RPEC Member ,at Large ,,,,LA,,,LAFAYETTE,Judy F. Keller,103 Huntington Dr.,,Lafayette,LA,70508,5,337-984-4517,W,F,R,64,2/20/2012,2/20/2008,Ms. Keller +RPEC Member ,at Large ,,,,LA,,,LAFAYETTE,Timothy Reynolds,309 Digby Ave.,,Lafayette,LA,70508,5,337-988-1031,W,M,R,64,2/20/2012,2/20/2008,MR. Reynolds +RPEC Member ,District 1 ,,,,LA,,,LAFAYETTE,Michael Louis Hebert,109 Broadway Dr.,,Scott,LA,70583,5,337-235-0377,W,M,R,66,2/20/2012,2/20/2008,Mr. Miller +RPEC Member ,District 2 ,,,,LA,,,LAFAYETTE,Raymond Lalonde,114 Froeba Dr.,,Carencro,LA,70520,5,337-896-7958,W,M,R,66,2/20/2012,2/20/2008,Mr. Lalonde +RPEC Member ,District 3 ,,,,LA,,,LAFAYETTE,Peggy Castille,542 Renaud Dr.,,Lafayette,LA,70507,5,337-234-3922,W,F,R,66,2/20/2012,2/20/2008,Ms. Castille +RPEC Member ,District 4 ,,,,LA,,,LAFAYETTE,"W. Thomas ""Tom"" Angers",116 Teche Dr.,,Lafayette,LA,70505,5,337-233-3268,W,M,R,66,2/20/2012,2/20/2008,MR. Angers +RPEC Member ,District 5 ,,,,LA,,,LAFAYETTE,"""Charlie"" Buckels",202 Sommerset,,Lafayette,LA,70506,5,337-981-3000,W,M,R,66,2/20/2012,2/20/2008,MR. Buckels +RPEC Member ,District 6 ,,,,LA,,,LAFAYETTE,Denice C. Skinner,110 Primrose Ln.,,Lafayette,LA,70506,5,337-237-6019,W,F,R,66,2/20/2012,2/20/2008,Ms. Skinner +RPEC Member ,District 7 ,,,,LA,,,LAFAYETTE,C. Mark Gremillion,226 Beverly Dr.,,Lafayette,LA,70503,5,337-234-8564,W,M,R,66,2/20/2012,2/20/2008,Mr. Gremillion +RPEC Member ,District 8 ,,,,LA,,,LAFAYETTE,"Ross Little, Jr.",100 Harwell,,Lafayette,LA,70503,5,337-981-1749,W,M,R,66,2/20/2012,2/20/2008,Mr. Little +RPEC Member ,District 9 ,,,,LA,,,LAFAYETTE,,,,,,,0,,,,,66,,, +Sheriff ,,P. O. Drawer 3508,,Lafayette,LA,70502,337-232-9211,LAFAYETTE,"""Mike"" Neustrom",P.O. Drawer 3508,,Lafayette,LA,70502,5,337-237-0778,W,M,D,225,6/30/2012,7/1/2008,Sheriff Neustrom +Clerk of Court ,,P. O. Box 2009,,Lafayette,LA,70502,337-233-0150,LAFAYETTE,Louis J. Perret,P. O. Box 2009,,Lafayette,LA,70502,5,337-232-1030,W,M,R,230,6/30/2012,7/1/2008,Mr. Perret +Assessor ,,P.O. Box 3225,,Lafayette,LA,70502-3325,337-291-7080,LAFAYETTE,Conrad T. Comeaux,103 Glynnwood Ave.,,Lafayette,LA,70506,5,337-234-5906,W,M,R,235,12/31/2012,1/1/2009,Mr. Comeaux +Coroner ,,1006 Bertrand Drive,,Lafayette,LA,70506,337-291-7100,LAFAYETTE,Kenneth L. Odinet,304 Beverly,,Lafayette,LA,70503,5,337-234-8648,W,M,R,240,3/25/2012,3/24/2008,Mr. Odinet +City-Parish President ,,P.O. Box 4017-C,,Lafayette,LA,,337-291-8810,LAFAYETTE,"L. J. ""Joey"" Durel, Jr.",316 Steiner Rd.,,Lafayette,LA,70508,5,337-981-1094,W,M,R,243,1/2/2012,1/7/2008,Mr. Durel +Member,"City-Parish Council, District 1",P. O. Box 4017-C,,Lafayette,LA,70502,337-291-8810,LAFAYETTE,Purvis Morrison,125 Andres Rd.,,Scott,LA,70583,5,337-873-9634,B,M,D,245,1/2/2012,1/7/2008,Mr. Morrison +Member ,"City-Parish Council, District 2 ",P. O. Box 4017-C,,Lafayette,LA,70502,337-291-8810,LAFAYETTE,"Joseph ""Jay"" Castille, Jr.",105 St. Girons,,Lafayette,LA,70507,5,337-232-6125,W,M,D,245,1/2/2012,1/7/2008,Mr. Castille +Member ,"City-Parish Council, District 3 ",P. O. Box 4017-C,,Lafayette,LA,70502,337-291-8810,LAFAYETTE,Brandon Shelvin,301 Monarch Dr.,,Lafayette,LA,70506,5,337-264-6272,B,M,D,245,1/2/2012,1/7/2008,Mr. Shelvin +Member ,"City-Parish Council, District 4 ",P. O. Box 4017-C,,Lafayette,LA,70502,337-291-8810,LAFAYETTE,Kenneth P. Boudreaux,P.O. Box 92712,,Lafayette,LA,70509,5,337-237-2793,B,M,D,245,1/2/2012,1/7/2008,Mr. Boudreaux +Member ,"City-Parish Council, District 5 ",P. O. Box 4017-C,,Lafayette,LA,70502,337-291-8810,LAFAYETTE,Jared Bellard,116 Creswell Ave.,,Scott,LA,70583,5,337-261-5730,W,M,R,245,1/2/2012,1/7/2008,Mr. Bellard +Member ,"City-Parish Council, District 6 ",P. O. Box 4017-C,,Lafayette,LA,70502,337-291-8810,LAFAYETTE,"""Sam"" Dore",102 Federal St.,,Lafayette,LA,70506,5,337-989-0950,W,M,R,245,1/2/2012,5/12/2009,Mr. Dore +Member ,"City-Parish Council, District 7 ",P. O. Box 4017-C,,Lafayette,LA,70502,337-291-8810,LAFAYETTE,"Donald L. ""Don"" Bertrand",P.O. Box 81098,,Lafayette,LA,70598,5,337-257-9427,W,M,R,245,1/2/2012,1/7/2008,Mr. Bertrand +Member ,"City-Parish Council, District 8 ",P. O. Box 4017-C,,Lafayette,LA,70502,337-291-8810,LAFAYETTE,Keith J. Patin,636 Alonda,,Lafayette,LA,70503,5,337-984-4170,W,M,R,245,1/2/2012,1/7/2008,Mr. Patin +Member ,"City-Parish Council, District 9 ",P. O. Box 4017-C,,Lafayette,LA,70502,337-291-8810,LAFAYETTE,William Theriot,4949 Verot School Rd.,,Youngsville,LA,70592,5,337-856-9063,W,M,R,245,1/2/2012,1/7/2008,Mr. Theriot +City Judge ,"City Court, Division A, City of Lafayette ",P. O. Drawer 3344,,Lafayette,LA,70502,337-291-8777,LAFAYETTE,"""Francie"" Bouillion",P.O. Drawer 3344,,Lafayette,LA,70502,5,337-291-8777,W,F,,250,12/31/2014,1/1/2009,Marshal Bouillion +City Judge ,"City Court, Division B, City of Lafayette ",P. O. Drawer 3344,,Lafayette,LA,70502,337-291-8761,LAFAYETTE,Douglas J. Saloom,P.O. Box 3344,,Lafayette,LA,70502,5,337-291-8761,W,M,D,250,12/31/2014,1/1/2009,Judge Saloom +City Marshal ,"City Court, City of Lafayette ",P. O. Drawer 3344,,Lafayette,LA,70502,337-291-8725,LAFAYETTE,"Earl ""Nickey"" Picard",117 Martin Oaks Dr.,,Lafayette,LA,70501,5,337-233-3963,W,M,D,250,12/31/2014,1/1/2009,Marshal Picard +Member of School Board ,District 1 ,P. O. Drawer 2158,,Lafayette,LA,70502-2158,337-521-7000,LAFAYETTE,Mark Babineaux,528 Rue Des Babineaux,,Scott,LA,70583,5,337-233-7766,W,M,D,255,12/31/2010,7/21/2008,Mr. Babineaux +Member of School Board ,District 2 ,P. O. Drawer 2158,,Lafayette,LA,70502-2158,337-521-7000,LAFAYETTE,Carl LaCombe,154 Portneuf,,Carencro,LA,70520,5,337-896-5837,W,M,D,255,12/31/2010,1/1/2007,Mr. LaCombe +Member of School Board ,District 3 ,P. O. Drawer 2158,,Lafayette,LA,70502-2158,337-521-7000,LAFAYETTE,Shelton J. Cobb,204 Alemeda St.,,Lafayette,LA,70501,5,337-233-4199,B,M,D,255,12/31/2010,10/14/2008,Mr. Cobb +Member of School Board ,District 4 ,P. O. Drawer 2158,,Lafayette,LA,70502-2158,337-521-7000,LAFAYETTE,Edward J. Sam,201 Noah St.,,Lafayette,LA,70501,5,337-233-2871,B,M,D,255,12/31/2010,1/1/2007,Mr. Sam +Member of School Board ,District 5 ,P. O. Drawer 2158,,Lafayette,LA,70502-2158,337-521-7000,LAFAYETTE,"""Mike"" Hefner",905 Golden Grain Rd.,,Duson,LA,70529,5,337-873-4244,W,M,D,255,12/31/2010,1/1/2007,Mr. Hefner +Member of School Board ,District 6 ,P. O. Drawer 2158,,Lafayette,LA,70502-2158,337-521-7000,LAFAYETTE,"""Greg"" Awbrey",110 Alpha Dr.,,Lafayette,LA,70506,5,337-981-6955,W,M,R,255,12/31/2010,1/1/2007,Mr. Awbry +Member of School Board ,District 7 ,P. O. Drawer 2158,,Lafayette,LA,70502-2158,337-521-7000,LAFAYETTE,Mark Cockerham,"300 Lozes Ave., Apt D-3",,Lafayette,LA,70508,5,337-504-3586,W,M,R,255,12/31/2010,9/14/2007,Mr. Cockerham +Member of School Board ,District 8 ,P. O. Drawer 2158,,Lafayette,LA,70502-2158,337-521-7000,LAFAYETTE,Hunter Beasley,106 Phillip Ave.,,Lafayette,LA,70503,5,337-269-1894,W,M,,255,12/31/2010,1/1/2007,Mr. Beasley +Member of School Board ,District 9 ,P. O. Drawer 2158,,Lafayette,LA,70502-2158,337-521-7000,LAFAYETTE,Rae B. Trahan,114 E. Parkwood Dr.,,Youngsville,LA,70592,5,337-856-8742,W,F,D,255,12/31/2010,1/1/2007,Ms. Trahan +Justice of the Peace ,Justice of the Peace Ward 1 ,310 D. Arceneaux Rd.,,Scott,LA,70583,337-873-3646,LAFAYETTE,Preston J. Leger,310 D. Arceneaux Rd.,,Scott,LA,70583,5,337-873-3646,W,M,D,265,12/31/2014,1/1/2009,Mr. Leger +Justice of the Peace ,Justice of the Peace Ward 2 ,2306 S. Fieldspan Rd.,,Duson,LA,70529,337-873-8413,LAFAYETTE,Kermit J. Guidry,2306 S. Fieldspan,,Duson,LA,70529,5,337-873-8413,W,M,D,265,12/31/2014,1/1/2009,Mr. Guidry +Justice of the Peace ,Justice of the Peace Ward 4 ,4256 Verot School Rd.,,Youngsville,LA,70592,337-856-5515,LAFAYETTE,Lynwood J. Broussard,4256 Verot School Rd.,,Youngsville,LA,70592,5,337-856-5515,W,M,O,265,12/31/2014,1/1/2009,Mr. Broussard +Justice of the Peace ,Justice of the Peace Ward 5 ,120 Hulin Rd.,,Broussard,LA,70518,337-837-1404,LAFAYETTE,Barbara Broussard,120 Hulin Rd.,,Broussard,LA,70518,5,337-837-1404,W,F,D,265,12/31/2014,1/1/2009,Ms. Broussard +Justice of the Peace ,Justice of the Peace Ward 6 ,1019 Hector Connolly Rd.,,Carencro,LA,70520,337-896-6605,LAFAYETTE,"Michael ""Chalk"" Angelle",1019 Hector Conolly,,Carencro,LA,70520,5,337-349-3866,W,M,D,265,12/31/2014,1/1/2009,Mr. Angelle +Justice of the Peace ,Justice of the Peace Ward 6 ,1019 Hector Connolly Rd.,,Carencro,LA,70520,337-896-6605,LAFAYETTE,Michael J. Broussard,300 Wallace Broussard,,Carencro,LA,70520,5,337-896-5127,W,M,D,265,12/31/2014,1/1/2009,Mr. Broussard +Justice of the Peace ,Justice of the Peace Ward 7 ,2877 Verot School Rd.,,Lafayette,LA,70508,337-856-4303,LAFAYETTE,"Donald ""Don"" Garber",1427P LaNeuville Rd.,,Lafayette,LA,70508,5,337-856-4303,W,M,D,265,12/31/2014,1/1/2009,Mr. Garber +Justice of the Peace ,Justice of the Peace Ward 8 ,516 E. Broussard Rd.,,Lafayette,LA,70503,337-989-1729,LAFAYETTE,"Weston J. ""Bruce"" Broussard",516 East Broussard,,Lafayette,LA,70503,5,337-989-1729,W,M,R,265,12/31/2014,1/1/2009,Mr. Broussard +Justice of the Peace ,Justice of the Peace Ward 9 ,120 LA Hwy. 89 S.,,Youngsville,LA,70592,*,LAFAYETTE,Nancy L. Poirier,120 La. Hwy 89 South,,Youngsville,LA,70592,5,337-856-6186,W,F,R,265,12/31/2014,7/28/2008,Ms. Poirier +Constable ,Justice of the Peace Ward 1 ,255 Lormand Rd.,,Scott,LA,70583,337-873-4292,LAFAYETTE,Judy Lantier Menard,255 Lormand Rd.,,Scott,LA,70583,5,337-873-4292,W,F,D,267,12/31/2014,1/1/2009,Ms. Menard +Constable ,Justice of the Peace Ward 2 ,1410 Sellers Rd.,,Rayne,LA,70578,337-873-8918,LAFAYETTE,Aldon L. Duhon,1410 Sellers Rd.,,Rayne,LA,70570,5,337-873-8918,W,M,D,267,12/31/2014,1/1/2009,Mr. Duhon +Constable ,Justice of the Peace Ward 4 ,701 Espasie,,Youngsville,LA,70592,337-856-4560,LAFAYETTE,Jay Hebert,701 Espasie,,Youngsville,LA,70592,5,337-856-4560,W,M,R,267,12/31/2014,1/1/2009,Mr. Hebert +Constable ,Justice of the Peace Ward 5 ,122 Hulin Rd.,,Broussard,LA,70518,337-837-6298,LAFAYETTE,Laura Menard,122 Hulin Rd.,,Broussard,LA,70518,5,337-837-6298,W,F,D,267,12/31/2014,1/1/2009,Ms. Menard +Constable ,Justice of the Peace Ward 6 ,145 Wagon Trail,,Carencro,LA,70520,337-896-6512,LAFAYETTE,Russell Comeaux,145 Wagon Trail,,Carencro,LA,70520,5,337-896-6512,W,M,D,267,12/31/2014,1/1/2009,Mr. Comeaux +Constable ,Justice of the Peace Ward 6 ,145 Wagon Trail,,Carencro,LA,70520,337-896-6512,LAFAYETTE,"""Pat"" Dugas",101 Lynda,,Carencro,LA,70520,5,337-319-3248,W,M,D,267,12/31/2014,1/1/2009,mr. Dugas +Constable ,Justice of the Peace Ward 7 ,1204 Laneuville Rd.,,Lafayette,LA,70508,337-989-9146,LAFAYETTE,Darrell Menard,1204 LaNeuville Rd.,,Lafayette,LA,70508,5,337-989-9146,W,M,R,267,12/31/2014,1/1/2009,Mr. Menard +Constable ,Justice of the Peace Ward 8 ,801 Provost St.,,Scott,LA,70583,337-232-2930,LAFAYETTE,"Harold ""Harry"" Domingue",801 Provost St.,,Scott,LA,70583,5,337-232-2930,W,M,D,267,12/31/2014,1/1/2009,Mr. Domingue +Constable ,Justice of the Peace Ward 9 ,129 Nezpique Rd.,,Youngsville,LA,70592,337-856-5643,LAFAYETTE,"Sanford ""Butch"" Landry",129 Nezpique Rd.,,Youngsville,LA,70592,5,337-856-5643,W,M,D,267,12/31/2014,1/1/2009,Mr. Landry +Mayor ,City of Carencro ,P. O. Drawer 10,,Carencro,LA,,337-896-8481,LAFAYETTE,Glenn L. Brasseaux,5005 N. University,,Carencro,LA,70520,5,337-896-8541,W,M,D,300,12/31/2010,1/1/2007,Mr. Brasseaux +Mayor ,City of Scott ,P. O. Box 517,,Scott,LA,,337-233-1130,LAFAYETTE,Hazel D. Myers,109 Jules St.,,Scott,LA,70583,5,337-234-8681,W,F,D,300,12/31/2010,1/1/2007,Mayor Myers +Mayor ,City of Youngsville ,P.O. Box 592,,Youngsville,LA,,337-856-4181,LAFAYETTE,"Wilson B. Viator, Jr.",P.O. Box 399,,Youngsville,LA,70592,5,337-856-4622,W,M,R,300,12/31/2010,1/1/2007,Mayor Viator +Chief of Police ,City of Carencro ,P. O. Drawer 10,,Carencro,LA,70520,337-896-8481,LAFAYETTE,Carlos Stout,311 Rue Colombe,,Carencro,LA,70520,5,337-896-9021,W,M,D,305,12/31/2010,1/1/2007,Mr. Stout +Chief of Police ,City of Scott ,P. O. Box 517,,Scott,LA,70583,337-233-1130,LAFAYETTE,Chad Leger,P. O. Box 810,,Scott,LA,70583,5,337-233-3715,W,M,D,305,12/31/2010,1/1/2007,Chief Leger +Chief of Police ,City of Youngsville ,P.O. Box 592,,Youngsville,LA,70592,337-856-4181,LAFAYETTE,Earl Menard,P.O. Box 265,,Youngsville,LA,70592,5,337-857-7295,W,M,R,305,12/31/2010,1/1/2007,Chief Menard +Council Member at Large ,City of Scott ,,,,LA,,,LAFAYETTE,Norwood Menard,P.O Box 615,,Scott,LA,70583,5,337-261-0219,W,M,D,308,12/31/2010,1/1/2007,Mr. Menard +Council Member ,City of Carencro ,P. O. Drawer 10,,Carencro,LA,70520,337-896-8481,LAFAYETTE,"Antoine Babineaux, Jr.",405 Guilbeau Rd.,,Carencro,LA,70520,5,337-896-8534,B,M,D,310,12/31/2010,1/1/2007,Mr. Babineaux +Council Member ,City of Carencro ,P. O. Drawer 10,,Carencro,LA,70520,337-896-8481,LAFAYETTE,L. J. Boudreaux,101 St. Pierre Blvd.,,Carencro,LA,70520,5,337-896-8834,W,M,D,310,12/31/2010,11/14/2008,Mr. Boudreaux +Council Member ,City of Carencro ,P. O. Drawer 10,,Carencro,LA,70520,337-896-8481,LAFAYETTE,"Allen ""Coach"" Conque",208 Thoroughbred Dr.,,Lafayette,LA,70507,5,337-896-8323,W,M,D,310,12/31/2010,1/1/2007,Mr. Conque +Council Member ,City of Carencro ,P. O. Drawer 10,,Carencro,LA,70520,337-896-8481,LAFAYETTE,"""Kim"" Guidry",111 S. St. John St.,,Carencro,LA,70520,5,337-896-6735,W,F,R,310,12/31/2010,1/1/2007,Ms. Guidry +Council Member ,City of Carencro ,P. O. Drawer 10,,Carencro,LA,70520,337-896-8481,LAFAYETTE,J. L. Richard,P.O. Box 481,,Carencro,LA,70520,5,337-896-6278,W,M,D,310,12/31/2010,1/1/2007,Mr. Richard +Council Member ,"District 1, City of Scott ",P. O. Box 517,,Scott,LA,70583,337-233-1130,LAFAYETTE,"""Bill"" Young",P.O. Box 534,,Scott,LA,70583,5,337-232-1353,W,M,D,310,12/31/2010,1/1/2007,Mr. Young +Council Member ,"District 2, City of Scott ",P. O. Box 517,,Scott,LA,70583,337-233-1130,LAFAYETTE,Terry J. Montoucet,217 Heidi Cir.,,Lafayette,LA,70507,5,337-264-1168,W,M,D,310,12/31/2010,1/1/2007,Mr. Montoucet +Council Member ,"District 3, City of Scott ",P. O. Box 517,,Scott,LA,70583,337-233-1130,LAFAYETTE,"John ""Bob"" Boudreaux",1005 Westgate Rd.,,Lafayette,LA,70506,5,337-981-3322,W,M,D,310,12/31/2010,1/1/2007,Mr. Boudreaux +Council Member ,"District 4, City of Scott ",P. O. Box 517,,Scott,LA,70583,337-233-1130,LAFAYETTE,Mark Moreau,209 Cheyenne Cir.,,Scott,LA,70583,5,337-235-2942,W,M,R,310,12/31/2010,1/1/2007,Mr. Moreau +Council Member ,"Division A, City of Youngsville ",P.O. Box 592,,Youngsville,LA,70592,337-856-4181,LAFAYETTE,Paul W. Huval,123 Beacon Dr.,,Youngsville,LA,70592,5,337-837-9993,W,M,R,310,12/31/2010,1/1/2007,Mr. Huval +Council Member ,"Division B, City of Youngsville ",P.O. Box 592,,Youngsville,LA,70592,337-856-4181,LAFAYETTE,Brenda Burley,P.O. Box 617,,Youngsville,LA,70592,5,337-856-9460,W,F,R,310,12/31/2010,1/1/2007,Ms. Burley +Council Member ,"Division C, City of Youngsville ",P.O. Box 592,,Youngsville,LA,70592,337-856-4181,LAFAYETTE,"A. J. Bernard, Jr.",P.O. Box 140,,Youngsville,LA,70592,5,337-856-5089,W,M,R,310,12/31/2010,1/1/2007,Mr. Bernard +Council Member ,"Division D, City of Youngsville ",P.O. Box 592,,Youngsville,LA,70592,337-856-4181,LAFAYETTE,Tim Barbier,112 Cresthill Dr.,,Youngsville,LA,70592,5,337-856-5256,W,M,R,310,12/31/2010,1/1/2007,Mr. Barbier +Council Member ,"Division E, City of Youngsville ",P.O. Box 592,,Youngsville,LA,70592,337-856-4181,LAFAYETTE,Dianne McClelland,629 N. Larriviere,,Broussard,LA,70518,5,337-837-4805,W,F,R,310,12/31/2010,1/1/2007,Ms. McClelland +DPEC Member ,at Large ,,,,LA,,,LAFOURCHE,Lawrence Autin,P.O. Box 144,,Raceland,LA,70394,5,985-537-2010,W,M,D,54,2/20/2012,2/20/2008,Mr. Autin +DPEC Member ,at Large ,,,,LA,,,LAFOURCHE,"""Jimmy"" Cantrelle",118 Cantrelle Dr.,,Raceland,LA,70394,5,985-532-6688,W,M,D,54,2/20/2012,2/20/2008,Mr. Cantrelle +DPEC Member ,at Large ,,,,LA,,,LAFOURCHE,Roland Chiasson,105 Romy Dr.,,Lockport,LA,70374,5,985-665-1372,W,M,D,54,2/20/2012,2/20/2008,Mr. Chiasson +DPEC Member ,District 1 ,,,,LA,,,LAFOURCHE,,,,,,,0,,,,,56,,, +DPEC Member ,District 2 ,,,,LA,,,LAFOURCHE,,,,,,,0,,,,,56,,, +DPEC Member ,District 3 ,,,,LA,,,LAFOURCHE,,,,,,,0,,,,,56,,, +DPEC Member ,District 4 ,,,,LA,,,LAFOURCHE,Matthew Block,800 Edgewood Dr.,,Thibodaux,LA,70301,5,985-446-0418,W,M,D,56,2/20/2012,2/20/2008,Mr. Block +DPEC Member ,District 5 ,,,,LA,,,LAFOURCHE,,,,,,,0,,,,,56,,, +DPEC Member ,District 6 ,,,,LA,,,LAFOURCHE,Carol LeBlanc,292 St. Peter St.,,Raceland,LA,70394,5,985-537-6818,W,F,D,56,2/20/2012,2/20/2008,Ms. LeBlanc +DPEC Member ,District 7 ,,,,LA,,,LAFOURCHE,,,,,,,0,,,,,56,,, +DPEC Member ,District 8 ,,,,LA,,,LAFOURCHE,,,,,,,0,,,,,56,,, +DPEC Member ,District 9 ,,,,LA,,,LAFOURCHE,,,,,,,0,,,,,56,,, +RPEC Member ,at Large ,,,,LA,,,LAFOURCHE,David Gauthe,1922 Bayou Rd.,,Thibodaux,LA,70301,5,,,,,64,,2/10/2009,Mr. Gauthe +RPEC Member ,at Large ,,,,LA,,,LAFOURCHE,Jane Griffin,157 Heidi Ln.,,Thibodaux,LA,70301,5,,,,,64,,2/10/2009,Ms. Griffin +RPEC Member ,at Large ,,,,LA,,,LAFOURCHE,Betsy McGee,603 Country Club Blvd.,,Thibodaux,LA,70301,5,,,,,64,,2/10/2009,Ms. McGee +RPEC Member ,at Large ,,,,LA,,,LAFOURCHE,Jeanette Naquin,862 St. Mary St.,,Thibodaux,LA,70301,5,,,,,64,,2/10/2009,Ms. Naquin +RPEC Member ,at Large ,,,,LA,,,LAFOURCHE,Sheila Plater,425 East St.,,Thibodaux,LA,70301,5,,,,,64,,2/10/2009,Ms. Plater +RPEC Member ,District 1 ,,,,LA,,,LAFOURCHE,Marsha Willett,1286 Hwy. 304,,Thibodaux,LA,70301,5,,,,,66,,2/10/2009,Ms. Willett +RPEC Member ,District 2 ,,,,LA,,,LAFOURCHE,Mary Bond,1871 St. Mary St.,,Thibodaux,LA,70301,5,,,,,66,,2/10/2009,Ms. Bond +RPEC Member ,District 3 ,,,,LA,,,LAFOURCHE,Al Carter,113 Cedar St.,,Thibodaux,LA,70301,5,,,,,66,,2/10/2009,Ms. Carter +RPEC Member ,District 4 ,,,,LA,,,LAFOURCHE,Gwen Cheramie,603 Country Blub Blvd.,,Thibodaux,LA,70301,5,,,,,66,,2/10/2009,Ms. Cheramie +RPEC Member ,District 5 ,,,,LA,,,LAFOURCHE,Mark Atzenhoffer,301 Silver St.,,Houma,LA,70364,5,,,,,66,,2/10/2009,Mr. Atzenhoffer +RPEC Member ,District 6 ,,,,LA,,,LAFOURCHE,Andrea Bollinger,P.O. Box 250,,Lockport,LA,70374,5,,,,,66,,2/10/2009,Ms. Bollinger +RPEC Member ,District 7 ,,,,LA,,,LAFOURCHE,,,,,,,0,,,,,66,,, +RPEC Member ,District 8 ,,,,LA,,,LAFOURCHE,,,,,,,0,,,,,66,,, +RPEC Member ,District 9 ,,,,LA,,,LAFOURCHE,Rudy King,603 Country Club Blvd.,,Thibodaux,LA,70301,5,,,,,66,,2/10/2009,Mr. King +Sheriff ,,P. O. Box 5608,,Thibodaux,LA,70302,985-449-2255,LAFOURCHE,Craig Webre,P.O. Box 5608,,Thibodaux,LA,70302,5,985-447-8200,W,M,R,225,6/30/2012,7/1/2008,Sheriff Webre +Clerk of Court ,,P. O. Box 818,,Thibodaux,LA,70302-0818 ,985-447-4841,LAFOURCHE,Vernon H. Rodrigue,P.O. Box 818,,Thibodeaux,LA,70302-0818 ,11,985-446-7734,W,M,D,230,6/30/2012,7/1/2008,Mr. Rodrigue +Assessor ,,403 St. Louis St.,,Thibodaux,LA,70301,985-447-7242,LAFOURCHE,Michael Martin,174 W. 214th St.,,Galliano,LA,70354,5,985-475-5485,W,M,D,235,12/31/2012,1/1/2009,Mr. Martin +Coroner ,,P.O. Box 1562,,Raceland,LA,70394,985-537-7055,LAFOURCHE,John King,123 Texas St.,,Raceland,LA,70394,5,985-446-5210,W,M,,240,3/25/2012,7/21/2008,Mr. King +Parish President ,,P. O. Drawer 5548,,Thibodaux,LA,70302,985-446-8427,LAFOURCHE,Charlotte Randolph,P.O. Box 5548,,Thibodaux,LA,70302,5,985-532-6452,W,F,R,243,1/11/2012,1/9/2008,Ms. Randolph +Council Member ,District 1 ,P. O. Drawer 5548,,Thibodaux,LA,,985-446-8427,LAFOURCHE,Jerry Jones,1132 Louise St.,,Thibodaux,LA,70301,5,985-448-2627,B,M,D,245,1/11/2012,1/9/2008,Mr. Jones +Council Member ,District 2 ,P. O. Drawer 5548,,Thibodaux,LA,70302,985-446-8427,LAFOURCHE,Michael F. Delatte,2999 Choctaw Rd.,,Thibodaux,LA,70301,5,985-633-9902,W,M,D,245,1/11/2012,1/9/2008,Mr. Delatte +Council Member ,District 3 ,P. O. Drawer 5548,,Thibodaux,LA,70302,985-446-8427,LAFOURCHE,Louis Richard,418 Rue De Cypress,,Thibodaux,LA,70301,5,985-448-2012,W,M,R,245,1/11/2012,1/9/2008,Mr. Richard +Council Member ,District 4 ,P. O. Drawer 5548,,Thibodaux,LA,70302,985-446-8427,LAFOURCHE,"Joseph ""Joe"" Fertitta",202 Parkside Dr.,,Thibodaux,LA,70301,5,985-447-3693,W,M,R,245,1/11/2012,1/9/2008,Mr. Fertitta +Council Member ,District 5 ,P. O. Drawer 5548,,Thibodaux,LA,70302,985-446-8427,LAFOURCHE,"""Matt"" Matherne",4321 Ferry Rd.,,Bourg,LA,70343,5,985-804-1128,W,M,O,245,1/11/2012,1/9/2008,Mr. Matherne +Council Member ,District 6 ,P. O. Drawer 5548,,Thibodaux,LA,70302,985-446-8427,LAFOURCHE,Lindel Toups,1936 Hwy. 654,,Gheens,LA,70355,5,985-532-5889,W,M,D,245,1/11/2012,1/9/2008,Mr. Toups +Council Member ,District 7 ,P. O. Drawer 5548,,Thibodaux,LA,70302,985-446-8427,LAFOURCHE,L. Phillip Gouaux,1421 Hyland Dr.,,Lockport,LA,70374,5,985-532-5226,W,M,D,245,1/11/2012,1/9/2008,Mr. Gouaux +Council Member ,District 8 ,P. O. Drawer 5548,,Thibodaux,LA,70302,985-446-8427,LAFOURCHE,Rodney Doucet,14574 W. Main,,Cut Off,LA,70345,5,985-632-2835,W,M,D,245,1/11/2012,1/9/2008,Mr. Doucet +Council Member ,District 9 ,P. O. Drawer 5548,,Thibodaux,LA,70302,985-446-8427,LAFOURCHE,Daniel Lorraine,P.O. Box 183,,Golden Meadow,LA,70357,5,985-475-5013,W,M,D,245,1/11/2012,1/9/2008,Mr. Lorraine +City Judge ,"City Court, City of Thibodaux ",P. O. Box 568,,Thibodaux,LA,70302,985-446-7238,LAFOURCHE,Mark D. Chiasson,213 Davis Dr.,,Thibodaux,LA,70301,5,985-446-7560,W,M,R,250,12/31/2014,1/1/2009,Judge Chiasson +City Marshal ,"City Court, City of Thibodaux ",P. O. Box 568,,Thibodaux,LA,70302,504-446-7238,LAFOURCHE,Harley J. Gros,409 E. Seventh St.,,Thibodaux,LA,70301,5,985-446-8001,W,M,D,250,12/31/2014,1/1/2009,Marshal Gros +Member of School Board ,District 1 ,P.O. Box 879,,Thibodaux,LA,70301-0879 ,985-435-4602,LAFOURCHE,Louis E. Thibodaux,411 Cherry Dr.,,Thibodaux,LA,70301,5,985-447-9407,W,M,D,255,12/31/2010,1/1/2007,Mr. Thibodaux +Member of School Board ,District 2 ,P.O. Box 879,,Thibodaux,LA,70301-0879 ,985-435-4602,LAFOURCHE,Rhoda Caldwell,605 Canal Blvd.,,Thibodaux,LA,70301,5,985-447-1545,W,F,D,255,12/31/2010,1/1/2007,Ms. Caldwell +Member of School Board ,District 3 ,P.O. Box 879,,Thibodaux,LA,70301-0879 ,985-435-4602,LAFOURCHE,"Richmond Boyd, Jr.",1215 Narrow St.,,Thibodaux,LA,70301,5,985-446-7052,B,M,D,255,12/31/2010,1/1/2007,Mr. Boyd +Member of School Board ,District 4 ,P.O. Box 879,,Thibodaux,LA,70301-0879 ,985-435-4602,LAFOURCHE,Robert Naquin,P.O. Box 704,,Thibodaux,LA,70302,5,985-446-5425,W,M,R,255,12/31/2010,1/1/2007,Mr. Naquin +Member of School Board ,District 5 ,P.O. Box 879,,Thibodaux,LA,70301-0879 ,985-435-4602,LAFOURCHE,Stella Chiasson Lasseigne,306 Hermitage Dr.,,Thibodaux,LA,70301,5,985-446-8108,W,F,D,255,12/31/2010,1/1/2007,Ms. Lasseigne +Member of School Board ,District 6 ,P.O. Box 879,,Thibodaux,LA,70301-0879 ,985-435-4602,LAFOURCHE,"G. A. Rodrigue, Jr.",1249 Hwy. 20,,Thibodaux,LA,70301,5,985-633-9435,W,M,D,255,12/31/2010,1/1/2007,Mr. Rodrigue +Member of School Board ,District 7 ,P.O. Box 879,,Thibodaux,LA,70301-0879 ,985-435-4602,LAFOURCHE,Gary J. Foret,108 Pierre Street,,Raceland,LA,70394,5,985-537-3433,W,M,D,255,12/31/2010,1/1/2007,Mr. Foret +Member of School Board ,District 8 ,P.O. Box 879,,Thibodaux,LA,70301-0879 ,985-435-4602,LAFOURCHE,Ronald Pere,285 Church St.,,Raceland,LA,70394,5,985-537-6946,W,M,D,255,12/31/2010,1/1/2007,Mr. Pere +Member of School Board ,District 9 ,P.O. Box 879,,Thibodaux,LA,70301-0879 ,985-435-4602,LAFOURCHE,Julie Breaux,160 St. James St.,,Gheens,LA,70355,5,985-532-6283,W,F,D,255,12/31/2010,1/1/2007,Ms. Breaux +Member of School Board ,District 10 ,P.O. Box 879,,Thibodaux,LA,70301-0879 ,985-435-4602,LAFOURCHE,"Dennis ""Jean"" Chiasson",302 Romy Dr.,,Lockport,LA,70374,5,985-532-5758,W,M,D,255,12/31/2010,1/1/2007,Mr. Chiasson +Member of School Board ,District 11 ,P.O. Box 879,,Thibodaux,LA,70301-0879 ,985-435-4602,LAFOURCHE,Roy Landry,207 Mary Beth Ave.,,Houma,LA,70364,5,985-872-2348,W,M,D,255,12/31/2010,1/1/2007,Mr. Landry +Member of School Board ,District 12 ,P.O. Box 879,,Thibodaux,LA,70301-0879 ,985-435-4602,LAFOURCHE,"""Jon"" Callais",202 W. 14th St.,,Cut Off,LA,70345,5,985-798-7887,W,M,D,255,12/31/2010,1/1/2007,Mr. Callais +Member of School Board ,District 13 ,P.O. Box 879,,Thibodaux,LA,70301-0879 ,985-435-4602,LAFOURCHE,"""Al"" Archer",P.O. Box 1212,,Cut Off,LA,70345,5,985-632-3094,B,M,D,255,12/31/2010,1/1/2007,Mr. Archer +Member of School Board ,District 14 ,P.O. Box 879,,Thibodaux,LA,70301-0879 ,985-435-4602,LAFOURCHE,Larry Paul Pitre,117 East 93rd St.,,Cut Off,LA,70345,5,985-632-5735,W,M,D,255,12/31/2010,1/1/2007,Mr. Pitre +Member of School Board ,District 15 ,P.O. Box 879,,Thibodaux,LA,70301-0879 ,985-435-4602,LAFOURCHE,Lawrence Mounic,112 Martinez Ln.,,Golden Meadow,LA,70357,5,985-475-6425,W,M,D,255,12/31/2010,1/1/2007,Mr. Mounic +Member ,"Greater Lafourche Port Commission, Div. A ",P. O. Drawer 490,,Galliano,LA,70354,985-632-6701,LAFOURCHE,"Harris ""Chuckie"" Cheramie, Jr.",P.O. Box 1358,,Galliano,LA,70354,5,985-325-5647,W,M,D,260,12/31/2012,1/1/2007,Mr. Chermaie +Member ,"Greater Lafourche Port Commission, Div. B ",,,,LA,,,LAFOURCHE,Perry Gisclair,141 W. 139th St.,,Cut Off,LA,70345,5,985-632-6363,W,M,D,260,12/31/2012,1/1/2007,Mr. Gisclair +Member ,"Greater Lafourche Port Commission, Div. C ",,,,LA,,,LAFOURCHE,"Jimmy ""T Jim"" Lafont",162 W. 112th St.,,Cut Off,LA,70345,5,985-632-5537,W,M,D,260,12/31/2012,1/1/2007,Mr. Lafont +Member ,"Greater Lafourche Port Commission, Div. D ",,,,LA,,,LAFOURCHE,Donald Vizier,P.O. Box 580,,Galliano,LA,70354,5,985-632-7129,W,M,R,260,12/31/2012,1/1/2007,Mr. Vizier +Member ,"Greater Lafourche Port Commission, Div. E ",,,,LA,,,LAFOURCHE,"Wilbert Collins, Sr.",113 Harry St.,,Golden Meadow,LA,70357,5,985-475-7721,W,M,R,260,12/31/2012,1/1/2007,Mr. Collins +Member ,"Greater Lafourche Port Commission, Div. F ",,,,LA,,,LAFOURCHE,Larry J. Griffin,P.O. Box 27,,Golden Meadow,LA,70357,5,985-475-5459,W,M,D,260,12/31/2012,1/1/2007,Mr. Griffin +Member ,"Greater Lafourche Port Commission, Div. G ",,,,LA,,,LAFOURCHE,Johnny Melancon,106 E. 39th St.,,Cut Off,LA,70345,5,985-632-3048,W,M,R,260,12/31/2012,1/1/2007,Mr. Melancon +Member ,"Greater Lafourche Port Commission, Div. H ",,,,LA,,,LAFOURCHE,Jimmy Guidry,P.O. Box 465,,Larose,LA,70373,5,985-693-3767,W,M,D,260,12/31/2012,1/1/2007,Mr. Guidry +Member ,"Greater Lafourche Port Commission, Div. I ",,,,LA,,,LAFOURCHE,"Ervin ""Vin"" Bruce",1083 ABC St.,,Cut Off,LA,70383,5,985-632-2123,W,M,D,260,12/31/2012,1/1/2007,Mr. Bruce +Justice of the Peace ,1st Justice of the Peace Court ,820 Oak Lane,,Thibodaux,LA,70301,985-446-1883,LAFOURCHE,Jean Denis Rodrigue,820 Oak Lane,,Thibodaux,LA,70301,5,985-446-1883,W,M,D,265,12/31/2014,1/1/2009,Mr. Rodrigue +Justice of the Peace ,2nd Justice of the Peace Court ,115 Uzee Lane,,Raceland,LA,70394,985-537-6413,LAFOURCHE,Mary U. Foret,115 Uzee Lane,,Raceland,LA,70394,5,985-537-6413,W,F,D,265,12/31/2014,1/1/2009,Ms. Foret +Justice of the Peace ,3rd Justice of the Peace Court ,P. O. Box 476,,Larose,LA,70373,985-693-3892,LAFOURCHE,Bennett Arceneaux,117 Willow-D St.,,Larose,LA,70373,5,985-693-3892,W,M,D,265,12/31/2014,1/1/2009,Mr. Arceneaux +Justice of the Peace ,4th Justice of the Peace Court ,P.O. Box 331,,Galliano,LA,70354,985-632-3995,LAFOURCHE,Lois L. Gautreaux,P.O. Box 331,,Galliano,LA,70354,5,985-632-3995,W,F,D,265,12/31/2014,1/1/2009,Mr. Gautreaux +Constable ,1st Justice of the Peace Court ,540 Hwy. 304,,Thibodaux,LA,70301,985-633-2005,LAFOURCHE,Benny J. Percle,540 Hwy. 304,,Thibodaux,LA,70301,5,985-633-2005,W,M,D,267,12/31/2014,1/1/2009,Mr. Percle +Constable ,2nd Justice of the Peace Court ,2514 Hwy. 182,,Raceland,LA,70394,985-537-5735,LAFOURCHE,Dwain LeBouef,2514 Hwy. 182,,Raceland,LA,70394,5,985-537-5735,W,M,D,267,12/31/2014,1/1/2009,Mr. LeBouef +Constable ,3rd Justice of the Peace Court ,386 Adams St.,,Raceland,LA,70394,985-532-5287,LAFOURCHE,"John ""Johnny"" Detillier",386 Adams St.,,Raceland,LA,70394,5,985-532-5287,W,M,D,267,12/31/2014,1/1/2009,Mr. Detillier +Constable ,4th Justice of the Peace Court ,108 E. 128th St.,,Galliano,LA,70354,985-632-6576,LAFOURCHE,Carl A. Doucet,108 East 128th St.,,Galliano,LA,70354,5,985-632-6576,W,M,D,267,12/31/2014,1/1/2009,Mr. Doucet +Mayor ,City of Thibodaux ,P. O. Box 5418,,Thibodaux,LA,,985-446-7200,LAFOURCHE,Charles Caillouet,P.O. Box 1218,,Thibodaux,LA,70302,5,985-446-8333,W,M,D,300,12/12/2010,12/11/2006,Mayor Caillouet +Mayor ,Town of Golden Meadow ,P. O. Box 307,,Golden Meadow,LA,,985-475-7942,LAFOURCHE,Joey Bouziga,P.O. Box 384,,Golden Meadow,LA,70357,5,985-475-5163,W,M,D,300,12/31/2012,1/1/2009,Mayor Bouziga +Mayor ,Town of Lockport ,710 Church St.,,Lockport,LA,,985-532-3117,LAFOURCHE,Richard Champagne,720 Seventh St.,,Lockport,LA,70374,5,985-532-3472,W,M,R,300,12/31/2012,1/1/2009,Mayor Champagne +Chief of Police ,Town of Golden Meadow ,P. O. Box 307,,Golden Meadow,LA,70357,985-475-7942,LAFOURCHE,Randy Chiasson,2124 S. Alex Plaisance Blvd.,,Golden Meadow,LA,70357,5,985-475-5909,W,M,R,305,12/31/2012,1/1/2009,Chief Chiasson +Chief of Police ,Town of Lockport ,710 Church St.,,Lockport,LA,70374,985-532-3117,LAFOURCHE,Warren Vedros,P.O. Box 265,,Lockport,LA,70374,5,985-413-9772,W,M,D,305,12/31/2012,1/1/2009,Chief Vedros +Councilman at Large ,"Seat D, City of Thibodaux ",P. O. Box 5418,,Thibodaux,LA,70302,985-446-7200,LAFOURCHE,"Lloyd ""Chip"" Badeaux",917 Jackson St.,,Thibodaux,LA,70301,5,985-446-6875,W,M,R,308,12/12/2010,11/14/2008,Mr. Badeaux +Councilman at Large ,"Seat E, City of Thibodaux ",P. O. Box 5418,,Thibodaux,LA,70302,985-446-7200,LAFOURCHE,Chad Mire,202 Elm St.,,Thibodaux,LA,70301,5,985-859-0618,W,M,D,308,12/12/2010,12/11/2006,Mr. Mire +Council Member ,"Division A, Town of Lockport ",710 Church St.,,Lockport,LA,70374,985-532-3117,LAFOURCHE,Donovan J. Barker,514 Vacherie St.,,Lockport,LA,70374,5,985-532-3582,W,M,D,310,12/31/2012,1/1/2009,Mr. Barker +Council Member ,"Division B, Town of Lockport ",710 Church St.,,Lockport,LA,70374,985-532-3117,LAFOURCHE,Paul Champagne,626 Ethel,,Lockport,LA,70374,5,985-532-5800,W,M,R,310,12/31/2012,1/1/2009,Mr. Champagne +Council Member ,"Division C, Town of Lockport ",710 Church St.,,Lockport,LA,70374,985-532-3117,LAFOURCHE,Craig Rogers,108 Comeaux Dr.,,Lockport,LA,70374,5,985-532-3772,W,M,R,310,12/31/2012,1/1/2009,Mr. Rogers +Council Member ,"Division D, Town of Lockport ",710 Church St.,,Lockport,LA,70374,985-532-3117,LAFOURCHE,Rodney Hartman,202 Comeaux Dr.,,Lockport,LA,70374,5,985-532-3947,W,M,R,310,12/31/2012,1/1/2009,Mr. Hartman +Council Member ,"Division E, Town of Lockport ",710 Church St.,,Lockport,LA,70374,985-532-3117,LAFOURCHE,"Weldon ""Chunky"" Triche",321 Canal,,Lockport,LA,70374,5,985-532-5102,W,M,D,310,12/31/2012,1/1/2009,Mr. Triche +Councilman ,"District A, City of Thibodaux ",P.O. Box 5418,,Thibodaux,LA,70302,985-446-7200,LAFOURCHE,Eddie Hebert,727 Rosedown Dr.,,Thibodaux,LA,70301,5,985-446-5268,W,M,D,310,12/12/2010,5/15/2007,Mr. Hebert +Councilman ,"District B, City of Thibodaux ",P. O. Box 5418,,Thibodaux,LA,70302,985-446-7200,LAFOURCHE,"""Gene"" Richard",516 Foret St.,,Thibodaux,LA,70301,5,985-446-1831,W,M,D,310,12/12/2010,12/11/2006,Mr. Richard +Councilman ,"District C, City of Thibodaux ",P. O. Box 5418,,Thibodaux,LA,70302,985-446-7200,LAFOURCHE,"Varick C. Taylor, Sr.",1128 Louise St.,,Thibodaux,LA,70301,5,985-446-2214,B,M,D,310,12/12/2010,12/11/2006,Mr. Taylor +Councilman ,Town of Golden Meadow ,P. O. Box 307,,Golden Meadow,LA,70357,985-475-7942,LAFOURCHE,"David ""Dave"" Adams",177 Fred St.,,Golden Meadow,LA,70357,5,985-475-5837,W,M,D,310,12/31/2012,1/1/2009,Mr. Adams +Councilman ,Town of Golden Meadow ,P. O. Box 307,,Golden Meadow,LA,70357,985-475-7942,LAFOURCHE,Mike Billiot,2631 North Bayou Dr.,,Golden Meadow,LA,70357,5,985-475-6711,O,M,D,310,12/31/2012,1/1/2009,Mr. Billiot +Councilman ,Town of Golden Meadow ,P. O. Box 307,,Golden Meadow,LA,70357,985-475-7942,LAFOURCHE,Frank Boura,2600 S. Alex Plaisance Blvd.,,Golden Meadow,LA,70357,5,985-475-5793,W,M,D,310,12/31/2012,1/1/2009,Mr. Boura +Councilman ,Town of Golden Meadow ,P. O. Box 307,,Golden Meadow,LA,70357,985-475-7942,LAFOURCHE,Jody P. Cheramie,210 South Henry St.,,Golden Meadow,LA,70357,5,985-475-4529,W,M,D,310,12/31/2012,1/1/2009,Mr. Cheramie +Councilman ,Town of Golden Meadow ,P. O. Box 307,,Golden Meadow,LA,70357,985-475-7942,LAFOURCHE,Priscilla Mounic,112 Martinez Ln.,,Golden Meadow,LA,70357,5,985-475-6425,W,F,D,310,12/31/2012,1/1/2009,Ms. Mounic +DPEC Member ,at Large ,,,,LA,,,LASALLE,Margie D. Cruse,P.O. Box 447,,Jena,LA,71342,5,318-992-2790,W,F,D,54,2/20/2012,2/20/2008,Ms. Cruse +DPEC Member ,at Large ,,,,LA,,,LASALLE,Sammy J. Franklin,P.O. Box 3050,,Jena,LA,71342,5,318-992-4066,W,M,D,54,2/20/2012,2/20/2008,Mr. Franklin +DPEC Member ,District 1 ,,,,LA,,,LASALLE,,,,,,,0,,,,,56,,, +DPEC Member ,District 2 ,,,,LA,,,LASALLE,,,,,,,0,,,,,56,,, +DPEC Member ,District 3 ,,,,LA,,,LASALLE,,,,,,,0,,,,,56,,, +DPEC Member ,District 4 ,,,,LA,,,LASALLE,,,,,,,0,,,,,56,,, +DPEC Member ,District 5 ,,,,LA,,,LASALLE,Reed Walters,P.O. Box 1066,,Jena,LA,71342,5,318-992-8282,W,M,D,56,2/20/2012,2/20/2008,Mr. Walters +DPEC Member ,District 6 ,,,,LA,,,LASALLE,,,,,,,0,,,,,56,,, +DPEC Member ,District 7 ,,,,LA,,,LASALLE,,,,,,,0,,,,,56,,, +DPEC Member ,District 8 ,,,,LA,,,LASALLE,,,,,,,0,,,,,56,,, +DPEC Member ,District 9 ,,,,LA,,,LASALLE,,,,,,,0,,,,,56,,, +DPEC Member ,District 10 ,,,,LA,,,LASALLE,,,,,,,0,,,,,56,,, +RPEC Member ,at Large ,,,,LA,,,LASALLE,Catherine W. Roberts,P.O. Box 1120,,Jena,LA,71342,5,318-992-2997,W,F,R,64,2/20/2012,2/20/2008, +RPEC Member ,District 1 ,,,,LA,,,LASALLE,,,,,,,0,,,,,66,,, +RPEC Member ,District 2 ,,,,LA,,,LASALLE,,,,,,,0,,,,,66,,, +RPEC Member ,District 3 ,,,,LA,,,LASALLE,,,,,,,0,,,,,66,,, +RPEC Member ,District 4 ,,,,LA,,,LASALLE,,,,,,,0,,,,,66,,, +RPEC Member ,District 5 ,,,,LA,,,LASALLE,,,,,,,0,,,,,66,,, +RPEC Member ,District 6 ,,,,LA,,,LASALLE,,,,,,,0,,,,,66,,, +RPEC Member ,District 7 ,,,,LA,,,LASALLE,,,,,,,0,,,,,66,,, +RPEC Member ,District 8 ,,,,LA,,,LASALLE,,,,,,,0,,,,,66,,, +RPEC Member ,District 9 ,,,,LA,,,LASALLE,,,,,,,0,,,,,66,,, +RPEC Member ,District 10 ,,,,LA,,,LASALLE,,,,,,,0,,,,,66,,, +Sheriff ,,P. O. Box 70,,Jena,LA,71342,318-992-2151,LASALLE,Scott Franklin,P. O. Box 70,,Jena,LA,71342,5,318-992-6625,W,M,D,225,6/30/2012,7/1/2008,Sheriff Franklin +Clerk of Court ,,P. O. Box 1316,,Jena,LA,71342,318-992-2158,LASALLE,Steve Andrews,P.O. Box 1316,,Jena,LA,71342,5,318-992-5364,W,M,D,230,6/30/2012,7/1/2008,Mr. Andrews +Assessor ,,P.O. Box 400,,Jena,LA,71342,318-992-8256,LASALLE,Aron Johnson,2410 Hopkins Rd.,,Jena,LA,71342,5,318-992-6419,W,M,D,235,12/31/2012,1/1/2009,Mr. Johnson +Coroner ,,P.O. Box 1319,,Jena,LA,71342,318-992-2166,LASALLE,"I. C. Turnley, Jr.",P. O. Box 1319,,Jena,LA,71342,5,318-992-2033,W,M,R,240,3/25/2012,3/24/2008,Mr. turnley +Police Juror ,District 1 ,P. O. Box 1288,,Jena,LA,,318-992-2101,LASALLE,Alban Poole,2860 Hwy. 503,,Olla,LA,71465,5,318-992-2571,W,M,D,245,1/8/2012,1/14/2008,Mr. Poole +Police Juror ,District 2 ,P. O. Box 1288,,Jena,LA,71342,318-992-2101,LASALLE,"Charles ""Buddy"" Poole",P. O. Box 1496,,Olla,LA,71465,5,318-495-5900,W,M,D,245,1/8/2012,1/14/2008,Mr. Poole +Police Juror ,District 3 ,P. O. Box 1288,,Jena,LA,71342,318-992-2101,LASALLE,Jerry M. Harris,P. O. Box 489,,Urania,LA,71480,5,318-992-3458,W,M,D,245,1/8/2012,1/14/2008,Mr. Harris +Police Juror ,District 4 ,P. O. Box 1288,,Jena,LA,71342,318-992-2101,LASALLE,Larkin Jackson,P.O. Box 1995,,Jena,LA,71342,5,318-992-6719,W,M,D,245,1/8/2012,1/14/2008,Mr. Larkin +Police Juror ,District 5 ,P. O. Box 1288,,Jena,LA,71342,318-992-2101,LASALLE,Wayne Richardson,511 Peyton St.,,Jena,LA,71342,5,318-992-5734,W,M,D,245,1/8/2012,1/14/2008,Mr. Richardson +Police Juror ,District 6 ,P. O. Box 1288,,Jena,LA,71342,318-992-2101,LASALLE,Jack Zeagler,215 Vercher Rd.,,Trout,LA,71371,5,318-992-2838,W,M,D,245,1/8/2012,1/14/2008,Mr. Zeagler +Police Juror ,District 7 ,P. O. Box 1288,,Jena,LA,71342,318-992-2101,LASALLE,Mike Crooks,P.O. Box 642,,Jena,LA,71342,5,318-992-2380,W,M,D,245,1/8/2012,1/14/2008,Mr. Crooks +Police Juror ,District 8 ,P. O. Box 1288,,Jena,LA,71342,318-992-2101,LASALLE,Bard Lambeth,150 Rawlins Rd.,,Jena,LA,71342,5,318-992-2871,W,M,D,245,1/8/2012,1/14/2008,Mr. Lambeth +Police Juror ,District 9 ,P. O. Box 1288,,Jena,LA,71342,318-992-2101,LASALLE,Bobby R. Francis,281 Old River Lp.,,Jonesville,LA,71343,5,318-992-4633,W,M,D,245,1/8/2012,1/14/2008,Mr. Francis +Police Juror ,District 10 ,P. O. Box 1288,,Jena,LA,71342,318-992-2101,LASALLE,Ron G. Carr,P.O. Box 323,,Trout,LA,71371,5,318-992-2722,B,M,D,245,1/8/2012,1/14/2008,Mr. Carr +Member of School Board ,District 1 ,P. O. Drawer 90,,Jena,LA,71342,318-992-2161,LASALLE,"Rodney Jackson, ",P.O. Box 90,,Jena,LA,71342,5,,,,,255,,12/7/2009,Mr. Jackson +Member of School Board ,District 2 ,P. O. Drawer 90,,Jena,LA,71342,318-992-2161,LASALLE,"Howard ""Coach"" McCarty",P.O. Box 626,,Olla,LA,71465,5,318-992-5997,W,M,D,255,12/31/2010,1/1/2007,Mr. McCarty +Member of School Board ,District 3 ,P. O. Drawer 90,,Jena,LA,71342,318-992-2161,LASALLE,Jay Ivy,P.O. Box 673,,Urania,LA,71480,5,318-495-3630,W,M,R,255,12/31/2010,7/21/2008,Mr. Ivy +Member of School Board ,District 4 ,P. O. Drawer 90,,Jena,LA,71342,318-992-2161,LASALLE,Eli Cooper,1523 Cowart St.,,Jena,LA,71342,5,318-992-2456,W,M,R,255,12/31/2010,1/1/2007,Mr. Cooper +Member of School Board ,District 5 ,P. O. Drawer 90,,Jena,LA,71342,318-992-2161,LASALLE,Billy Fowler,141 Peyton St.,,Jena,LA,71342,5,318-992-0765,W,M,,255,12/31/2010,1/1/2007,Mr. Fowler +Member of School Board ,District 6 ,P. O. Drawer 90,,Jena,LA,71342,318-992-2161,LASALLE,"Alvin J. ""Buddy"" Bethard, Jr.",P.O. Box 2711,,Jena,LA,71342,5,318-992-8728,W,M,D,255,12/31/2010,1/1/2007,Mr. Bethard +Member of School Board ,District 7 ,P. O. Drawer 90,,Jena,LA,71342,318-992-2161,LASALLE,Walter Creel,P.O. Box 1333,,Jena,LA,71342,5,318-992-6441,W,M,D,255,12/31/2010,1/1/2007,Mr. Creel +Member of School Board ,District 8 ,P. O. Drawer 90,,Jena,LA,71342,318-992-2161,LASALLE,Dolan Pendarvis,115 Nebo Cutoff Rd.,,Jena,LA,71342,5,318-992-2340,W,M,R,255,12/31/2010,1/1/2007,Mr. Pendarvis +Member of School Board ,District 9 ,P. O. Drawer 90,,Jena,LA,71342,318-992-2161,LASALLE,Charlie Anderson,125 Anderson Rd.,,Jena,LA,71342,5,318-992-8345,W,M,R,255,12/31/2010,1/1/2007,Mr. Anderson +Member of School Board ,District 10 ,P. O. Drawer 90,,Jena,LA,71342,318-992-2161,LASALLE,Melvin Roy Worthington,655 Yearby Hill Lp.,,Jena,LA,71342,5,318-992-2455,B,M,D,255,12/31/2010,1/1/2007,Mr. Worthington +Justice of the Peace ,Justice of the Peace District 1 ,P. O. Box 333,,Olla,LA,71456,318-495-5916,LASALLE,Eddie Coolman,P. O. Box 333,,Olla,LA,71465,5,318-495-5916,W,M,D,265,12/31/2014,1/1/2009,Mr. Coolman +Justice of the Peace ,Justice of the Peace District 2 ,P. O. Box 196,,Olla,LA,71456,318-495-5041,LASALLE,Debbie W. Chisolm,P. O. Box 196,,Olla,LA,71465,5,318-495-5041,W,F,,265,12/31/2014,1/1/2009,Ms. Chisolm +Justice of the Peace ,Justice of the Peace District 3 ,P. O. Box 490,,Trout,LA,71371,318-992-6350,LASALLE,Charles Flaherty,P. O. Box 490,,Trout,LA,71371,5,318-992-6350,W,M,,265,12/31/2014,1/1/2009,Mr. Flaherty +Justice of the Peace ,Justice of the Peace District 4 ,P. O. Box 1415,,Jena,LA,71342,318-992-2202,LASALLE,"Don R. Smith, Sr.",P. O. Box 1415,,Jena,LA,71342,5,318-992-2202,W,M,R,265,12/31/2014,1/1/2009,Mr. Smith +Justice of the Peace ,Justice of the Peace District 5 ,9632 Hwy. 84 E.,,Jena,LA,71342,318-992-5197,LASALLE,F. C. Thaxton,9632 Hwy. 84,,Jena,LA,71342,5,318-992-5197,W,M,D,265,12/31/2014,1/1/2009,Mr. Thaxton +Constable ,Justice of the Peace District 1 ,660 LA Hwy. 459,,Olla,LA,71465,318-992-6817,LASALLE,Leroy Westbrooks,1067 Hwy. 3071,,Olla,LA,71465,5,318-992-4776,W,M,R,267,12/31/2014,1/1/2009,Mr. Westbrooks +Constable ,Justice of the Peace District 2 ,1607 Taylor St.,,Olla,LA,71465,318-495-5641,LASALLE,John W. Stott,1607 Taylor St.,,Olla,LA,71465,5,318-495-3687,W,M,,267,12/31/2014,1/1/2009,Mr. Stott +Constable ,Justice of the Peace District 3 ,P.O. Box 1048,,Jena,LA,71342,318-992-2081,LASALLE,J. Clyde Crooks,620 Benelbie Rd.,,Trout,LA,71371,5,318-992-5306,W,M,D,267,12/31/2014,1/1/2009,Mr. Crooks +Constable ,Justice of the Peace District 4 ,P.O. Box 442,,Jena,LA,71342,318-992-0314,LASALLE,"""Ken"" Stevens",P. O. Box 442,,Jena,LA,71342,5,318-992-3029,W,M,,267,12/31/2014,1/1/2009,Mr. Stevens +Constable ,Justice of the Peace District 5 ,1775 W. Bradford St.,,Jena,LA,71342,318-992-8574,LASALLE,"L. V. ""Pete"" Breithaupt",405 Old River Lp.,,Jonesville,LA,71343,5,318-992-0398,W,M,D,267,12/31/2014,1/1/2009,Mr. Breithaupt +Mayor ,Town of Jena ,P. O. Box 26,,Jena,LA,,318-992-2148,LASALLE,Murphy McMillin,P.O. Box 195,,Jena,LA,71342,5,318-992-5883,W,M,R,300,12/31/2010,1/1/2007,Mr. McMillin +Mayor ,Town of Olla ,P. O. Box 223,,Olla,LA,,318-495-5151,LASALLE,Wanda Love,P.O. Box 802,,Olla,LA,71465,5,318-495-5825,W,F,D,300,12/31/2010,1/1/2007,Mr. Love +Mayor ,Town of Tullos ,P. O. Box 749,,Tullos,LA,,318-534-6499,LASALLE,Fred Book,P.O. Box 705,,Tullos,LA,71479,5,318-534-6249,W,M,D,300,12/31/2010,1/1/2007,Mayor Book +Mayor ,Town of Urania ,P. O. Box 339,,Urania,LA,,318-495-3452,LASALLE,Terri Corley,P.O. Box 654,,Urania,LA,71480,5,318-495-3439,W,F,D,300,12/31/2010,1/1/2007,Mayor Corley +Chief of Police ,Town of Jena ,P. O. Box 26,,Jena,LA,71342,318-992-2148,LASALLE,Paul Smith,P.O. Box 58,,Trout,LA,71371,5,318-992-0452,W,M,R,305,12/31/2010,1/1/2007,Mr. Smith +Chief of Police ,Town of Olla ,P. O. Box 223,,Olla,LA,71465,318-495-5151,LASALLE,Gary W. Taylor,P.O. Box 903,,Olla,LA,71465,5,318-495-5998,W,M,R,305,12/31/2010,1/1/2007,Mr. Taylor +Chief of Police ,Town of Tullos ,P. O. Box 749,,Tullos,LA,71479,318-534-6499,LASALLE,Leland Guin,P.O. Box 69,,Tullos,LA,71479,5,318-447-3917,W,M,D,305,12/31/2010,1/1/2007,Chief Guin +Chief of Police ,Town of Urania ,P. O. Box 339,,Urania,LA,71480,318-495-3452,LASALLE,"""Wayne"" Corley",P.O. Box 654,,Urania,LA,71480,5,318-495-3439,W,M,D,305,12/31/2010,1/1/2007,Chief Corley +Alderman ,Town of Olla ,P. O. Box 223,,Olla,LA,71465,318-495-5151,LASALLE,Wayne Bates,P.O. Box 1420,,Olla,LA,71465,5,318-495-3948,W,M,R,310,12/31/2010,1/1/2007,Mr. Bates +Alderman ,Town of Olla ,P. O. Box 223,,Olla,LA,71465,318-495-5151,LASALLE,"""Donnie"" Cupples",P.O. Box 937,,Olla,LA,71465,5,318-495-3007,W,M,D,310,12/31/2010,1/1/2007,Mr. Cupples +Alderman ,Town of Olla ,P. O. Box 223,,Olla,LA,71465,318-495-5151,LASALLE,Sidney Emfinger,P.O. Box 422,,Olla,LA,71465,5,318-495-5603,W,M,R,310,12/31/2010,1/1/2007,Mr. Emfinger +Alderman ,Town of Olla ,P. O. Box 223,,Olla,LA,71465,318-495-5151,LASALLE,Jeffrey Lasiter,2035 Ash St.,,Olla,LA,71465,5,318-495-0452,W,M,R,310,12/31/2010,1/1/2007,Mr. Lasiter +Alderman ,Town of Olla ,P. O. Box 223,,Olla,LA,71465,318-495-5151,LASALLE,Renee Peppers Thomas,P.O. Box 1103,,Olla,LA,71465,5,318-495-5418,W,F,D,310,12/31/2010,1/1/2007,Mr. Thomas +Alderman ,Town of Tullos ,P. O. Box 749,,Tullos,LA,71479,318-534-6499,LASALLE,"James W. Arbogast, Jr.",1307 Doyle St.,,Tullos,LA,71479,5,318-534-6291,W,M,,310,12/31/2010,1/1/2007,Mr. Arbogast +Alderman ,Town of Tullos ,P. O. Box 749,,Tullos,LA,71479,318-534-6499,LASALLE,Lance B. Coleman,1284 Doyle St.,,Tullos,LA,71479,5,318-534-6115,W,M,R,310,12/31/2010,8/24/2009,Mr. Coleman +Alderman ,Town of Tullos ,P. O. Box 749,,Tullos,LA,71479,318-534-6499,LASALLE,"""Greg"" Davis",1080 Miles Blvd.,,Tullos,LA,71479,5,318-534-6330,W,M,D,310,12/31/2010,1/1/2007,Mr. Davis +Alderman ,Town of Tullos ,P. O. Box 749,,Tullos,LA,71479,318-534-6499,LASALLE,Darwin Fife,P.O. Box 715,,Tullos,LA,71479,5,318-534-6235,W,M,,310,12/31/2010,1/1/2007,Mr. Fife +Alderman ,Town of Tullos ,P. O. Box 749,,Tullos,LA,71479,318-534-6499,LASALLE,"Q. F. ""Fritz"" Sagdahl",P.O. Box 5,,Tullos,LA,71479,5,318-534-6578,W,M,R,310,12/31/2010,1/1/2007,Mr. Sagdahl +Alderman ,Town of Urania ,P. O. Box 339,,Urania,LA,71480,318-495-3452,LASALLE,Dawn Blackwell,P.O. Box 448,,Urania,LA,71480,5,318-229-1983,W,F,R,310,12/31/2010,1/1/2007,Ms. Blackwell +Alderman ,Town of Urania ,P. O. Box 339,,Urania,LA,71480,318-495-3452,LASALLE,Dawn Book,P.O. Box 429,,Urania,LA,71480,5,318-495-5527,W,F,,310,12/31/2010,2/23/2009,Ms. Book +Alderman ,Town of Urania ,P. O. Box 339,,Urania,LA,71480,318-495-3452,LASALLE,Patrick McDougald,P.O. Box 615,,Urania,LA,,0,318-495-3440,W,M,R,310,12/31/2010,1/1/2007, +Alderman ,Town of Urania ,P. O. Box 339,,Urania,LA,71480,318-495-3452,LASALLE,"Jesse Powers, Jr.",P.O. Box 346,,Urania,LA,71480,5,318-495-3651,W,M,,310,12/31/2010,2/23/2009,Mr. Powers +Alderman ,Town of Urania ,P. O. Box 339,,Urania,LA,71480,318-495-3452,LASALLE,Stacie P. Strain,P.O. Box 351,,Urania,LA,71465,5,318-495-3656,W,F,D,310,12/31/2010,1/1/2007,Ms. Strain +Council Member(s) ,Town of Jena ,P. O. Box 26,,Jena,LA,71342,318-992-2148,LASALLE,"David Paul Jones, Jr.",P.O. Box 1252,,Jena,LA,71342,5,318-992-6893,W,M,R,310,12/31/2010,1/1/2007,Mr. Jones +Council Member(s) ,Town of Jena ,P. O. Box 26,,Jena,LA,71342,318-992-2148,LASALLE,"""Donnie"" Kendrick",P.O. Box 2091,,Jena,LA,71342,5,318-992-6566,W,M,D,310,12/31/2010,1/1/2007,Mr. Kendrick +Council Member(s) ,Town of Jena ,P. O. Box 26,,Jena,LA,71342,318-992-2148,LASALLE,Carl Newburg,P.O. Box 154,,Jena,LA,71342,5,318-992-4879,W,M,D,310,12/31/2010,1/1/2007,Mr. Newburg +Council Member(s) ,Town of Jena ,P. O. Box 26,,Jena,LA,71342,318-992-2148,LASALLE,"""Donny"" Richardson",2190 Hemphill Dr.,,Jena,LA,71342,5,318-992-2244,W,M,R,310,12/31/2010,1/1/2007,Mr. Richardson +Council Member(s) ,Town of Jena ,P. O. Box 26,,Jena,LA,71342,318-992-2148,LASALLE,Tommy D. Sandifer,P.O. Box 841,,Jena,LA,71342,5,318-992-4203,W,M,R,310,12/31/2010,1/1/2007,Mr. Sandifer +DPEC Member ,at Large ,,,,LA,,,LINCOLN,,,,,,,0,,,,,54,,, +DPEC Member ,"Ward 1, District A ",,,,LA,,,LINCOLN,Lola Owens,422 S. Pine Tree Rd.,,Grambling,LA,71245,5,318-247-6270,B,F,D,56,2/20/2012,2/20/2008,Ms. Owens +DPEC Member ,"Ward 1, District B ",,,,LA,,,LINCOLN,,,,,,,0,,,,,56,,, +DPEC Member ,"Ward 1, District C ",,,,LA,,,LINCOLN,,,,,,,0,,,,,56,,, +DPEC Member ,"Ward 1, District D ",,,,LA,,,LINCOLN,,,,,,,0,,,,,56,,, +DPEC Member ,"Ward 1, District E ",,,,LA,,,LINCOLN,,,,,,,0,,,,,56,,, +DPEC Member ,"Ward 1, District F ",,,,LA,,,LINCOLN,,,,,,,0,,,,,56,,, +DPEC Member ,"Ward 1, District G ",,,,LA,,,LINCOLN,,,,,,,0,,,,,56,,, +DPEC Member ,"Ward 2, District A ",,,,LA,,,LINCOLN,,,,,,,0,,,,,56,,, +DPEC Member ,"Ward 2, District B ",,,,LA,,,LINCOLN,,,,,,,0,,,,,56,,, +DPEC Member ,Ward 3 ,,,,LA,,,LINCOLN,,,,,,,0,,,,,56,,, +DPEC Member ,Ward 4 ,,,,LA,,,LINCOLN,,,,,,,0,,,,,56,,, +DPEC Member ,Ward 5 ,,,,LA,,,LINCOLN,,,,,,,0,,,,,56,,, +RPEC Member ,at Large ,,,,LA,,,LINCOLN,John M. Buske,342 Stow Creek Rd.,,Ruston,LA,71270,5,318-255-5452,W,M,R,64,2/20/2012,2/20/2008,Mr. Buske +RPEC Member ,at Large ,,,,LA,,,LINCOLN,Laura Farrar,1600 Bistineau St.,,Ruston,LA,71270,5,318-255-2983,W,F,R,64,2/20/2012,2/20/2008,Ms. Farrar +RPEC Member ,at Large ,,,,LA,,,LINCOLN,Donald Roy Faust,P.O. Box 177,,Ruston,LA,71273,5,318-255-6798,W,M,R,64,2/20/2012,2/20/2008,Mr.Faust +RPEC Member ,at Large ,,,,LA,,,LINCOLN,Wayne Harris,113 Deer Creek Rd.,,Ruston,LA,71270,5,318-254-8646,W,M,R,64,2/20/2012,2/20/2008,Mr. Harris +RPEC Member ,at Large ,,,,LA,,,LINCOLN,"William ""Bill"" Hogan",428 Forest Circle,,Ruston,LA,71270,5,318-255-7101,W,M,R,64,2/20/2012,2/20/2008,Mr. Hogan +RPEC Member ,"Ward 1, District A ",,,,LA,,,LINCOLN,,,,,,,0,,,,,66,,, +RPEC Member ,"Ward 1, District B ",,,,LA,,,LINCOLN,,,,,,,0,,,,,66,,, +RPEC Member ,"Ward 1, District C ",,,,LA,,,LINCOLN,,,,,,,0,,,,,66,,, +RPEC Member ,"Ward 1, District D ",,,,LA,,,LINCOLN,Mary Jane Stearns,1540 Pea Ridge Rd.,,Dubach,LA,71235,5,318-251-9322,W,F,R,66,2/20/2012,2/20/2008,Ms. Stearns +RPEC Member ,"Ward 1, District E ",,,,LA,,,LINCOLN,,,,,,,0,,,,,66,,, +RPEC Member ,"Ward 1, District F ",,,,LA,,,LINCOLN,,,,,,,0,,,,,66,,, +RPEC Member ,"Ward 1, District G ",,,,LA,,,LINCOLN,Rolanda M. Howe,142 Mossy Knoll Dr.,,Ruston,LA,71270,5,318-255-8892,W,F,R,66,2/20/2012,2/20/2008,Ms. Howe +RPEC Member ,"Ward 2, District A ",,,,LA,,,LINCOLN,,,,,,,0,,,,,66,,, +RPEC Member ,"Ward 2, District B ",,,,LA,,,LINCOLN,,,,,,,0,,,,,66,,, +RPEC Member ,Ward 3 ,,,,LA,,,LINCOLN,,,,,,,0,,,,,66,,, +RPEC Member ,Ward 4 ,,,,LA,,,LINCOLN,,,,,,,0,,,,,66,,, +RPEC Member ,Ward 5 ,,,,LA,,,LINCOLN,Alice Herrmann,1402 St. John Ave.,,Ruston,LA,71270,5,318-255-6078,W,F,R,66,2/20/2012,2/20/2008,Ms. Herrmann +Sheriff ,,P. O. Box 2070,,Ruston,LA,71273,318-251-5111,LINCOLN,Mike Stone,P.O. Box 2070,,Ruston,LA,71273,5,318-255-3045,W,M,D,225,6/30/2012,7/1/2008,Sheriff Stone +Clerk of Court ,,P. O. Box 924,,Ruston,LA,71270,318-251-5130,LINCOLN,Linda Cook,P.O. Box 924,,Ruston,LA,71270,5,318-251-5130,W,F,D,230,6/30/2012,7/1/2008,Ms. Cook +Assessor ,,P.O. Box 1218,,Ruston,LA,71273-1218,318-251-5140,LINCOLN,Pamela C. Jones,212 Deer Creek Rd.,,Ruston,LA,71270,5,318-255-6006,W,F,D,235,12/31/2012,1/1/2009,Ms. Jones +Coroner ,,"411 E.Vaughn Ave.,Ste. 105",,Ruston,LA,71270,318-251-3774,LINCOLN,"James Michael ""Mike"" Belue","411 East Vaughn, Ste. 105",,Ruston,LA,71270,5,318-251-3774,W,M,,240,3/25/2012,3/24/2008,Mr. Belue +Police Juror,District 1,P. O. Box 979,,Ruston,LA,71273-0979,318-513-6200,LINCOLN,Theresa Moore Wyatt,273 Houston Rd.,,Ruston,LA,71270,5,318-247-8117,B,F,D,245,1/8/2012,1/14/2008,Ms. Wyatt +Police Juror ,District 2 ,P. O. Box 979,,Ruston,LA,71273-0979 ,318-251-5149,LINCOLN,Hazel D. Hunter,218 Webster Ave.,,Grambling,LA,71245,5,318-247-6609,B,F,D,245,1/8/2012,1/14/2008,Ms. Hunter +Police Juror ,District 3 ,P. O. Box 979,,Ruston,LA,71273-0979 ,318-251-5149,LINCOLN,Bobby Bennett,10169 Hwy. 146,,Ruston,LA,71270,5,318-255-5386,W,M,D,245,1/8/2012,1/14/2008,Mr. Bennett +Police Juror ,District 4 ,P. O. Box 979,,Ruston,LA,71273-0979 ,318-251-5149,LINCOLN,Mike Franklin,308 McElduff Rd.,,Dubach,LA,71235,5,318-255-8853,W,M,R,245,1/8/2012,1/14/2008,Mr. Franklin +Police Juror ,District 5 ,P. O. Box 979,,Ruston,LA,71273-0979 ,318-251-5149,LINCOLN,David Hammons,362 Hwy. 556,,Choudrant,LA,71227,5,318-768-2410,W,M,R,245,1/8/2012,1/14/2008,Mr. Hammons +Police Juror ,District 6 ,P. O. Box 979,,Ruston,LA,71273-0979 ,318-251-5149,LINCOLN,Roy D. Glover,200 Glover Rd.,,Ruston,LA,71270,5,318-255-6973,W,M,D,245,1/8/2012,1/14/2008,Mr. Glover +Police Juror ,District 7 ,P. O. Box 979,,Ruston,LA,71273-0979 ,318-251-5149,LINCOLN,"""Jody"" Backus",432 Forest Circle,,Ruston,LA,71270,5,318-255-8622,W,M,R,245,1/8/2012,1/14/2008,Mr. Backus +Police Juror ,District 8 ,P. O. Box 979,,Ruston,LA,71273-0979 ,318-251-5149,LINCOLN,"R. G. ""Skip"" Russell",172 East Ridge Terrace,,Ruston,LA,71270,5,318-255-4826,W,M,R,245,1/8/2012,1/14/2008,Mr. Russell +Police Juror ,District 9 ,P. O. Box 979,,Ruston,LA,71273-0979 ,318-251-5149,LINCOLN,"""Joe"" Henderson",P.O. Box 1027,,Ruston,LA,71273-1027,10,318-251-1299,B,M,,245,1/8/2012,1/14/2008,Mr. Henderson +Police Juror ,District 10 ,P. O. Box 979,,Ruston,LA,71273-0979 ,318-251-5149,LINCOLN,Annie Martin Brown,1301 Oakdale St.,,Ruston,LA,71270,5,318-255-0420,B,F,D,245,1/8/2012,1/14/2008,Ms. Brown +Police Juror ,District 11 ,P. O. Box 979,,Ruston,LA,71273-0979 ,318-251-5149,LINCOLN,Sharyon Mayfield,620 Adams Street,,Ruston,LA,71270,5,318-251-3298,B,F,D,245,1/8/2012,1/14/2008,Ms. Mayfield +Police Juror ,District 12 ,P. O. Box 979,,Ruston,LA,71273-0979 ,318-251-5149,LINCOLN,"R. D. ""Mickey"" Mays",1318 South Barnett Springs Rd.,,Ruston,LA,71270,5,318-255-0038,W,M,,245,1/8/2012,1/14/2008,Mr. Mays +City Judge ,"City Court, City of Ruston ",P. O. Box 1821,,Ruston,LA,71273-1821,318-251-8614,LINCOLN,Danny W. Tatum,3721 Moreland St.,,Ruston,LA,71270,5,318-251-8614,W,M,D,250,12/31/2014,1/1/2009,Judge Tatum +City Marshal ,"City Court, City of Ruston ",P. O. Box 1821,,Ruston,LA,71273-1821,318-255-7788,LINCOLN,Michael Hilton,912 Robert St.,,Ruston,LA,71270,5,318-251-0454,W,M,D,250,12/31/2014,1/1/2009,Marshal Hilton +Member of School Board ,District 1 ,410 S. Farmerville St.,,Ruston,LA,71270-4699,318-255-1430,LINCOLN,Mattie M. Harrison,"1468 Martin Luther King, Jr. Ave.",,Grambling,LA,71245,5,318-247-6040,B,F,D,255,12/31/2010,1/1/2007,Ms. Harrison +Member of School Board ,District 2 ,410 S. Farmerville St.,,Ruston,LA,71270-4699,318-255-1430,LINCOLN,Eddie Milton Jones,P.O. Box 494,,Grambling,LA,71245,5,318-247-6715,B,M,D,255,12/31/2010,1/1/2007,Mr. Jones +Member of School Board ,District 3 ,410 S. Farmerville St.,,Ruston,LA,71270-4699,318-255-1430,LINCOLN,Curtis Dowling,10601 Hwy. 80,,Simsboro,LA,71275,5,318-247-3380,W,M,D,255,12/31/2010,1/1/2007,Mr. Dowling +Member of School Board ,District 4 ,410 S. Farmerville St.,,Ruston,LA,71270-4699,318-255-1430,LINCOLN,Michael J. Barmore,204 New Prospect Rd.,,Dubach,LA,71235,5,318-777-3761,W,M,R,255,12/31/2010,1/1/2007,Mr. Barmore +Member of School Board ,District 5 ,410 S. Farmerville St.,,Ruston,LA,71270-4699,318-255-1430,LINCOLN,"James ""Jim"" Kessler",987 Roach Rd.,,Choudrant,LA,71227,5,318-768-2873,W,M,D,255,12/31/2010,1/1/2007,Mr. Kessler +Member of School Board ,District 6 ,410 S. Farmerville St.,,Ruston,LA,71270-4699,318-255-1430,LINCOLN,"Joe E. Mitcham, Jr.",949 Woods Rd.,,Ruston,LA,71270,5,318-255-9292,W,M,R,255,12/31/2010,1/1/2007,Mr. Mitcham +Member of School Board ,District 7 ,410 S. Farmerville St.,,Ruston,LA,71270-4699,318-255-1430,LINCOLN,"""Trott"" Hunt",206 Chautauqua Rd.,,Ruston,LA,71270,5,318-251-1079,W,M,R,255,12/31/2010,1/1/2007,Mr. Hunt +Member of School Board ,District 8 ,410 S. Farmerville St.,,Ruston,LA,71270-4699,318-255-1430,LINCOLN,Lisa Best,1997 Atkins Rd.,,Ruston,LA,71270,5,318-251-2348,W,F,R,255,12/31/2010,1/1/2007,Ms. Best +Member of School Board ,District 9 ,410 S. Farmerville St.,,Ruston,LA,71270-4699,318-255-1430,LINCOLN,Lynda Henderson,P.O. Box 1027,,Ruston,LA,71273,5,318-251-1299,B,F,O,255,12/31/2010,1/1/2007,Ms. Henderson +Member of School Board ,District 10 ,410 S. Farmerville St.,,Ruston,LA,71270-4699,318-255-1430,LINCOLN,Otha Anders,511 Grant Ave.,,Ruston,LA,71270,5,318-255-9670,B,M,D,255,12/31/2010,1/1/2007,Mr. Anders +Member of School Board ,District 11 ,410 S. Farmerville St.,,Ruston,LA,71270-4699,318-255-1430,LINCOLN,"George Mack, Sr.",1206 Taylor St.,,Ruston,LA,71270,5,318-255-5917,B,M,D,255,12/31/2010,1/1/2007,Mr. Mack +Member of School Board ,District 12 ,410 S. Farmerville St.,,Ruston,LA,71270-4699,318-255-1430,LINCOLN,Ted McKinney,1607 Ravine Dr.,,Ruston,LA,71270,5,318-255-8530,W,M,D,255,12/31/2010,1/1/2007,Mr. McKinney +Justice of the Peace ,Justice of the Peace Ward 2 ,P. O. Box 148,,Grambling,LA,71245,318-247-6446,LINCOLN,Richard J. Gallot,P.O. Box 148,,Grambling,LA,71245,5,318-247-6446,B,M,D,265,12/31/2014,1/1/2009,Mr. Gallot +Justice of the Peace ,Justice of the Peace Ward 3 ,5570 LA Hwy. 563,,Simsboro,LA,71275,318-247-8250,LINCOLN,Heath Hattaway,P.O. Box 96,,Simsboro,LA,71275,5,318-243-4584,W,M,R,265,12/31/2014,1/1/2009,Mr. Hattaway +Justice of the Peace ,Justice of the Peace Ward 4 ,441 LA Hwy. 545,,Dubach,LA,71235,318-777-8314,LINCOLN,Barbra Barmore,441 Hwy. 545,,Dubach,LA,71235,5,318-777-8314,W,F,R,265,12/31/2014,1/1/2009,Mr. Barmore +Justice of the Peace ,Justice of the Peace Ward 5 ,P. O. Box 29,,Choudrant,LA,71227,318-768-2692,LINCOLN,Steve Moore,P.O. Box 29,,Choudrant,LA,71227,5,318-768-2692,W,M,D,265,12/31/2014,1/1/2009,Mr. Moore +Constable ,Justice of the Peace Ward 2 ,P.O. Box 1031,,Grambling,LA,71245,318-247-8387,LINCOLN,"Ta'Darren ""Smokey"" Jackson",P.O. Box 1031,,Grambling,LA,71245,5,318-243-5111,B,M,,267,12/31/2014,1/1/2009,Mr. Jackson +Constable ,Justice of the Peace Ward 3 ,P.O. Box 145,,Simsboro,LA,71275,318-247-3602,LINCOLN,David Kent,297 Weir Rd.,,Simsboro,LA,71275,5,318-247-8738,W,M,D,267,12/31/2014,1/1/2009,Mr. Kent +Constable ,Justice of the Peace Ward 4 ,441 LA Hwy. 545,,Dubach,LA,71235,318-777-8314,LINCOLN,Prentis Barmore,441 Hwy. 545,,Dubach,LA,71235,5,318-777-8314,W,M,R,267,12/31/2014,1/1/2009,Mr. Barmore +Constable ,Justice of the Peace Ward 5 ,P.O. Box 81,,Choudrant,LA,71227,318-768-2591,LINCOLN,Jack C. Pipes,P.O. Box 81,,Choudrant,LA,71227,5,318-768-2591,W,M,R,267,12/31/2014,1/1/2009,Mr. Pipes +Mayor ,City of Grambling ,P. O. Box 108,,Grambling,LA,,318-247-6120,LINCOLN,Martha Woodard Andrus,P.O. Box 582,,Grambling,LA,71245,5,318-247-6491,B,F,D,300,12/31/2010,1/1/2007,Ms. Andrus +Mayor ,City of Ruston ,P. O. Box 2069,,Ruston,LA,,318-251-8621,LINCOLN,"""Dan"" Hollingsworth",109 Llanfair Dr.,,Ruston,LA,71270,5,318-255-7569,W,M,O,300,12/31/2010,1/1/2007,Mayor Hollingsworth +Mayor ,Town of Dubach ,P. O. Box 252,,Dubach,LA,,318-777-3321,LINCOLN,Margaret Rogers,P.O. Box 423,,Dubach,LA,71235,5,318-777-3412,W,F,R,300,12/31/2010,1/1/2007,Ms. Rogers +Mayor ,Town of Vienna ,P. O. Box 980,,Ruston,LA,,318-251-2913,LINCOLN,"""Randy"" Graham",203 Deer Trial,,,LA,71235,5,318-255-2913,W,M,R,300,1/9/2012,1/14/2008,Mayor Graham +Mayor ,Village of Choudrant ,P. O. Box 288,,Choudrant,LA,,318-768-4111,LINCOLN,"""Bill"" Sanderson",P. O. Box 141,,Choudrant,LA,71227,5,318-768-2179,W,M,R,300,12/31/2010,1/1/2007, +Mayor ,Village of Simsboro ,P. O. Box 40,,Simsboro,LA,,318-247-6248,LINCOLN,Willie Hendricks,P.O. Box 192,,Simsboro,LA,71275,5,318-247-3504,B,M,R,300,12/31/2010,1/1/2007,Mayor Hendricks +Chief of Police ,Town of Dubach ,,,,LA,,,LINCOLN,Russell Croxton,2037 McMullen St.,,Dubach,LA,71235,5,318-777-3365,W,M,,305,12/31/2010,1/1/2007,Mr. Croxton +Chief of Police ,Village of Choudrant ,P. O. Box 288,,Choudrant,LA,71227,318-768-4111,LINCOLN,Bobby Joe Milner,212 Pine St.,,Choudrant,LA,71227,5,318-768-2977,W,M,R,305,12/31/2010,1/1/2007, +Chief of Police ,Village of Simsboro ,P. O. Box 40,,Simsboro,LA,71275,318-247-6350,LINCOLN,Billy C. Foster,2402 Martha St.,,Simsboro,LA,71275,5,318-247-0581,W,M,D,305,12/31/2010,1/1/2007,Chief Foster +Alderman ,Village of Choudrant ,P. O. Box 288,,Choudrant,LA,71227,318-768-4111,LINCOLN,Ragan Aswell,P.O. Box 265,,Choudrant,LA,71227,5,318-768-2113,W,M,D,310,12/31/2010,1/1/2007,Ms. Aswell +Alderman ,Village of Choudrant ,P. O. Box 288,,Choudrant,LA,71227,318-768-4111,LINCOLN,"Geraline ""Skip"" Morrison",P.O. Box 267,,Choudrant,LA,71227,5,318-768-2185,W,F,D,310,12/31/2010,1/1/2007,Ms. Morris +Alderman ,Village of Choudrant ,P. O. Box 288,,Choudrant,LA,71227,318-768-4111,LINCOLN,"John O'Neal, Jr.",P. O. Box 536,,Choudrant,LA,71227,5,318-768-2516,W,M,D,310,12/31/2010,1/1/2007,Mr. O'neal +Alderman ,Village of Simsboro ,P. O. Box 40,,Simsboro,LA,71275,318-247-6350,LINCOLN,"""Doug"" Durrett",P.O. Box 296,,Simsboro,LA,71275,5,318-247-8197,W,M,D,310,12/31/2010,1/1/2007,Mr. Durrett +Alderman ,Village of Simsboro ,P. O. Box 40,,Simsboro,LA,71275,318-247-6350,LINCOLN,Pamela Durrett,2419 Martha St.,,Simsboro,LA,71275,5,318-247-0833,W,F,,310,12/31/2010,1/1/2007,Ms. Durrett +Alderman ,Village of Simsboro ,P. O. Box 40,,Simsboro,LA,71275,318-247-6350,LINCOLN,James Al Madden,3545 Hwy. 150,,Simsboro,LA,71275,5,318-247-8744,W,M,D,310,12/31/2010,1/1/2007,Mr. Madden +Alderman ,"Ward 1, City of Ruston ",P. O. Box 2069,,Ruston,LA,71273-2069,318-251-8621,LINCOLN,Levell Thurman,1608 Skyline Dr.,,Ruston,LA,71270,5,318-251-9342,B,M,D,310,12/31/2010,1/1/2007,Mr. Thurman +Alderman ,"Ward 2, City of Ruston ",P. O. Box 2069,,Ruston,LA,71273-2069,318-251-8621,LINCOLN,Elmore Mayfield,1400 Oriole Ave.,,Ruston,LA,71270,5,318-255-1073,B,M,D,310,12/31/2010,1/1/2007,Mr. Mayfield +Alderman ,"Ward 3, City of Ruston ",P. O. Box 2069,,Ruston,LA,71273-2069,318-251-8621,LINCOLN,Jedd Lewis,305 Arkansas Street,,Ruston,LA,71270,5,318-255-2634,W,M,R,310,12/31/2010,1/1/2007,Mr. Lewis +Alderman ,"Ward 4, City of Ruston ",P. O. Box 2069,,Ruston,LA,71273-2069,318-251-8621,LINCOLN,Jim Pearce,515 Toma Lodge Dr.,,Ruston,LA,71270,5,318-251-2866,W,M,D,310,12/31/2010,1/1/2007,Mr. Pearce +Alderman ,"Ward 5, City of Ruston ",P. O. Box 2069,,Ruston,LA,71273-2069,318-251-8621,LINCOLN,Marie S. Riggs,905 Robinette Dr.,,Ruston,LA,71270,5,318-255-4093,W,F,D,310,12/31/2010,1/1/2007,Ms. Riggs +Council Member ,City of Grambling ,P. O. Box 108,,Grambling,LA,71245,318-247-6120,LINCOLN,Alvin Bradley,270 Mockingbird Ln.,,Grambling,LA,71245,5,318-247-6317,B,M,D,310,12/31/2010,1/1/2007,Mr. Bradley +Council Member ,City of Grambling ,P. O. Box 108,,Grambling,LA,71245,318-247-6120,LINCOLN,Toby B. Bryan,P.O. Box 977,,Grambling,LA,71245,5,318-247-6727,B,M,D,310,12/31/2010,1/1/2007,Mr. Bryan +Council Member ,City of Grambling ,P. O. Box 108,,Grambling,LA,71245,318-247-6120,LINCOLN,"Roosevelt Bryant, Jr.",P.O. Box 254,,Grambling,LA,71245,5,318-247-3388,B,M,D,310,12/31/2010,1/1/2007,Mr. Bryant +Council Member ,City of Grambling ,P. O. Box 108,,Grambling,LA,71245,318-247-6120,LINCOLN,Roy L. Jackson,112 Wayside Dr.,,Grambling,LA,71245,5,318-247-3446,B,M,D,310,12/31/2010,2/23/2009,Mr. Jackson +Council Member ,City of Grambling ,P. O. Box 108,,Grambling,LA,71245,318-247-6120,LINCOLN,Edward R. Jones,P. O. Box 159,,Grambling,LA,71245,5,318-247-0099,B,M,D,310,12/31/2010,1/1/2007,Mr. Jones +Council Member ,"District A, Town of Dubach ",P. O. Box 252,,Dubach,LA,71235,318-777-3321,LINCOLN,Vallie Carrico,P.O. Box 461,,Dubach,LA,71235,5,318-777-3551,W,F,R,310,12/31/2010,1/1/2007,Ms. Carrico +Council Member ,"District B, Town of Dubach ",P. O. Box 252,,Dubach,LA,71235,318-777-3321,LINCOLN,Reuben Sparks,P.O. Box 87,,Dubach,LA,71235,5,318-777-3938,W,M,R,310,12/31/2010,1/1/2007,Mr. Sparks +Council Member ,"District C, Town of Dubach ",P. O. Box 252,,Dubach,LA,71235,318-777-3321,LINCOLN,Mary Alice Billberry,8075 Hico St.,,Dubach,LA,71235,5,318-777-8312,W,F,R,310,12/31/2010,1/1/2007,Ms. Billberry +Council Member ,"District D, Town of Dubach ",P. O. Box 252,,Dubach,LA,71235,318-777-3321,LINCOLN,Davie Powell,158 Voss Street,,Dubach,LA,71235,5,318-777-8653,B,M,D,310,12/31/2010,1/1/2007,Mr. Powell +Council Member ,"District E, Town of Dubach ",P. O. Box 252,,Dubach,LA,71235,318-777-3321,LINCOLN,Hattie Graham,P.O. Box 746,,Dubach,LA,71235,5,318-777-8781,B,F,D,310,12/31/2010,1/1/2007,Ms. Graham +Councilmen ,Town of Vienna ,P. O. Box 980,,Ruston,LA,71273,318-251-2913,LINCOLN,Keith Brasuell,212 Deer Trail,,Dubach,LA,71235,5,318-251-2073,W,M,,310,1/9/2012,1/14/2008,Mr. Brasuell +Councilmen ,Town of Vienna ,P. O. Box 980,,Ruston,LA,71273,318-251-2913,LINCOLN,"Walter Carpenter, Jr.",153 Deer Trail,,Dubach,LA,71235,5,318-254-8158,W,M,R,310,1/8/2012,8/24/2009,Mr. Carpenter +Councilmen ,Town of Vienna ,P. O. Box 980,,Ruston,LA,71273,318-251-2913,LINCOLN,Thomas P. Smith,119 Woodvale Dr.,,Dubach,LA,71235,5,318-251-2114,W,M,R,310,1/9/2012,1/14/2008,Mr. Smith +DPEC Member ,at Large ,,,,LA,,,LIVINGSTON,Larry Arceneaux,30807 Hwy. 22,,Springfield,LA,70462,5,225-294-5833,W,M,D,54,2/20/2012,2/20/2008,Mr. Arceneaux +DPEC Member ,at Large ,,,,LA,,,LIVINGSTON,DeVan Pardue,23940 Coats Rd.,,Springfield,LA,70462,5,,W,M,D,54,2/20/2012,2/20/2008,Mr. Pardue +DPEC Member ,at Large ,,,,LA,,,LIVINGSTON,Hobart Pardue,P.O. Box 369,,Springfield,LA,70462,5,225-294-5138,W,M,D,54,2/20/2012,2/20/2008,Mr. Pardue +DPEC Member ,at Large ,,,,LA,,,LIVINGSTON,Hubert Stilley,30158 West H. Stilley Rd.,,Independence,LA,70443,5,225-567-3404,W,M,D,54,2/20/2012,2/20/2008,Mr. Stilley +DPEC Member ,District 1 ,,,,LA,,,LIVINGSTON,,,,,,,0,,,,,56,,, +DPEC Member ,District 2 ,,,,LA,,,LIVINGSTON,"""Gene"" Williams",P.O. Box 306,,Denham Springs,LA,70727,5,225-665-6056,W,M,D,56,2/20/2012,2/20/2008,Mr. Williams +DPEC Member ,District 3 ,,,,LA,,,LIVINGSTON,,,,,,,0,,,,,56,,, +DPEC Member ,District 4 ,,,,LA,,,LIVINGSTON,"""Al"" Comeaux",725 Poplar St.,,Denham Springs,LA,70726,5,225-664-9512,W,M,D,56,2/20/2012,2/20/2008,Mr. Comeaux +DPEC Member ,District 5 ,,,,LA,,,LIVINGSTON,,,,,,,0,,,,,56,,, +DPEC Member ,District 6 ,,,,LA,,,LIVINGSTON,Kevin Hull,20469 LA Hwy. 16,,Denham Springs,LA,70726,5,225-405-1362,W,M,D,56,2/20/2012,2/20/2008,Mr. Hull +DPEC Member ,District 7 ,,,,LA,,,LIVINGSTON,,,,,,,0,,,,,56,,, +DPEC Member ,District 8 ,,,,LA,,,LIVINGSTON,,,,,,,0,,,,,56,,, +DPEC Member ,District 9 ,,,,LA,,,LIVINGSTON,Cassandra Butler,P.O. Box 407,,Independence,LA,70443,5,985-878-4881,B,F,D,56,2/20/2012,2/20/2008,Ms. Butler +RPEC Member ,at Large ,,,,LA,,,LIVINGSTON,Derek Babcock,13600 Quail Run Ave.,,Denham Springs,LA,70726,5,225-505-9505,W,M,R,64,2/20/2012,2/20/2008,Mr. Babcock +RPEC Member ,at Large ,,,,LA,,,LIVINGSTON,Floyd Gonzalez,14112 Forest Glen Ln.,,Walker,LA,70785,5,225-664-4169,W,M,R,64,2/20/2012,2/20/2008,Mr. Gonzales +RPEC Member ,at Large ,,,,LA,,,LIVINGSTON,Cylton Joe Mitchell,920 Angee Dr.,,Denham Springs,LA,70726,5,225-664-0288,W,M,R,64,2/20/2012,2/20/2008,Mr. Mitchell +RPEC Member ,at Large ,,,,LA,,,LIVINGSTON,George Slaght,25920 Oak Alley,,Holden,LA,70744,5,225-294-5883,W,M,R,64,2/20/2012,2/20/2008,"Mr, Slaght " +RPEC Member ,at Large ,,,,LA,,,LIVINGSTON,James Tullier,27300 Tullier Ln.,,Denham Springs,LA,70726,5,225-664-7063,W,M,R,64,2/20/2012,2/20/2008,Mr. Palmer +RPEC Member ,District 1 ,121 Joan St.,,Cenham Springs,LA,70726,,LIVINGSTON,,,,,,,0,,,,,66,,, +RPEC Member ,District 2 ,,,,LA,,,LIVINGSTON,Carolyn R. Hatcher,35130 Stone Castle Dr.,,Denham Springs,LA,70706,5,225-667-8163,W,F,R,66,2/20/2012,2/20/2008,Ms. Hatcher +RPEC Member ,District 3 ,,,,LA,,,LIVINGSTON,,,,,,,0,,,,,66,,, +RPEC Member ,District 4 ,,,,LA,,,LIVINGSTON,"Robert W. ""Bob"" Morgan",232 Third St.,,Denham Springs,LA,70726,5,225-223-2144,W,M,R,66,2/20/2012,2/20/2008,Mr. Morgan +RPEC Member ,District 5 ,,,,LA,,,LIVINGSTON,Jason Stern,10872 Sherrie Lane,,Denham Springs,LA,70726,5,225-709-0525,W,M,R,66,2/20/2012,2/20/2008,Mr. Stern +RPEC Member ,District 6 ,,,,LA,,,LIVINGSTON,,,,,,,0,,,,,66,,, +RPEC Member ,District 7 ,,,,LA,,,LIVINGSTON,Gerald L. Burns,28630 Juban Road,,Denham Springs,LA,70726,5,225-664-3463,W,M,R,66,2/20/2012,2/20/2008,Mr. Burns +RPEC Member ,District 8 ,,,,LA,,,LIVINGSTON,,,,,,,0,,,,,66,,, +RPEC Member ,District 9 ,,,,LA,,,LIVINGSTON,,,,,,,0,,,,,66,,, +Sheriff ,,P. O. Box 850,,Livingston,LA,70754,225-686-2241,LIVINGSTON,"William L. ""Willie"" Graves",P.O. Box 850,,Livingston,LA,70754,5,225-665-2721,W,M,D,225,6/30/2012,7/1/2008,Sheriff Graves +Clerk of Court ,,P. O. Box 1150,,Livingston,LA,70754,225-686-2216,LIVINGSTON,"Thomas ""Tom"" Sullivan, Jr.",P. O. Box 1150,,Livingston,LA,70754,5,225-665-6464,W,M,R,230,6/30/2012,7/1/2008,Mr. Sullivan +Assessor ,,P. O. Box 307,,Livingston,LA,70754,225-686-7278,LIVINGSTON,Jeff Taylor,8082 Evergreen Drive,,Denham Springs,LA,70726,5,225-667-2795,W,M,R,235,12/31/2012,1/1/2009,Mr. Taylor +Coroner ,,140 Aspen Square,,Denham Springs,LA,70726,225-791-1152,LIVINGSTON,Ron Coe,25153 Arlington Ave.,,Denham Springs,LA,70726,5,225-664-4737,W,M,R,240,3/25/2012,3/24/2008,Mr. Coe +Parish President ,,P.O. Box 335,,Livingston,LA,70754,225-686-3027,LIVINGSTON,"Michael ""Mike"" Grimmer",13246 Pendarvis Lane,,Walker,LA,70785,5,225-665-5351,W,M,D,243,1/9/2012,1/14/2008,Mr. Grimmer +Councilman,District 1,P. O. Box 335,,Livingston,LA,70754,225-686-3027,LIVINGSTON,"Randall ""Randy"" Rushing",31200 Weiss Rd.,,Walker,LA,70785,5,225-686-2886,W,M,D,245,1/9/2012,1/14/2008,Mr. Rushing +Councilman ,District 2 ,P. O. Box 335,,Livingston,LA,70754,225-686-3027,LIVINGSTON,Jimmie McCoy,37375 La Hwy 16,,Denham Springs,LA,70706,5,225-573-8020,W,M,R,245,1/9/2012,1/14/2008,Mr. McCoy +Councilman ,District 3 ,P. O. Box 335,,Livingston,LA,70754,225-686-3027,LIVINGSTON,Cindy Wale,9417 Prince Charles,,Denham Springs,LA,70726,5,225-665-7765,W,F,D,245,1/9/2012,1/14/2008,Ms. Wale +Councilman ,District 4 ,P. O. Box 335,,Livingston,LA,70754,225-686-3027,LIVINGSTON,Marshall H. Harris,704 Tom Dr.,,Denham Springs,LA,70726,5,225-664-6647,W,M,D,245,1/9/2012,1/14/2008,Mr. Harris +Councilman ,District 5 ,P. O. Box 335,,Livingston,LA,70754,225-686-3027,LIVINGSTON,"Albert ""Buddy"" Mincey",10961 La. Hwy 1033,,Denham Springs,LA,70726,5,225-665-6504,W,M,D,245,1/9/2012,1/14/2008,Mr. Mincey +Councilman ,District 6 ,P. O. Box 335,,Livingston,LA,70754,225-686-3027,LIVINGSTON,Don Wheat,27179 S. Satsuma Rd.,,Livingston,LA,70754,5,225-698-3406,W,M,D,245,1/9/2012,1/14/2008,Mr. Wheat +Councilman ,District 7 ,P. O. Box 335,,Livingston,LA,70754,225-686-3027,LIVINGSTON,Thomas Watson,12395 Lakeland Dr.,,Walker,LA,70785,5,225-791-3944,W,M,R,245,1/9/2012,1/14/2008,Mr. Watson +Councilman ,District 8 ,P. O. Box 335,,Livingston,LA,70754,225-686-3027,LIVINGSTON,"Ronald Sharp, Sr.",29946 Hwy. 444,,Springfield,LA,70462,5,225-695-3627,W,M,D,245,1/9/2012,1/14/2008,Mr. Sharp +Councilman ,District 9 ,P. O. Box 335,,Livingston,LA,70754,225-686-3027,LIVINGSTON,Eddie Wagner,32290 Pea Ridge Rd.,,Albany,LA,70711,5,225-567-2524,W,M,D,245,1/9/2012,1/14/2008,Mr. Wagner +City Judge ,"City Court, City of Denham Springs ",400 Mayor Herbert Hoover Ave.,,Denham Springs,LA,70726,225-665-5505,LIVINGSTON,"Charles W. ""Chuck"" Borde, Jr.",P.O. Box 728,,Denham Springs,LA,70727,5,225-665-1253,W,M,D,250,12/31/2014,1/1/2009,Judge Borde +City Marshal ,"City Court, City of Denham Springs ",400 Mayor Hebert Hoover Ave.,,Denham Springs,LA,70726,225-665-8568,LIVINGSTON,"Jerry L. Denton, Jr.",930 Benton Ln.,,Denham Springs,LA,70726,5,225-667-8702,W,M,R,250,12/31/2014,1/1/2009,Marshal Denton +Member of School Board ,District 1 ,P. O. Box 1130,,Livingston,LA,70754,225-686-7044,LIVINGSTON,"Clinton ""Clint"" Mitchell",29845 Lard Rd.,,Holden,LA,70744,5,225-657-1850,W,M,D,255,12/31/2010,1/1/2007,Mr. Mitchell +Member of School Board ,District 2 ,P. O. Box 1130,,Livingston,LA,70754,225-686-4221,LIVINGSTON,David A. Tate,35491 Old La. Hwy. 16,,Denham Springs,LA,70706,5,225-665-0000,W,M,R,255,12/31/2010,1/1/2007,Mr. Tate +Member of School Board ,District 3 ,P. O. Box 1130,,Livingston,LA,70754,225-686-4221,LIVINGSTON,Milton Hughes,P.O. Box 487,,Denham Springs,LA,70726,5,225-664-4552,W,M,D,255,12/31/2010,1/1/2007,MR. Hughes +Member of School Board ,District 4 ,P. O. Box 1130,,Livingston,LA,70754,225-686-4221,LIVINGSTON,"Louis E. ""Loody"" Carlisle",P.O. Box 622,,Denham Springs,LA,70726,5,225-665-6078,W,M,D,255,12/31/2010,1/1/2007,Mr. Carlisle +Member of School Board ,District 5 ,P. O. Box 1130,,Livingston,LA,70754,225-686-4221,LIVINGSTON,"Albert ""Buddy"" Mincey, Jr.",10983 La. Hwy. 1033,,Denham Springs,LA,70726,5,225-667-3811,W,M,D,255,12/31/2010,1/1/2007,Mr. Mincey +Member of School Board ,District 6 ,P. O. Box 1130,,Livingston,LA,70754,225-686-4221,LIVINGSTON,"Jeffery ""Jeff"" Cox",34121 Cane Market Rd.,,Walker,LA,70785,5,225-664-8084,W,M,D,255,12/31/2010,1/1/2007,Mr. Cox +Member of School Board ,District 7 ,P. O. Box 1130,,Livingston,LA,70754,225-686-4221,LIVINGSTON,"James ""Jimmy"" Watson",13561 Graham Ln.,,Walker,LA,70785,5,225-665-5705,W,M,R,255,12/31/2010,1/1/2007,Mr. Watson +Member of School Board ,District 8 ,P. O. Box 1130,,Livingston,LA,70754,225-686-4221,LIVINGSTON,Keith Martin,P.O. Box 211,,Springfield,LA,70462,5,225-695-3721,W,M,D,255,12/31/2010,1/1/2007,Mr. Martin +Member of School Board ,District 9 ,P. O. Box 1130,,Livingston,LA,70754,225-686-4221,LIVINGSTON,"""Sid"" Kinchen",P.O. Box 1883,,Albany,LA,70711,5,225-567-1109,W,M,D,255,12/31/2010,1/1/2007,Mr. Kinchen +Justice of the Peace ,Justice of the Peace Ward 1 ,P. O. Box 33,,Watson,LA,70786,225-667-1500,LIVINGSTON,Jeff Sachse,34674 LA Hwy. 16,,Denham Springs,LA,70706,5,225-667-1500,W,M,R,265,12/31/2014,1/1/2009,Mr. Sachse +Justice of the Peace ,Justice of the Peace Ward 3 ,,,,LA,,,LIVINGSTON,Rhonda Dale Wheat,20800 Adam Averett Rd.,,Livingston,LA,70754,5,225-698-6673,W,F,D,265,12/31/2014,1/1/2009,Ms. Wheat +Justice of the Peace ,Justice of the Peace Ward 4 ,P. O. Box 53,,Albany,LA,70711,225-567-3822,LIVINGSTON,Max C. Owens,P.O. Box 53,,Albany,LA,70711,5,225-567-3822,W,M,D,265,12/31/2014,1/1/2009,Mr. Owens +Justice of the Peace ,Justice of the Peace Ward 5 ,14724 Bear Island Rd.,,Maurepas,LA,70449,225-695-3666,LIVINGSTON,"Lena ""Bitsy"" Balfantz",14724 Bear Island Rd.,,Maurepas,LA,70449,5,225-695-3666,W,F,D,265,12/31/2014,1/1/2009,Mr. Balfantz +Justice of the Peace ,Justice of the Peace Ward 6 ,P. O. Box 643,,Springfield,LA,70462,225-294-2864,LIVINGSTON,Mary Vicknair Bennett,P.O. Box 643,,Springfield,LA,70462,5,225-294-2864,W,F,D,265,12/31/2014,1/1/2009,Ms. Bennett +Justice of the Peace ,Justice of the Peace Ward 7 ,10964 LA Hwy. 1033,,Denham Springs,LA,70726,225-664-9151,LIVINGSTON,Sandra Allen Causey,10964 La. Hwy. 1033,,Denham Springs,LA,70726,5,225-664-9151,W,F,D,265,12/31/2014,1/1/2009,Ms. Causey +Justice of the Peace ,Justice of the Peace Ward 8 ,32447 Mangum Chapel Rd.,,Walker,LA,70785,225-686-3890,LIVINGSTON,Lance Radley,32447 Mangum Chapel Rd.,,Walker,LA,70785,5,225-686-3890,W,M,D,265,12/31/2014,1/1/2009,Mr. Radley +Justice of the Peace ,Justice of the Peace Ward 9 ,P.O. Box 657,,Livingston,LA,70754,225-686-7920,LIVINGSTON,Rita Stewart,P.O. Box 657,,Livingston,LA,70754,5,225-686-8244,W,F,D,265,12/31/2014,1/1/2009,Ms. Stewart +Justice of the Peace ,Justice of the Peace Ward 10 ,30560 Lower Rome Rd.,,Springfield,LA,70462,225-695-3217,LIVINGSTON,"Judith ""Judy"" White",P.O. Box 921,,Springfield,LA,70462,5,225-695-3508,W,F,D,265,12/31/2014,1/1/2009,Ms. White +Justice of the Peace ,Justice of the Peace Ward 11 ,30930 N. Walker Rd.,,Walker,LA,70785,225-664-2893,LIVINGSTON,Cindy Strange Small,30930 Walker N. Rd.,,Walker,LA,70785,5,225-664-2893,W,F,R,265,12/31/2014,1/1/2009,Ms. Small +Constable ,Justice of the Peace Ward 1 ,37354 LA Hwy. 16,,Denham Springs,LA,70726,225-664-7695,LIVINGSTON,"Richard ""Ricky"" Chandler",37354 Hwy. 16,,Denham Springs,LA,70706,5,225-664-7695,W,M,D,267,12/31/2014,1/1/2009,Mr. Chandler +Constable ,Justice of the Peace Ward 3 ,20150 LA Hwy. 444,,Livingston,LA,70754,225-698-6276,LIVINGSTON,M. Warren Watts,20150 Hwy. 444,,Livingston,LA,70754,5,225-698-3245,W,M,D,267,12/31/2014,1/1/2009,Mr. Watts +Constable ,Justice of the Peace Ward 4 ,31868 LA Hwy. 43,,Albany,LA,70711,225-567-3167,LIVINGSTON,Bruce Bennett,31868 Hwy. 43,,Albany,LA,70711,5,225-567-3167,W,M,D,267,12/31/2014,1/22/2009,Mr. Bennett +Constable ,Justice of the Peace Ward 5 ,23272 LA Hwy. 22,,Maurepas,LA,70449,225-695-3127,LIVINGSTON,"Carroll ""Wayne"" Bates",23272 Hwy. 22,,Maurepas,LA,70449,5,225-695-3127,W,M,D,267,12/31/2014,1/1/2009,Mr. Bates +Constable ,Justice of the Peace Ward 6 ,24601 Blood River Rd.,,Springfield,LA,70462,225-294-5571,LIVINGSTON,Glenn Hoover,24601 Blood River Rd.,,Springfield,LA,70462,5,225-294-5571,W,M,D,267,12/31/2014,1/1/2009,Mr. Hoover +Constable ,Justice of the Peace Ward 7 ,24832 Joe May Rd.,,Denham Springs,LA,70726,225-665-5550,LIVINGSTON,Ronnie Causey,10964 La. Hwy. 1033,,Denham Springs,LA,70726,5,225-664-9151,W,M,R,267,12/31/2014,1/1/2009,Mr. Causey +Constable ,Justice of the Peace Ward 8 ,P.O. Box 241,,Livingston,LA,70754,225-686-0229,LIVINGSTON,"James ""Jimmy"" Alford",31734 LA Hwy. 1036,,Holden,LA,70744,5,225-567-3580,W,M,D,267,12/31/2014,1/1/2009,Mr. Alford +Constable ,Justice of the Peace Ward 9 ,P.O. Box 241,,Livingston,LA,70754,225-686-0229,LIVINGSTON,Leroy Owens,P. O. Box 222,,Holden,LA,70744,5,225-567-6611,W,M,R,267,12/31/2014,1/1/2009,Mr. Owens +Constable ,Justice of the Peace Ward 10 ,30770 Lower Rome Rd.,,Springfield,LA,70462,225-695-3741,LIVINGSTON,"Barry White, Sr.",P.O. Box 921,,Springfield,LA,70462,5,225-695-3508,W,M,D,267,12/31/2014,1/1/2009,Mr. White +Constable ,Justice of the Peace Ward 11 ,13172 Pendarvis Ln.,,Walker,LA,70785,225-665-2823,LIVINGSTON,Bobby R. Smith,27270 Watson Ln.,,Walker,LA,70785,5,225-665-5028,W,M,R,267,12/31/2014,1/1/2009,Mr. Smith +Mayor ,City of Denham Springs ,P. O. Box 1629,,Denham Springs,LA,,225-665-8121,LIVINGSTON,Jimmy Durbin,417 Centerville St. East,,Denham Springs,LA,70726,5,225-664-6126,W,M,D,300,12/31/2010,1/1/2007,Mr. Durbin +Mayor ,Town of Killian ,P. O. Box 546,,Springfield,LA,,225-695-6785,LIVINGSTON,Gillis Windham,28543 Hwy. 22,,Killian,LA,70462,5,225-695-3072,W,M,R,300,6/30/2013,7/1/2009,Mayor Windham +Mayor ,Town of Livingston ,P. O. Box 430,,Livingston,LA,,225-686-7153,LIVINGSTON,D. Derral Jones,20177 Circle Dr.,,Livingston,LA,70754,5,225-686-7619,W,M,D,300,12/31/2012,1/1/2009,Mayor Jones +Mayor ,Town of Springfield ,P. O. Box 352,,Springfield,LA,,225-294-3150,LIVINGSTON,"Charles E. ""Charlie"" Martin",P.O. Box 421,,Springfield,LA,70462,5,225-294-5491,W,M,D,300,6/30/2013,7/1/2009,Mayor Martin +Mayor ,Town of Walker ,P. O. Box 217,,Walker,LA,,225-664-3123,LIVINGSTON,Bobby Font,13791 Aydell Ln.,,Walker,LA,70785,5,225-667-0972,W,M,D,300,12/31/2012,1/1/2009,Mayor Font +Mayor ,Village of Albany ,P. O. Box 1000,,Albany,LA,,225-567-1101,LIVINGSTON,Thomas A. Stewart,P.O. BOX 1346,,Albany,LA,70711,5,225-567-2185,W,M,D,300,12/31/2010,1/1/2007,Mr. Stewart +Mayor ,Village of French Settlement ,P. O. Box 3,,French Settlement,LA,,225-698-6100,LIVINGSTON,Toni Guitrau,16619 Hwy. 16,,French Settlement,LA,70733,5,225-698-3646,W,F,D,300,12/31/2012,1/1/2009,Ms. Guitrau +Mayor ,Village of Port Vincent ,18235 Hwy. 16,,Port Vincent,LA,,225-698-9891,LIVINGSTON,Laura Sanders Savoy,18125 Savoy Lane,,Port Vincent,LA,70726,5,225-698-3357,W,F,R,300,12/31/2012,1/1/2009,Mayor Savoy +Chief of Police ,Town of Livingston ,P. O. Box 430,,Livingston,LA,,225-686-7153,LIVINGSTON,Randy M. Dufrene,P. O. Box 811,,Livingston,LA,70754,5,225-686-7153,W,M,D,305,12/31/2012,1/1/2009,Chief Dufrene +Chief of Police ,Town of Walker ,P. O. Box 217,,Walker,LA,70785,225-664-3123,LIVINGSTON,Hunter Grimes,32460 Dwayne Dr.,,Walker,LA,70726,5,225-791-6456,W,M,D,305,12/31/2012,1/1/2009,Chief Grimes +Chief of Police ,Village of Albany ,P. O. Box 1000,,Albany,LA,70711,225-567-1101,LIVINGSTON,Russell Deloy Hutchinson,P.O. Box 273,,Albany,LA,70711,5,225-567-3962,W,M,D,305,12/31/2010,1/1/2007,Mr. Hutchinson +Chief of Police ,Village of French Settlement ,P. O. Box 3,,French Settlement,LA,70733,225-698-6100,LIVINGSTON,"Harry G. Brignac, Sr.",15440 La. Hwy. 16,,French Settlement,LA,70733,5,225-698-3484,W,M,D,305,12/31/2012,1/1/2009,Chief Brignac +Alderman ,Town of Killian ,P. O. Box 546,,Springfield,LA,70462,225-695-6785,LIVINGSTON,"Jerry ""JJ"" Barnum, Jr.",28490 Ridge Ln.,,Killian,LA,70462,5,985-320-5493,W,M,D,310,6/30/2013,7/1/2009,Mr. Barnum +Alderman ,Town of Killian ,P. O. Box 546,,Springfield,LA,70462,225-695-6785,LIVINGSTON,Peter W. Bock,31533 Judith Dr.,,Killian,LA,70462,5,225-695-3584,W,M,,310,6/30/2013,7/1/2009,Mr. Bock +Alderman ,Town of Killian ,P. O. Box 546,,Springfield,LA,70462,225-695-6785,LIVINGSTON,"""Vince"" Deliberto, Jr.",20580 Riverside Rd.,,Killian,LA,70462,5,225-695-3530,W,M,,310,6/30/2013,7/1/2009,Mr. Deliberto +Alderman ,Town of Killian ,P. O. Box 546,,Springfield,LA,70462,225-695-6785,LIVINGSTON,Craig McGehee,31384 Lanta Ln.,,Springfield,LA,70462,5,225-695-6108,W,M,R,310,6/30/2013,7/1/2009,Mr. McGehee +Alderman ,Town of Killian ,P. O. Box 546,,Springfield,LA,70462,225-695-6785,LIVINGSTON,Dean A. Sharp,P.O. Box 1149,,Springfield,LA,70462,5,225-287-0362,W,M,R,310,6/30/2013,7/1/2009,Mr. Sharp +Alderman ,Town of Livingston ,P.O. Box 430,,Livingston,LA,70754,225-686-7153,LIVINGSTON,David R. Bencaz,P. O. Box 28,,Livingston,LA,70754,5,225-573-6916,W,M,D,310,12/31/2012,1/1/2009,Mr. Bencaz +Alderman ,Town of Livingston ,P.O. Box 430,,Livingston,LA,70754,225-686-7153,LIVINGSTON,David McCreary,P. O. Box 383,,Livingston,LA,70754,5,225-686-7319,W,M,O,310,12/31/2012,1/1/2009,Mr. McCreary +Alderman ,Town of Livingston ,P.O. Box 430,,Livingston,LA,70754,225-686-7153,LIVINGSTON,"Randall ""Randy"" Morgan",P.O. Box 182,,Livingston,LA,70754,5,225-686-7149,W,M,R,310,12/31/2012,1/1/2009,Mr. Morgan +Alderman ,Town of Livingston ,P.O. Box 430,,Livingston,LA,70754,225-686-7153,LIVINGSTON,Joey H. Sibley,P.O. Box 643,,Livingston,LA,70754,5,225-686-7533,W,M,D,310,12/31/2012,1/1/2009,Mr. Sibley +Alderman ,Town of Livingston ,P.O. Box 430,,Livingston,LA,70754,225-686-7153,LIVINGSTON,Wade Wilson,P.O. Box 154,,Livingston,LA,70754,5,225-686-2385,W,M,D,310,12/31/2012,8/24/2009,Mr. Wilson +Alderman ,Town of Springfield ,P. O. Box 352,,Springfield,LA,70462,225-294-3150,LIVINGSTON,Thomas R. Abels,P.O. Box 436,,Springfield,LA,70422,5,225-294-3959,W,M,D,310,6/30/2013,7/1/2009,Mr. Abels +Alderman ,Town of Springfield ,P. O. Box 352,,Springfield,LA,70462,225-294-3150,LIVINGSTON,Mary Ann Bissel,32690 Cullom Rd.,,Springfield,LA,70462,5,225-294-5444,W,F,D,310,6/30/2013,7/1/2009,Ms. Bissel +Alderman ,Town of Springfield ,P. O. Box 352,,Springfield,LA,70462,225-294-3150,LIVINGSTON,Mildred Ratcliff Cowsar,31466 Hyw. 22,,Springfield,LA,70462,5,225-294-5617,W,F,D,310,6/30/2013,7/1/2009,Ms. Cowsar +Alderman ,Town of Springfield ,P. O. Box 352,,Springfield,LA,70462,225-294-3150,LIVINGSTON,Marsha Threeton Sherburne,25564 McCarroll Rd.,,Springfield,LA,70462,5,225-294-3164,W,F,D,310,6/30/2013,7/1/2009,Ms. Sherburne +Alderman ,Town of Springfield ,P. O. Box 352,,Springfield,LA,70462,225-294-3150,LIVINGSTON,"""Johnny"" Vicknair",33290 Pitcher Rd.,,Springfield,LA,70462,5,225-294-5364,W,M,D,310,6/30/2013,7/1/2009,Mr. Vicknair +Alderman ,Town of Walker ,P. O. Box 217,,Walker,LA,70785,225-664-3123,LIVINGSTON,Elton Burns,30034 Corbin Ave.,,Walker,LA,70785,5,225-665-6605,W,M,D,310,12/31/2012,1/1/2009,Mr. Burks +Alderman ,Town of Walker ,P. O. Box 217,,Walker,LA,70785,225-664-3123,LIVINGSTON,Scarlett Milton Major,13699 Aydell Ln.,,Walker,LA,70785,5,225-665-6695,W,F,R,310,12/31/2012,1/1/2009,Ms. Major +Alderman ,Town of Walker ,P. O. Box 217,,Walker,LA,70785,225-664-3123,LIVINGSTON,James B. Phillips,28081 Foxfire Ave.,,Walker,LA,70785-8424,10,225-664-7046,W,M,R,310,12/31/2012,1/1/2009,Mr. Phillips +Alderman ,Town of Walker ,P. O. Box 217,,Walker,LA,70785,225-664-3123,LIVINGSTON,"""Jack"" Summerell",28351 Red Oak Dr.,,Walker,LA,70785,5,225-665-7738,W,M,R,310,12/31/2012,1/1/2009,Mr. Summerell +Alderman ,Town of Walker ,P. O. Box 217,,Walker,LA,70785,225-664-3123,LIVINGSTON,Richard Wales,13964 Guy St.,,Walker,LA,70785,5,,W,M,R,310,12/31/2012,1/1/2009,Mr. Wales +Alderman ,Village of Albany ,P. O. Box 1000,,Albany,LA,70711,225-567-1101,LIVINGSTON,"Lloyd E. ""Gene"" Glascock",P.O. Box 89,,Albany,LA,70711,5,225-567-9486,W,M,R,310,12/31/2010,1/1/2007,Mr. Glascock +Alderman ,Village of Albany ,P. O. Box 1000,,Albany,LA,70711,225-567-1101,LIVINGSTON,Edmond C. Harris,P.O. Box 105,,Albany,LA,70711,5,225-567-3133,W,M,D,310,12/31/2010,1/1/2007,Mr. Harris +Alderman ,Village of Albany ,P. O. Box 1000,,Albany,LA,70711,225-567-1101,LIVINGSTON,"Lloyd ""Bee"" Martin",P.O. Box 146,,Albany,LA,70711,5,225-567-2093,W,M,D,310,12/31/2010,1/1/2007,Mr. Martin +Alderman ,Village of French Settlement ,P. O. Box 3,,French Settlement,LA,70733,225-698-6100,LIVINGSTON,Sean M. Guitrau,16619 Hwy. 16,,French Settlement,LA,70733,5,225-698-3646,W,M,R,310,12/31/2012,1/1/2009,Mr. Guitrau +Alderman ,Village of French Settlement ,P. O. Box 3,,French Settlement,LA,70733,225-698-6100,LIVINGSTON,Teresa Miller,14360 Mecca Rd.,,French Settlement,LA,70733,5,225-698-1909,W,F,R,310,12/31/2012,1/1/2009,Ms. Miller +Alderman ,Village of French Settlement ,P. O. Box 3,,French Settlement,LA,70733,225-698-6100,LIVINGSTON,Glen Newell,14580 Rue Des Chenes Rd.,,French Settlement,LA,70733,5,225-698-6774,W,M,,310,12/31/2012,1/1/2009,Mr. Newell +Alderman ,Village of Port Vincent ,18235 Hwy. 16,,Port Vincent,LA,70726,225-698-9897,LIVINGSTON,David Carter,19334 Gourdon Ln.,,Port Vincent,LA,70726,5,225-698-6218,W,M,D,310,12/31/2012,1/1/2009,Mr. Carter +Alderman ,Village of Port Vincent ,18235 Hwy. 16,,Port Vincent,LA,70726,225-698-9897,LIVINGSTON,"Jeffrey ""Scotty"" Martone",19338 Gourdon Ln.,,Port Vincent,LA,70726,5,225-698-3982,W,M,R,310,12/31/2012,1/1/2009,Mr. Martone +Alderman ,Village of Port Vincent ,18235 Hwy. 16,,Port Vincent,LA,70726,225-698-9897,LIVINGSTON,"Johnnie ""J.J."" Page",19450 LA Hwy. 16,,Port Vincent,LA,70726,5,225-335-8555,W,M,R,310,12/31/2012,1/1/2009,Mr. Page +Council Member ,City of Denham Springs ,P. O. Box 1629,,Denham Springs,LA,70727-1629,225-665-8121,LIVINGSTON,Rene' Delahoussaye,211 Centerville St. NE,,Denham Springs,LA,70726,5,225-664-9617,W,M,D,310,12/31/2010,1/1/2007, +Council Member ,City of Denham Springs ,P. O. Box 1629,,Denham Springs,LA,70727-1629,225-665-8121,LIVINGSTON,"Ann M. ""Annie"" Fugler",P.O. Box 1912,,Denham Springs,LA,70727,5,225-328-5424,W,F,R,310,12/31/2010,4/14/2009,Ms. Fugler +Council Member ,City of Denham Springs ,P. O. Box 1629,,Denham Springs,LA,70727-1629,225-665-8121,LIVINGSTON,Lori Lamm-Williams,717 Poplar St.,,Denham Springs,LA,70726,5,225-665-4462,W,F,R,310,12/31/2010,1/1/2007, +Council Member ,City of Denham Springs ,P. O. Box 1629,,Denham Springs,LA,70727-1629,225-665-8121,LIVINGSTON,"Arthur L. Perkins, Sr.",906 Hatchell Ln.,,Denham Springs,LA,70726,5,225-664-6730,B,M,D,310,12/31/2010,1/1/2007, +Council Member ,City of Denham Springs ,P. O. Box 1629,,Denham Springs,LA,70727-1629,225-665-8121,LIVINGSTON,John Wascom,522 Centerville St. East,,Denham Springs,LA,70726,5,225-665-7037,W,M,O,310,12/31/2010,1/1/2007, +DPEC Member ,at Large ,,,,LA,,,MADISON,LaDonna A. Abrahm,108 Lancaster Dr.,,Tallulah,LA,71282,5,318-574-4076,W,F,D,54,2/20/2012,2/20/2008,Ms. Abrahm +DPEC Member ,at Large ,,,,LA,,,MADISON,"""Sha"" Carter",511 LaSalle St.,,Tallulah,LA,71282,5,318-574-8393,W,F,D,54,2/20/2012,2/20/2008,Ms. Carter +DPEC Member ,at Large ,,,,LA,,,MADISON,Olga Daily,P.O. Box 494,,Tallulah,LA,71282-0494 ,11,318-574-9078,B,F,D,54,2/20/2012,2/20/2008,Ms. Daily +DPEC Member ,at Large ,,,,LA,,,MADISON,Priscilla Mahoney,860 West Bear Lake Road,,Tallulah,LA,71282,5,318-574-6969,W,F,D,54,2/20/2012,2/20/2008,Ms. Mahoney +DPEC Member ,at Large ,,,,LA,,,MADISON,Myrtle W. Wyche,212 Wyche St.,,Tallulah,LA,71282,5,318-574-0259,B,F,D,54,2/20/2012,2/20/2008,Ms. Wyche +DPEC Member ,District 1 ,,,,LA,,,MADISON,,,,,,,0,,,,,56,,, +DPEC Member ,District 2 ,,,,LA,,,MADISON,,,,,,,0,,,,,56,,, +DPEC Member ,District 3 ,,,,LA,,,MADISON,,,,,,,0,,,,,56,,, +DPEC Member ,District 4 ,,,,LA,,,MADISON,,,,,,,0,,,,,56,,, +DPEC Member ,District 5 ,,,,LA,,,MADISON,,,,,,,0,,,,,56,,, +RPEC Member ,at Large ,,,,LA,,,MADISON,Fred B. Wyly,210 Neely Plantation Rd.,,Tallulah,LA,71282,5,318-574-3269,W,M,R,64,2/20/2012,2/20/2008,Mr. Wyly +RPEC Member ,District 1 ,,,,LA,,,MADISON,,,,,,,0,,,,,66,,, +RPEC Member ,District 2 ,,,,LA,,,MADISON,,,,,,,0,,,,,66,,, +RPEC Member ,District 3 ,,,,LA,,,MADISON,,,,,,,0,,,,,66,,, +RPEC Member ,District 4 ,,,,LA,,,MADISON,,,,,,,0,,,,,66,,, +RPEC Member ,District 5 ,,,,LA,,,MADISON,,,,,,,0,,,,,66,,, +Sheriff ,,100 N. Cedar St.,,Tallulah,LA,71282,318-574-1831,MADISON,Larry G. Cox,100 N. Cedar,,Tallulah,LA,71282,5,318-341-1001,W,M,D,225,6/30/2012,7/1/2008,Sheriff Cox +Clerk of Court ,,P. O. Box 1710,,Tallulah,LA,71282,318-574-0655,MADISON,Marion Hopkins,P.O. Box 1710,,Tallulah,LA,71282,5,318-574-0637,W,F,D,230,6/30/2012,7/1/2008,Ms. Hopkins +Assessor ,,P.O. Box 423,,Tallulah,LA,71284,318-574-0117,MADISON,Jim D. Sevier,P.O. Box 423,,Tallulah,LA,71284-0423 ,11,318-574-1656,W,M,D,235,12/31/2012,1/1/2009,Mr. Sevier +Coroner ,,212 S. Chestnut Street,,Tallulah,LA,71282,318-574-3575,MADISON,Thomas A. Neumann,108 Neumann Dr.,,Tallulah,LA,71282,5,318-574-4332,W,M,,240,3/25/2012,3/24/2008,Mr. Neumann +Police Juror ,District 1 ,"100 N. Cedar St., Courthouse Bldg.",,Tallulah,LA,,318-574-3451,MADISON,Robert Dalton Fortenberry,1496 Hwy. 603,,Tallulah,LA,71282,5,318-574-3099,W,M,R,245,1/8/2012,1/14/2008,Mr. Fortenberry +Police Juror ,District 2 ,"100 N. Cedar St., Courthouse Bldg.",,Tallulah,LA,71282,318-574-3451,MADISON,Stanley Ogden,2365 Hwy. 577 S.,,Delhi,LA,71232,5,318-878-8541,W,M,,245,1/8/2012,1/14/2008,Mr. Ogden +Police Juror ,District 3 ,"100 N. Cedar St., Courthouse Bldg.",,Tallulah,LA,71282,318-574-3451,MADISON,Henry Tyler,415 Seventh St.,,Tallulah,LA,71282,5,318-574-3762,B,M,D,245,1/8/2012,1/14/2008,Mr. Tyler +Police Juror ,District 4 ,"100 N. Cedar St., Courthouse Bldg.",,Tallulah,LA,71282,318-574-3451,MADISON,James J. Griffin,200 Helen St.,,Tallulah,LA,71282,5,318-574-9588,B,M,,245,1/8/2012,1/14/2008,Mr. Griffin +Police Juror ,District 5 ,"100 N. Cedar St., Courthouse Bldg.",,Tallulah,LA,71282,318-574-3451,MADISON,Jane Gladys Sanders,1027 Kimbrough St.,,Tallulah,LA,71282,5,318-574-2519,B,F,D,245,1/8/2012,1/14/2008,Ms. Sanders +Member of School Board ,District 1 ,301 S. Chestnut St.,,Tallulah,LA,71282,318-574-3616,MADISON,"""Ed"" Yerger",2927 Hwy. 602,,Tallulah,LA,71282,5,318-574-4969,W,M,R,255,12/31/2010,10/30/2007,Mr. Yerger +Member of School Board ,District 2 ,301 S. Chestnut St.,,Tallulah,LA,71282,318-574-3616,MADISON,Randy J. Morgan,317 Fred Morgan Sr. Rd.,,Tallulah,LA,71282,5,318-574-4964,W,M,R,255,12/31/2010,9/14/2007,Mr. Morgan +Member of School Board ,District 3 ,301 S. Chestnut St.,,Tallulah,LA,71282,318-574-3616,MADISON,Joseph C. Candler,101 Travis St.,,Tallulah,LA,71282,5,318-574-1587,B,M,D,255,12/31/2010,1/1/2007,Mr. Candler +Member of School Board ,District 4 ,301 S. Chestnut St.,,Tallulah,LA,71282,318-574-3616,MADISON,Joe Walk,1005 N. Arey St.,,Tallulah,LA,71282,5,318-574-3496,B,M,D,255,12/31/2010,1/1/2007,Mr. Walk +Member of School Board ,District 5 ,301 S. Chestnut St.,,Tallulah,LA,71282,318-574-3616,MADISON,Hayward Fair,P.O. Box 904,,Tallulah,LA,71284-0904 ,11,318-574-2742,B,M,D,255,12/31/2010,1/1/2007,Mr. Fair +Member of School Board ,District 6 ,301 S. Chestnut St.,,Tallulah,LA,71282,318-574-3616,MADISON,Kizzy Bynum,207A Adams St.,,Tallulah,LA,71282,5,318-574-3227,B,F,D,255,12/31/2010,1/1/2007,Ms. Bynum +Member of School Board ,District 7 ,301 S. Chestnut St.,,Tallulah,LA,71282,318-574-3616,MADISON,Vera L. Davis,115 Johns St.,,Tallulah,LA,71282,5,318-574-0175,B,F,D,255,12/31/2010,1/1/2007,Ms. Davis +Member of School Board ,District 8 ,301 S. Chestnut St.,,Tallulah,LA,71282,318-574-3616,MADISON,Eva F. Taylor,1012 Maple St.,,Tallulah,LA,71282,5,318-341-3802,W,F,,255,12/31/2010,1/1/2007,Ms. Taylor +Justice of the Peace ,Justice of the Peace District 2 ,1005 Maple St.,,Tallulah,LA,71282,318-574-2499,MADISON,Beth Thomas,656 Charles Brown Rd.,,Tallulah,LA,71282,5,318-574-3464,W,F,R,265,12/31/2014,1/1/2009,Ms. Thomas +Justice of the Peace ,Justice of the Peace Districts 1 & 3 ,1178 Willow By.Rd,,Tallulah,LA,71282,318-574-8729,MADISON,Billy Thornton,1180 Willow Bayou Rd.,,Tallulah,LA,71282,5,318-574-4048,W,M,D,265,12/31/2014,1/1/2009,Mr. Thornton +Justice of the Peace ,"Justice of the Peace Districts 4, 5 & 6 ",305 Bozeman St.,,Tallulah,LA,71282,318-574-1242,MADISON,Patricia Buchanan,P.O. Box 1883,,Tallulah,LA,71284,5,318-574-1242,B,F,D,265,12/31/2014,1/1/2009,Ms. Buchanan +Justice of the Peace ,Justice of the Peace Districts 7 & 8 ,402 E.Green St.,,Tallulah,LA,71282,318-574-6911,MADISON,Cynthia Arender Machen,500 LaSalle St.,,Tallulah,LA,71282,5,318-574-6064,W,F,D,265,12/31/2014,1/1/2009,Ms. Machen +Constable ,Justice of the Peace District 2 ,3572 La. Hwy. 603,,Tallulah,LA,71282,318-574-4128,MADISON,Tilford M. Watts,3572 Hwy. 603,,Tallulah,LA,71282,5,318-574-4128,W,M,D,267,12/31/2014,1/1/2009,Mr. Watts +Constable ,Justice of the Peace Districts 1 & 3 ,224 La. Hwy. 602,,Tallulah,LA,71282,318-574-2248,MADISON,Charles Roberson,224 Hwy. 602,,Tallulah,LA,71282,5,318-574-2248,W,M,R,267,12/31/2014,1/1/2009,Mr. Roberson +Constable ,"Justice of the Peace Districts 4, 5 & 6 ",309 W. Askew St.,,Tallulah,LA,71282,318-574-1595,MADISON,"Charlie Trimble, Jr.",926 Holt St.,,Tallulah,LA,71282,5,318-574-4689,B,M,D,267,12/31/2014,1/1/2009,Mr. Trimble +Constable ,Justice of the Peace Districts 7 & 8 ,100 Magnolia St.,,Tallulah,LA,71282,318-574-4427,MADISON,Gene M. Cox,100 Magnolia St.,,Tallulah,LA,71282,5,381-574-4427,W,M,R,267,12/31/2014,1/1/2009,Mr. Cox +Mayor ,City of Tallulah ,204 N. Cedar,,Tallulah,LA,,318-574-0964,MADISON,"Eddie Beckwith, Jr.",P.O. Box 1594,,Tallulah,LA,71284-1594,10,318-574-0152,B,M,D,300,6/30/2010,7/1/2006,Mayor Beckwith +Mayor ,Village of Delta ,P. O. Box 29,,Delta,LA,,318-633-9566,MADISON,Robert Ott,P.O. Box 60,,Delta,LA,71233,5,318-633-9542,W,M,,300,12/31/2012,1/1/2009,Mayor Ott +Mayor ,Village of Mound ,"Rt. 2, Box 116-C",,Mound,LA,,318-574-0927,MADISON,Margaret Yerger,2927 Hwy. 602,,Tallulah,LA,71282,5,318-574-4969,W,F,R,300,12/31/2010,1/1/2007,Ms. Yerger +Mayor ,Village of Richmond ,598 Wood St.,,Richmond,LA,,318-574-2913,MADISON,"Robert Kivett, Sr.",111 Leslie St.,,Richmond,LA,71282,5,318-574-1669,W,M,R,300,12/31/2010,1/1/2007,Mayor Kivett +Chief of Police ,City of Tallulah ,204 N. Cedar,,Tallulah,LA,71282,318-574-0964,MADISON,Donnell Rose,P.O. Box 895,,Tallulah,LA,71284,5,318-574-6155,B,M,,305,6/30/2010,7/1/2006,Mr. Rose +Chief of Police ,Village of Mound ,"Rt. 2, Box 116-C",,Mound,LA,71282,318-574-0927,MADISON,Andrew Y. Federick,2930 Hwy. 602,,Tallulah,LA,71282,5,318-574-2221,W,M,R,305,12/31/2010,1/1/2007,Mr. Federick +Chief of Police ,Village of Richmond ,412 Claudine St.,,Richmond,LA,71282,318-574-2913,MADISON,Jimmy Lopez,107 Ruthie St.,,Richmond,LA,71282,5,318-574-1417,W,M,,305,12/31/2010,1/1/2007,Chief Lopez +Alderman ,Village of Delta ,P. O. Box 29,,Delta,LA,71233,318-633-9566,MADISON,Marvin Ashley,P.O. Box 214,,Delta,LA,71233,5,318-633-9757,W,M,,310,12/31/2012,1/1/2009,Mr. Ashley +Alderman ,Village of Delta ,P. O. Box 29,,Delta,LA,71233,318-633-9566,MADISON,Katherine Davis,P.O. Box 148,,Delta,LA,71233,5,318-633-9510,W,F,,310,12/31/2012,1/1/2009,Ms. Davis +Alderman ,Village of Delta ,P. O. Box 29,,Delta,LA,71233,318-633-9566,MADISON,Donald L. Frith,P.O. Box 21,,Delta,LA,71233,5,318-633-9699,W,M,,310,12/31/2012,1/1/2009,Mr. Frith +Alderman ,Village of Mound ,"Rt. 2, Box 116-C",,Mound,LA,71282,318-574-0927,MADISON,Margaret F. Crews,2945 Hwy. 602,,Tallulah,LA,71282,5,318-574-0927,W,F,R,310,12/31/2010,1/1/2007,Ms. Crews +Alderman ,Village of Mound ,"Rt. 2, Box 116-C",,Mound,LA,71282,318-574-0927,MADISON,"Walter S. Crews, Jr.",2945 Hwy. 602,,Tallulah,LA,71282,5,318-574-0927,W,M,R,310,12/31/2010,1/1/2007,Mr. Crews +Alderman ,Village of Mound ,"Rt. 2, Box 116-C",,Mound,LA,71282,318-574-0927,MADISON,Darlene C. Federick,2930 Hwy. 602,,Tallulah,LA,71282,5,601-415-6243,W,F,D,310,12/31/2010,7/21/2008,Ms. Federick +Alderman ,Village of Richmond ,412 Claudine St.,,Richmond,LA,71282,318-574-2913,MADISON,Olga Foster-Butler,100 Leslie Lane,,Tallulah,LA,71282-5516,10,318-574-4155,W,F,R,310,12/31/2010,1/1/2007,Ms. Foster-Butler +Alderman ,Village of Richmond ,412 Claudine St.,,Richmond,LA,71282,318-574-2913,MADISON,Donnie Remore,104 Ruthie St.,,Tallulah,LA,71282,5,318-574-3987,W,M,R,310,12/31/2010,1/1/2007,Mr. Remore +Alderman ,Village of Richmond ,412 Claudine St.,,Richmond,LA,71282,318-574-2913,MADISON,Tommy E. Wixson,111 Burnside Dr.,,Richmond,LA,71282,5,318-574-1900,W,M,D,310,12/31/2010,2/23/2009,Mr. Wixson +Council Member ,"District 1, City of Tallulah ",204 N. Cedar,,Tallulah,LA,71282,318-574-0964,MADISON,Charles Michael Finlayson,304 LaSalle St.,,Tallulah,LA,71282,5,318-574-2027,W,M,D,310,6/30/2010,7/1/2006,Mr. Finlayson +Council Member ,"District 2, City of Tallulah ",204 N. Cedar,,Tallulah,LA,71282,318-574-0964,MADISON,Henry J. Williams,1301 South Walnut St.,,Tallulah,LA,71282,5,318-574-4476,B,M,,310,6/30/2010,7/1/2006,Mr. Williams +Council Member ,"District 3, City of Tallulah ",204 N. Cedar,,Tallulah,LA,71282,318-574-0964,MADISON,Eddie Ray Fountain,215 Chester Dr.,,Tallulah,LA,71282,5,318-574-6519,B,M,D,310,6/30/2010,7/1/2006,Mr. Fountain +Council Member ,"District 4, City of Tallulah ",204 N. Cedar,,Tallulah,LA,71282,318-574-0964,MADISON,Kelvin Brooks,304 Fourth St.,,Tallulah,LA,71282,5,318-574-3428,B,M,D,310,6/30/2010,7/1/2006,Mr. Brooks +Council Member ,"District 5, City of Tallulah ",204 N. Cedar,,Tallulah,LA,71282,318-574-0964,MADISON,Michael Whitney,904 Van Zelfden St.,,Tallulah,LA,71282,5,318-574-0680,B,M,D,310,6/30/2010,7/1/2006,Mr. Whitney +DPEC Member ,at Large ,,,,LA,,,MOREHOUSE,,,,,,,0,,,,,54,,, +DPEC Member ,District 1 ,,,,LA,,,MOREHOUSE,,,,,,,0,,,,,56,,, +DPEC Member ,District 2 ,,,,LA,,,MOREHOUSE,Barbara L. Mansfield,P.O. Box 72,,Bastrop,LA,71221,5,318-281-2356,B,F,D,56,2/20/2012,2/20/2008,Ms. Mansfield +DPEC Member ,District 3 ,,,,LA,,,MOREHOUSE,,,,,,,0,,,,,56,,, +DPEC Member ,District 4 ,,,,LA,,,MOREHOUSE,,,,,,,0,,,,,56,,, +DPEC Member ,District 5 ,,,,LA,,,MOREHOUSE,,,,,,,0,,,,,56,,, +DPEC Member ,District 6 ,,,,LA,,,MOREHOUSE,,,,,,,0,,,,,56,,, +DPEC Member ,District 7 ,,,,LA,,,MOREHOUSE,,,,,,,0,,,,,56,,, +RPEC Member ,at Large ,,,,LA,,,MOREHOUSE,"""Boots"" Farrar",6205 Winchester Dr.,,Bastrop,LA,71220,5,318-281-4454,W,M,R,64,2/20/2012,2/20/2008,Mr. Farrar +RPEC Member ,District 1 ,,,,LA,,,MOREHOUSE,,,,,,,0,,,,,66,,, +RPEC Member ,District 2 ,,,,LA,,,MOREHOUSE,,,,,,,0,,,,,66,,, +RPEC Member ,District 3 ,,,,LA,,,MOREHOUSE,,,,,,,0,,,,,66,,, +RPEC Member ,District 4 ,,,,LA,,,MOREHOUSE,,,,,,,0,,,,,66,,, +RPEC Member ,District 5 ,,,,LA,,,MOREHOUSE,,,,,,,0,,,,,66,,, +RPEC Member ,District 6 ,,,,LA,,,MOREHOUSE,,,,,,,0,,,,,66,,, +RPEC Member ,District 7 ,,,,LA,,,MOREHOUSE,,,,,,,0,,,,,66,,, +Sheriff ,,351 S. Franklin,,Bastrop,LA,71220,318-281-4141,MOREHOUSE,"""Mike"" Tubbs",351 S. Franklin,,Bastrop,LA,71220,5,318-281-2417,W,M,D,225,6/30/2012,7/1/2008,Sheriff Tubbs +Clerk of Court ,,P. O. Box 1543,,Bastrop,LA,71221-1543,318-281-3343,MOREHOUSE,Carol Jones,P.O.Box 1543,,Bastrop,LA,71221-1543,10,318-281-0289,W,F,D,230,6/30/2012,7/1/2008,Ms. Jones +Assessor ,,P.O. Box 1177,,Bastrop,LA,71221-1177,318-281-1802,MOREHOUSE,John Hill,P.O. Box 1059,,Bastrop,LA,71221,5,318-281-8455,W,M,D,235,12/31/2012,1/1/2009,Mr. Hill +Coroner ,,1110 Leavell Street,,Bastrop,LA,71220,318-281-4141,MOREHOUSE,"""Ed"" Chorette",1509 Frenchmans Bend Rd.,,Monroe,LA,71203,5,318-330-9062,W,M,R,240,3/25/2012,3/24/2008,Mr. Chorette +Police Juror ,District 1 ,P. O. Box 509,,Bastrop,LA,,318-281-4132,MOREHOUSE,Floyd Tomboli,7244 Gracie Ln.,,Bastrop,LA,71220,5,318-283-5741,W,M,D,245,1/8/2012,1/14/2008,Mr. Tomboli +Police Juror ,District 2 ,P. O. Box 509,,Bastrop,LA,71221-0509 ,318-281-4132,MOREHOUSE,"Harry Reese, Sr",P.O. Box 280,,Mer rouge,LA,71261,5,318-647-5330,B,M,D,245,1/8/2012,1/14/2008,Mr. Reese +Police Juror ,District 3 ,P. O. Box 509,,Bastrop,LA,71221-0509 ,318-281-4132,MOREHOUSE,Mark Sistrunk,5733 Candice Ln.,,Bastrop,LA,71220,5,318-281-9450,W,M,R,245,1/8/2012,1/14/2008,Mr. Sistrunk +Police Juror ,District 4 ,P. O. Box 509,,Bastrop,LA,71221-0509 ,318-281-4132,MOREHOUSE,"""Jack"" Cockrell",5105 Oakley Ln.,,Bastrop,LA,71220,5,318-281-6549,W,M,R,245,1/8/2012,1/14/2008,Mr. Cockrell +Police Juror ,District 5 ,P. O. Box 509,,Bastrop,LA,71221-0509 ,318-281-4132,MOREHOUSE,Jason Crockett,6036 Jen Lee Ln.,,Bastrop,LA,71220,5,318-281-8262,W,M,R,245,1/8/2012,1/14/2008,Mr. Crockett +Police Juror ,District 6 ,P. O. Box 509,,Bastrop,LA,71221-0509 ,318-281-4132,MOREHOUSE,Terry Matthews,1003 Commerce,,Bastrop,LA,71220,5,318-281-7887,B,M,D,245,1/8/2012,1/14/2008,Mr. Matthews +Police Juror ,District 7 ,P. O. Box 509,,Bastrop,LA,71221-0509 ,318-281-4132,MOREHOUSE,Issac Gray,439 W. Madison,,Bastrop,LA,71220,5,318-282-8428,B,M,D,245,1/8/2012,1/14/2008,Mr. Gray +City Judge ,"City Court, City of Bastrop ",P. O. Drawer 391,,Bastrop,LA,71220,318-283-0257,MOREHOUSE,Phillip M. Lester,1302 Leavell Ave.,,Bastrop,LA,71220,5,318-283-3242,W,M,D,250,12/31/2014,1/1/2009,Judge Lester +City Marshal ,"City Court, City of Bastrop ",P. O. Drawer 391,,Bastrop,LA,71220,318-283-3310,MOREHOUSE,Lisa Chafford,503 South Cox,,Bastrop,LA,71220,5,318-281-9248,B,F,D,250,12/31/2014,1/1/2009,Marshal Chafford +Member of School Board ,District 1 ,4099 Naff Ave.,,Bastrop,LA,71220,318-281-5784,MOREHOUSE,"""Lisa"" Chain",15602 Crossett Rd.,,Bastrop,LA,71220,5,318-281-6700,W,F,R,255,12/31/2010,1/1/2007,Ms. Chain +Member of School Board ,District 2 ,P. O. Box 872,,Bastrop,LA,71220,318-281-5784,MOREHOUSE,Sylvia Reese,P.O. Box 280,,MeRouge,LA,71261,5,318-647-5330,B,F,D,255,12/31/2010,1/1/2007,Ms. Reese +Member of School Board ,District 3 ,P. O. Box 872,,Bastrop,LA,71220,318-281-5784,MOREHOUSE,Phillip W. McCready,10050 Arkansas St.,,Bastrop,LA,71220,5,318-283-0703,W,M,,255,12/31/2010,1/1/2007,Mr. McCready +Member of School Board ,District 4 ,P. O. Box 872,,Bastrop,LA,71220,318-281-5784,MOREHOUSE,"""Jeff"" Churchwell",11105 Crossett Rd.,,Bastrop,LA,71220,5,318-281-9711,W,M,R,255,12/31/2010,1/1/2007,Mr. Churchwell +Member of School Board ,District 5 ,P. O. Box 872,,Bastrop,LA,71220,318-281-5784,MOREHOUSE,Rodney Dew,401 Frederick,,Bastrop,LA,71220,5,318-283-0451,W,M,R,255,12/31/2010,2/23/2009,Mr. Dew +Member of School Board ,District 6 ,P. O. Box 872,,Bastrop,LA,71220,318-281-5784,MOREHOUSE,Hamp Lenoir,208 Terrace Dr.,,Bastrop,LA,71220,5,318-281-4384,B,M,D,255,12/31/2010,1/1/2007,Mr. Lenoir +Member of School Board ,District 7 ,P. O. Box 872,,Bastrop,LA,71220,318-281-5784,MOREHOUSE,"""Loe"" Dunn",322 Jackson St.,,Bastrop,LA,71220,5,318-281-6797,B,F,D,255,12/31/2010,1/1/2007,Ms. Dunn +Justice of the Peace ,Justice of the Peace Ward 1 ,3407 Bayou Acres Dr.,,Bastrop,LA,71220,318-283-2299,MOREHOUSE,Robert P. Deblieux,3407 Bayou Acres Dr.,,Bastrop,LA,71220,5,318-283-2299,W,M,,265,12/31/2014,1/1/2009,Mr. Deblieux +Justice of the Peace ,Justice of the Peace Ward 2 ,16284 Hughes Chapel Rd.,,Bastrop,LA,71220,318-281-0337,MOREHOUSE,Glennis Lewis,17613 Viola Carroll Rd.,,Bastrop,LA,71220,5,318-281-3563,W,F,,265,12/31/2014,1/1/2009,Ms. Lewis +Justice of the Peace ,Justice of the Peace Ward 5 ,P.O. Box 174,,Oak Ridge,LA,71264,318-244-6160,MOREHOUSE,Joel Fitch,P.O. Box 155,,Oak Ridge,LA,71264,5,318-680-2583,W,M,,265,12/31/2014,1/1/2009,Mr. Fitch +Justice of the Peace ,Justice of the Peace Ward 6 ,P.O. Box 415,,Mer Rouge,LA,71264,318-647-5325,MOREHOUSE,Mary C. Hayden,P.O. Box 192,,Mer Rouge,LA,71261,5,318-647-5298,,,D,265,12/31/2014,1/1/2009,Ms. Hayden +Justice of the Peace ,Justice of the Peace Ward 7 ,14558 Old Bonita Rd.,,Bastrop,LA,71220,318-281-5789,MOREHOUSE,Ben L. White,12005 Yeldell Road,,Bastrop,LA,71220,5,318-283-0071,W,M,R,265,12/31/2014,1/1/2009,Mr. White +Justice of the Peace ,Justice of the Peace Ward 8 ,10650 Pleasant Dr.,,Bastrop,LA,71220,318-283-3075,MOREHOUSE,John Sawyer,10650 Pleasant Dr.,,Bastrop,LA,71220,5,318-283-3075,W,M,D,265,12/31/2014,1/1/2009,Mr. Sawyer +Justice of the Peace ,Justice of the Peace Ward 9 ,16162 Old Berlin Rd.,,Bastrop,LA,71220,318-281-4916,MOREHOUSE,"""ZZ"" Wilson",15800 Brewer Creek,,Bastrop,LA,71220,5,318-283-7087,W,F,,265,12/31/2014,1/1/2009,Ms. Wilson +Justice of the Peace ,Justice of the Peace Ward 10 ,16813 McGinty Rd.,,Bastrop,LA,71250,318-823-2668,MOREHOUSE,Kitty R. Johnson,14848 Holly Ridge Road,,Jones,LA,71250,5,318-823-2414,W,F,D,265,12/31/2014,1/1/2009,Ms. Johnson +Constable ,Justice of the Peace Ward 1 ,3419 Bayou Acres Dr.,,Bastrop,LA,71220,318-281-0148,MOREHOUSE,"Vernon ""Butch"" Bostick",3373 Bayou Acres,,Bastrop,LA,71220,5,318-281-8545,W,M,D,267,12/31/2014,1/1/2009,Mr. Bostick +Constable ,Justice of the Peace Ward 2 ,16350 Hughes Chapel Rd.,,Bastrop,LA,71220,318-281-2973,MOREHOUSE,"Erwin ""Hookey"" Evans",16350 Hughes Chapel,,Bastrop,LA,71220,5,318-281-2973,W,M,D,267,12/31/2014,1/1/2009,Mr. Evans +Constable ,Justice of the Peace Ward 5 ,P.O. Box 232,,Oak Ridge,LA,71264,318-244-5650,MOREHOUSE,"Ben E. ""Sonny"" Baker",P.O. Box 232,,Oak Ridge,LA,71264,5,318-244-5650,W,M,D,267,12/31/2014,1/1/2009,Mr. Baker +Constable ,Justice of the Peace Ward 6 ,P.O. Box 205,,Mer Rouge,LA,71261,318-647-3783,MOREHOUSE,David G. Thomas,7781 Bayou Dr.,,Mer Rouge,LA,71261,5,318-647-3913,W,M,D,267,12/31/2014,1/1/2009,Mr. Thomas +Constable ,Justice of the Peace Ward 7 ,14665 Old Bonita Rd.,,Bastrop,LA,71220,318-281-2695,MOREHOUSE,Ruthie Moore,15786 Old Bonita Rd.,,Bastrop,LA,71220,5,318-283-0329,B,F,D,267,12/31/2014,1/1/2009,Ms. Moore +Constable ,Justice of the Peace Ward 8 ,,,,LA,,,MOREHOUSE,Brandon Gilbreath,P.O. Box 276,,Collinston,LA,71229,5,318-874-2631,W,M,,267,12/31/2014,1/1/2009,Mr. Gilbreath +Constable ,Justice of the Peace Ward 9 ,16162 Old Berlin Rd.,,Bastrop,LA,71220,318-281-4916,MOREHOUSE,Donna J. Atkins,16162 Old Berlin Rd.,,Bastrop,LA,71220,5,318-281-4916,W,F,,267,12/31/2014,1/1/2009,Ms. Atkins +Constable ,Justice of the Peace Ward 10 ,15265 Lakeshore Rd.,,Bonita,LA,71233,318-823-2704,MOREHOUSE,Derl R. Johnson,14848 Holly Ridge Rd.,,Jones,LA,71250,5,318-823-2414,W,M,D,267,12/31/2014,1/1/2009,Mr. Johnson +Mayor ,City of Bastrop ,P. O. Box 431,,Bastrop,LA,,318-283-0250,MOREHOUSE,Betty Alford-Olive,1402 Bowman St.,,Bastrop,LA,71220,5,318-283-2992,B,F,D,300,6/30/2013,7/1/2009,Mayor Alford-Olive +Mayor ,Village of Bonita ,P. O. Box 278,,Bonita,LA,,318-823-2128,MOREHOUSE,Floyd Baker,P.O. Box 12,,Bonita,LA,71223,5,318-823-4209,B,M,,300,12/31/2010,9/14/2007,Mayor Baker +Mayor ,Village of Collinston ,P. O. Box 148,,Collinston,LA,,318-874-2631,MOREHOUSE,Wayne Gilbreath,P.O. Box 147,,Collinston,LA,71229,5,318-874-7570,W,M,O,300,12/31/2010,1/1/2007,Mr. Gilbreath +Mayor ,Village of Mer Rouge ,P. O. Box 238,,Mer Rouge,LA,,318-647-3622,MOREHOUSE,"John D. ""Johnny"" McAdams, III",P.O. Box 146,,Mer Rouge,LA,71261,5,318-647-5301,W,M,D,300,12/31/2010,1/1/2007,Mr. McAdams +Mayor ,Village of Oak Ridge ,P. O. Box 58,,Oak Ridge,LA,,318-244-5033,MOREHOUSE,"""Andy"" Barham",P.O. Box 99,,Oak Ridge,LA,71264,5,318-244-6551,W,M,D,300,12/31/2012,1/1/2009,Mr. Barham +Alderman ,"District A, City of Bastrop ",P. O. Box 431,,Bastrop,LA,71221-0431 ,318-283-0250,MOREHOUSE,Marvin Moore,1006 Orchid Ave.,,Bastrop,LA,71220,5,318-283-7100,B,M,D,310,6/30/2013,7/1/2009,Mr. Moore +Alderman ,"District B, City of Bastrop ",P. O. Box 431,,Bastrop,LA,71221-0431 ,318-283-0250,MOREHOUSE,Obbie Johnson,419 Sunflower St.,,Bastrop,LA,71220,5,318-281-8224,B,M,D,310,6/30/2013,7/1/2009,Mr. Johnson +Alderman ,"District C, City of Bastrop ",P. O. Box 431,,Bastrop,LA,71221-0431 ,318-283-0250,MOREHOUSE,"William ""Sonny"" Nason",2108 Gemini Cir.,,Bastrop,LA,71220,5,318-281-7968,W,M,R,310,6/30/2013,7/1/2009,Mr. Nason +Alderman ,"District D, City of Bastrop ",P. O. Box 431,,Bastrop,LA,71221-0431 ,318-283-0250,MOREHOUSE,Roy Armstrong,1216 Martin Luther King South,,Bastrop,LA,71220,5,318-281-1470,B,M,D,310,6/30/2013,7/1/2009,Mr. Armstrong +Alderman ,"District E, City of Bastrop ",P. O. Box 431,,Bastrop,LA,71221-0431 ,318-283-0250,MOREHOUSE,Howard Loche,302 Sentelle St.,,Bastrop,LA,71220,5,318-281-5037,B,M,D,310,6/30/2013,7/1/2009,Mr. Loche +Alderman ,Village of Bonita ,P. O. Box 278,,Bonita,LA,71223,318-823-2128,MOREHOUSE,"Ezekiel ""Pete"" Anderson",P.O. Box 73,,Bonita,LA,71223,5,318-823-4349,B,M,D,310,12/31/2010,2/23/2009,Mr. Anderson +Alderman ,Village of Bonita ,P. O. Box 278,,Bonita,LA,71223,318-823-2128,MOREHOUSE,Richard D. Polk,15265 Lakeshore Dr.,,Bonita,LA,71223,5,,,,,310,,6/5/2009,Apptd by Gov +Alderman ,Village of Bonita ,P. O. Box 278,,Bonita,LA,71223,318-823-2128,MOREHOUSE,Ada Sherrer,15211 Bonita Ave.,,Bonita,LA,71223,5,318-823-2339,B,F,D,310,12/31/2010,10/30/2007,Ms. Sherrer +Alderman ,Village of Collinston ,P. O. Box 148,,Collinston,LA,71229,318-874-2631,MOREHOUSE,Terry Foster,P.O. Box 81,,Collinston,LA,71229,5,318-874-8447,W,F,D,310,12/31/2010,7/21/2008,Ms. Foster +Alderman ,Village of Collinston ,P. O. Box 148,,Collinston,LA,71229,318-874-2631,MOREHOUSE,Betty H. Jones,4847 Page Ln.,,Collinston,LA,71229,5,318-874-3304,W,F,D,310,12/31/2010,1/1/2007,Ms. Jones +Alderman ,Village of Collinston ,P. O. Box 148,,Collinston,LA,71229,318-874-2631,MOREHOUSE,"Frank Henry Miller, Sr.",P. O. Box 132,,Collinston,LA,71229,5,318-874-3328,B,M,D,310,12/31/2010,1/1/2007,Mr. Miller +Alderman ,Village of Mer Rouge ,P. O. Box 238,,Mer Rouge,LA,71261,318-647-3622,MOREHOUSE,Richard Blackwell,P.O. Box 125,,Mer Rouge,LA,71261,5,318-647-5157,W,M,D,310,12/31/2010,2/23/2009,Mr. Blackwell +Alderman ,Village of Mer Rouge ,P. O. Box 238,,Mer Rouge,LA,71261,318-647-3622,MOREHOUSE,"""Tim"" Mitchell",P.O. Box 219,,Mer Rouge,LA,71261,5,318-647-9923,W,M,R,310,12/31/2010,1/1/2007,Mr.Mitchell +Alderman ,Village of Mer Rouge ,P. O. Box 238,,Mer Rouge,LA,71261,318-647-3622,MOREHOUSE,"Marvin ""Marley"" Oldham",P.O. Box 61,,Mer Rouge,LA,71261,5,318-647-5613,W,M,R,310,12/31/2010,1/1/2007,Mr. Oldham +Alderman ,Village of Oak Ridge ,P. O. Box 58,,Oak Ridge,LA,71264,318-244-5033,MOREHOUSE,Eugene H. Allen,P.O. Box 132,,Oak Ridge,LA,71264,5,318-244-7123,W,M,R,310,12/31/2012,1/1/2009,Mr. Allen +Alderman ,Village of Oak Ridge ,P. O. Box 58,,Oak Ridge,LA,71264,318-244-5033,MOREHOUSE,"Neil Woodard Mott, III",P.O. Box 278,,Oak Ridge,LA,71264,5,318-244-5003,W,M,,310,12/31/2012,1/1/2009,Mr. Mott +Alderman ,Village of Oak Ridge ,P. O. Box 58,,Oak Ridge,LA,71264,318-244-5033,MOREHOUSE,"Clint E. Shepard, II",P.O. Box 88,,Oak Ridge,LA,71264,5,318-244-6036,W,M,D,310,12/31/2012,1/1/2009,Mr. Shepard +DPEC Member ,at Large ,,,,LA,,,NATCHITOCHES,,,,,,,0,,,,,54,,, +DPEC Member ,District 1 ,,,,LA,,,NATCHITOCHES,,,,,,,0,,,,,56,,, +DPEC Member ,District 2 ,,,,LA,,,NATCHITOCHES,,,,,,,0,,,,,56,,, +DPEC Member ,District 3 ,,,,LA,,,NATCHITOCHES,,,,,,,0,,,,,56,,, +DPEC Member ,District 4 ,,,,LA,,,NATCHITOCHES,,,,,,,0,,,,,56,,, +DPEC Member ,District 5 ,,,,LA,,,NATCHITOCHES,,,,,,,0,,,,,56,,, +DPEC Member ,District 6 ,,,,LA,,,NATCHITOCHES,,,,,,,0,,,,,56,,, +DPEC Member ,District 7 ,,,,LA,,,NATCHITOCHES,,,,,,,0,,,,,56,,, +DPEC Member ,District 8 ,,,,LA,,,NATCHITOCHES,,,,,,,0,,,,,56,,, +DPEC Member ,District 9 ,,,,LA,,,NATCHITOCHES,,,,,,,0,,,,,56,,, +DPEC Member ,District 10 ,,,,LA,,,NATCHITOCHES,,,,,,,0,,,,,56,,, +DPEC Member ,District 11 ,,,,LA,,,NATCHITOCHES,Larry Paige,4923 Hwy. 494,,Natchez,LA,71456,5,318-352-6433,W,M,D,56,2/20/2012,2/20/2008,Mr. Paige +RPEC Member ,at Large ,,,,LA,,,NATCHITOCHES,Edward B. Anders,940 Nettie St.,,Natchitoches,LA,71457,5,318-352-6507,W,M,R,64,2/20/2012,2/20/2008,Mr. Anders +RPEC Member ,at Large ,,,,LA,,,NATCHITOCHES,Mary Ann Nunley,1032 Williams Ave.,,Natchitoches,LA,71457,5,,,,,64,,3/5/2008,Ms. Nunley +RPEC Member ,at Large ,,,,LA,,,NATCHITOCHES,Anna Kathyrn Shuler,408 Hancock Ave.,,Natchitoches,LA,71457,5,,,,,64,,3/5/2008,Ms. Shuler +RPEC Member ,District 1 ,,,,LA,,,NATCHITOCHES,"Joe Cunningham, Sr.",1830 Williams Ave.,,Natchitoches,LA,71457,5,,,,,66,2/20/2012,3/5/2008,Mr. Cunningham +RPEC Member ,District 2 ,,,,LA,,,NATCHITOCHES,Mark Begnaud,P.O. Box 1369,,Natchitoches,LA,71458,5,,,,,66,2/20/2012,3/5/2008,Mr. Begnaud +RPEC Member ,District 3 ,,,,LA,,,NATCHITOCHES,Will Adams,1556 Berry Ave.,,Natchitoches,LA,71457,5,,,,,66,2/20/2012,3/5/2008,Mr. Adams +RPEC Member ,District 4 ,,,,LA,,,NATCHITOCHES,A. P. Fleming,378 Mr. Ed Lane,,Natchitoches,LA,71457,5,,,,,66,2/20/2012,3/5/2008,Mr. Fleming +RPEC Member ,District 5 ,,,,LA,,,NATCHITOCHES,Paul L. Johnson,269 Chris St.,,Natchitoches,LA,71457,5,,,,,66,2/20/2012,3/5/2008,Mr. Johnson +RPEC Member ,District 6 ,,,,LA,,,NATCHITOCHES,Donald F. Barker,308 Watson Dr.,,Natchitoches,LA,71457,5,,,,,66,2/20/2012,3/5/2008,Mr. Barker +RPEC Member ,District 7 ,,,,LA,,,NATCHITOCHES,,,,,,,0,,,,,66,,, +RPEC Member ,District 8 ,,,,LA,,,NATCHITOCHES,,,,,,,0,,,,,66,,, +RPEC Member ,District 9 ,,,,LA,,,NATCHITOCHES,Greg Larette,1129 Hwy. 487,,Marthaville,LA,71450-3215,10,,,,,66,2/20/2012,3/5/2008,Mr. Larette +RPEC Member ,District 10 ,,,,LA,,,NATCHITOCHES,,,,,,,0,,,,,66,,, +RPEC Member ,District 11 ,,,,LA,,,NATCHITOCHES,John Bernard,186 Lateral Ln.,,Natchitoches,LA,71457,5,,,,,66,,3/5/2008,Mr. Bernard +Sheriff ,,P. O. Box 266,,Natchitoches,LA,71458,318-357-7802,NATCHITOCHES,Victor E. Jones,P.O. Box 266,,Natchitoches,LA,71458,5,318-379-2768,B,M,D,225,6/30/2012,7/1/2008,Sheriff Jones +Clerk of Court ,,P. O. Box 476,,Natchitoches,LA,71458-0476 ,318-352-8152,NATCHITOCHES,"""Louie"" Bernard",P. O. Box 476,,Natchitoches,LA,71458-0476 ,11,318-352-8800,W,M,D,230,6/30/2012,7/1/2008,Mr. Bernard +Assessor ,,P.O. Box 201,,Natchitoches,LA,71457,318-352-2377,NATCHITOCHES,D. Rick Hargis,P. O. Box 201,,Natchitoches,LA,71458-0201 ,11,318-352-9725,W,M,D,235,12/31/2012,1/1/2009,Mr. Hargis +Coroner ,,P.O. Box 799,,Natchitoches,LA,71458,318-357-2260,NATCHITOCHES,"Charles A. Curtis, Jr.",P. O. Box 799,,Natchitoches,LA,71458-0799 ,11,318-332-8313,W,M,D,240,3/25/2012,3/24/2008,Mr. Curtis +Police Juror,District 1,P. O. Box 799,,Natchitoches,LA,71458-0799,318-352-2714,NATCHITOCHES,"Gerald ""Jerry"" Longlois",165 Anne St.,,Natchitoches,LA,71457,5,318-356-8570,W,M,D,245,1/8/2012,1/14/2008,Mr. Longlois +Police Juror ,District 2 ,P. O. Box 799,,Natchitoches,LA,71457,318-352-2714,NATCHITOCHES,"""Chris"" Paige",345 Pavie St.,,Natchitoches,LA,71457,5,318-357-1339,B,M,D,245,1/8/2012,1/14/2008,Mr. Paige +Police Juror ,District 3 ,P. O. Box 799,,Natchitoches,LA,71457,318-352-2714,NATCHITOCHES,J. D. Garrett,1109 Collins St.,,Natchitoches,LA,71457,5,318-357-1839,B,M,D,245,1/8/2012,1/14/2008,Mr. Garrett +Police Juror ,District 4 ,P. O. Box 799,,Natchitoches,LA,71457,318-352-2714,NATCHITOCHES,David Dollar,725 Sisson Rd.,,Natchitoches,LA,71457-6745,10,318-357-8852,W,M,D,245,1/8/2012,1/14/2008,Mr. Dollar +Police Juror ,District 5 ,P. O. Box 799,,Natchitoches,LA,71457,318-352-2714,NATCHITOCHES,William Hymes,217 Piermont Pl.,,Natchitoches,LA,71457,5,318-357-9527,B,M,D,245,1/8/2012,1/14/2008,Mr. Hymes +Police Juror ,District 6 ,P. O. Box 799,,Natchitoches,LA,71457,318-352-2714,NATCHITOCHES,Charles E. Huggins,P.O. Box 1045,,Natchitoches,LA,71458-1045,10,318-352-5774,W,M,R,245,1/8/2012,1/14/2008,Mr. Huggins +Police Juror ,District 7 ,P. O. Box 799,,Natchitoches,LA,71457,318-352-2714,NATCHITOCHES,"""Johnny"" Martin",364 Goodwill St.,,Goldonna,LA,71031-3528,10,318-727-9509,W,M,D,245,1/8/2012,1/14/2008,Mr. Martin +Police Juror ,District 8 ,P. O. Box 799,,Natchitoches,LA,71457,318-352-2714,NATCHITOCHES,"""Tom"" Collier",364 Collier Hill Rd.,,Campti,LA,71411,5,318-476-2239,W,M,D,245,1/8/2012,1/14/2008,Mr. Collier +Police Juror ,District 9 ,P. O. Box 799,,Natchitoches,LA,71457,318-352-2714,NATCHITOCHES,Jessie Hoffpauir,P. O. Box 327,,Robeline,LA,71469-0327 ,11,318-472-8231,W,M,D,245,1/8/2012,1/14/2008,Mr. Hoffpauir +Police Juror ,District 10 ,P. O. Box 799,,Natchitoches,LA,71457,318-352-2714,NATCHITOCHES,"""Mimi"" Stoker",5810 Hwy. 6,,Natchitoches,LA,71457,5,318-352-7005,W,F,R,245,1/8/2012,1/14/2008,Ms. Stoker +Police Juror ,District 11 ,P. O. Box 799,,Natchitoches,LA,71457,318-352-2714,NATCHITOCHES,Fred Jacobs,338 Riverview Dr.,,Natchez,LA,71456,5,318-354-0202,B,M,D,245,1/8/2012,1/14/2008,Mr. Jacobs +City Judge ,"City Court, City of Natchitoches ",P. O. Box 70,,Natchitoches,LA,71458-0070 ,318-352-2069,NATCHITOCHES,Fred S. Gahagan,1029 Parkway Dr.,,Natchitoches,LA,71457,5,318-352-2787,W,M,D,250,12/31/2014,1/1/2009,Judge Gahagan +City Marshal ,"City Court, City of Natchitoches ",P. O. Box 70,,Natchitoches,LA,71458-0070 ,318-357-1129,NATCHITOCHES,Alton Rachal,P. O. Box 272,,Natchitoches,LA,71457,5,318-352-9444,W,M,D,250,12/31/2014,1/1/2009,Marshal Rachal +Member of School Board ,District 1 ,310 Royal St.,,Natchitoches,LA,71457,318-352-2358,NATCHITOCHES,Julia C. Hildebrand,920 Nettie St.,,Natchitoches,LA,71457,5,318-352-5155,W,F,D,255,12/31/2010,1/1/2007,Ms. Hildebrand +Member of School Board ,District 2 ,310 Royal St.,,Natchitoches,LA,71457,318-352-2358,NATCHITOCHES,Harry Douglas Graham,842 Pavie St.,,Natchitoches,LA,71457-4015,10,318-352-6602,B,M,D,255,12/31/2010,1/1/2007,Mr. Graham +Member of School Board ,District 3 ,310 Royal St.,,Natchitoches,LA,71457,318-352-2358,NATCHITOCHES,Ralph Wilson,P.O. Box 423,,Natchitoches,LA,71457,5,318-352-7205,B,M,D,255,12/31/2010,1/1/2007,Mr. Wilson +Member of School Board ,District 4 ,310 Royal St.,,Natchitoches,LA,71457,318-352-2358,NATCHITOCHES,"Billy Benefield, Jr.",140 Northwood Ln.,,Natchitoches,LA,71457,5,318-357-0561,W,M,D,255,12/31/2010,1/1/2007,Mr. Benefield +Member of School Board ,District 5 ,310 Royal St.,,Natchitoches,LA,71457,318-352-2358,NATCHITOCHES,Jo Ella Wilson,621 Genti St.,,Natchitoches,LA,71457,5,318-352-8411,B,F,D,255,12/31/2010,1/1/2007,Ms. Wilson +Member of School Board ,District 6 ,310 Royal St.,,Natchitoches,LA,71457,318-352-2358,NATCHITOCHES,Millard Bienvenu,710 Watson Dr.,,Natchitoches,LA,71457,5,318-352-5313,W,M,O,255,12/31/2010,1/1/2007,Mr. Bienvenu +Member of School Board ,District 7 ,310 Royal St.,,Natchitoches,LA,71457,318-352-2358,NATCHITOCHES,Cecil Walker,P.O. Box 56,,Clarence,LA,71414-0056 ,12,318-357-0532,W,M,D,255,12/31/2010,1/1/2007,Mr. Walker +Member of School Board ,District 8 ,310 Royal St.,,Natchitoches,LA,71457,318-352-2358,NATCHITOCHES,"""Pam"" McAlexander",974 Grappes Bluff Rd.,,Coushatta,LA,71019-4209,10,318-476-2716,W,F,R,255,12/31/2010,1/1/2007,Ms. McAlexander +Member of School Board ,District 9 ,310 Royal St.,,Natchitoches,LA,71457,318-352-2358,NATCHITOCHES,Carroll Daniels,161 Cassidy Springs Rd.,,Robeline,LA,71469-4217,10,318-472-6778,W,M,D,255,12/31/2010,1/1/2007,Mr. Daniels +Member of School Board ,District 10 ,310 Royal St.,,Natchitoches,LA,71457,318-352-2358,NATCHITOCHES,Craig Rachal,2819 Hwy. 120,,Robeline,LA,71469,5,318-357-0113,W,M,R,255,12/31/2010,1/1/2007,Mr. Rachal +Member of School Board ,District 11 ,310 Royal St.,,Natchitoches,LA,71457,318-352-2358,NATCHITOCHES,Emile E. Metoyer,2353 Hwy. 119,,Bermuda,LA,71456,5,318-379-2407,O,M,D,255,12/31/2010,1/1/2007,Mr. Metoyer +Justice of the Peace ,Justice of the Peace Ward 2 ,P.O. Box 673,,Campti,LA,71411-0673 ,318-476-3311,NATCHITOCHES,Patrice T. Harper,1135 Hart Rd.,,Campti,LA,71411,5,318-875-2112,W,F,D,265,12/31/2014,1/1/2009,Ms. Harper +Justice of the Peace ,Justice of the Peace Ward 3 ,"10363 La.Hwy,120",,Robeline,LA,71469,318-472-8739,NATCHITOCHES,Shelia Pleasant Cagle,10363 Hwy. 120,,Robeline,LA,71469,5,318-472-8739,W,F,D,265,12/31/2014,1/1/2009,Ms. Cagle +Justice of the Peace ,Justice of the Peace Ward 4 ,2735 La. Hwy. 119,,Melrose,LA,71452-3414,318-379-2273,NATCHITOCHES,Rhonda Sanders,P.O. Box 5,,Cloutierville,LA,71416-0005 ,13,318-332-7116,W,F,D,265,12/31/2014,1/1/2009,Ms. Sanders +Constable ,Justice of the Peace Ward 2 ,121 Ray Grillette Rd.,,Campti,LA,71411-4361,318-875-2261,NATCHITOCHES,Monty Trichel,121 Ray Grillette Rd.,,Campti,LA,71411,5,318-875-2261,W,M,D,267,12/31/2014,1/1/2009,Mr. Trichel +Constable ,Justice of the Peace Ward 3 ,296 Edgar Olive Rd.,,Marthaville,LA,71450-3118,318-472-6860,NATCHITOCHES,Kenneth Dowden,296 Olive Rd.,,Marthaville,LA,71450,5,318-472-6860,W,M,D,267,12/31/2014,1/1/2009,Mr. Dowden +Constable ,Justice of the Peace Ward 4 ,P.O. Box 366,,Cloutierville,LA,71416,318-379-2731,NATCHITOCHES,"""Bobby"" Carter",366 Hwy. 495,,Cloutierville,LA,71416,5,318-379-2731,W,M,D,267,12/31/2014,1/1/2009,Mr. Carter +Mayor ,City of Natchitoches ,P. O. Box 37,,Natchitoches,LA,,318-352-2772,NATCHITOCHES,H. Wayne McCullen,604 Monroe Dr.,,Natchitoches,LA,71457,5,318-357-1897,W,M,D,300,5/31/2012,6/1/2008,Mr. McCullen +Mayor ,Town of Campti ,197 Edenborne St.,,Campti,LA,,318-476-3321,NATCHITOCHES,Judy LeBrum Daniels,P.O. Box 1,,Campti,LA,71411,5,318-476-2934,B,F,D,300,12/31/2010,1/1/2007,Ms. Daniels +Mayor ,Village of Ashland ,P. O. Box 327,,Ashland,LA,,318-544-0044,NATCHITOCHES,W. Gahagan Lee,P.O. Box 305,,Ashland,LA,71002-0305 ,11,318-544-2546,W,M,R,300,12/31/2010,1/1/2007,Mr. Lee +Mayor ,Village of Clarence ,P. O. Box 309,,Clarence,LA,,318-357-0440,NATCHITOCHES,Bobby Braxton,P.O. Box 214,,Clarence,LA,71414-0214 ,11,318-354-9607,B,M,D,300,6/30/2012,7/1/2008,Mayor Braxton +Mayor ,Village of Goldonna ,P. O. Box 216,,Goldonna,LA,,318-727-8548,NATCHITOCHES,Verna Martin Bedgood,P.O. Box 263,,Goldonna,LA,71031,5,318-727-8770,W,F,D,300,12/31/2010,1/1/2007,Ms. Bedgood +Mayor ,Village of Natchez ,P. O. Box 229,,Natchez,LA,,318-352-1414,NATCHITOCHES,Rosia Humphery,P.O. Box 135,,Natchez,LA,71456-0135 ,11,318-356-0217,B,F,D,300,6/30/2010,7/1/2006,Mayor Humphrey +Mayor ,Village of Powhatan ,P. O. Box 126,,Powhatan,LA,,318-352-8549,NATCHITOCHES,Margie Davenport,P.O. Box 91,,Powhatan,LA,71066-0091 ,12,318-352-9184,B,F,D,300,6/30/2012,7/1/2008,Mayor Davenport +Mayor ,Village of Provencal ,P. O. Box 400,,Provencal,LA,,318-472-8767,NATCHITOCHES,"""Randy"" Dupree",P.O. Box 321,,Provencal,LA,71468,5,318-472-9324,W,M,D,300,12/31/2010,1/1/2007,Mr. Dupree +Mayor ,Village of Robeline ,P. O. Box 217,,Robeline,LA,,318-472-6121,NATCHITOCHES,Tommy O'Con,P.O. Box 187,,Robeline,LA,71469,5,318-472-9246,W,M,D,300,12/31/2010,1/1/2007,Mayor O'Con +Chief of Police ,Town of Campti ,197 Edenborne St.,,Campti,LA,71411,318-476-3321,NATCHITOCHES,Gregory Antonio Eldridge,P.O. Box 966,,Campti,LA,71411,5,318-476-2611,B,M,D,305,12/31/2010,1/1/2007,Mr. Eldridge: +Chief of Police ,Village of Ashland ,P. O. Box 327,,Ashland,LA,71002,318-544-0044,NATCHITOCHES,"""Fred"" Holland",2058 Hwy. 155,,Ashland,LA,71002,5,318-544-9161,W,M,D,305,12/31/2010,1/1/2007,Mr. Holland +Chief of Police ,Village of Clarence ,P. O. Box 309,,Clarence,LA,71414,318-357-0440,NATCHITOCHES,Darrell Fredieu,P.O. Box 32,,Clarence,LA,71414-0032 ,12,318-352-7029,W,M,D,305,6/30/2012,7/1/2008,Chief Fredieu +Chief of Police ,Village of Goldonna ,P. O. Box 216,,Goldonna,LA,71031,318-727-8548,NATCHITOCHES,Rodney Bedgood,P. O. Box 263,,Goldonna,LA,71031-0241 ,11,318-727-8770,W,M,D,305,12/31/2010,4/14/2009,Mr. Bedgood +Chief of Police ,Village of Natchez ,P. O. Box 229,,Natchez,LA,71456-0229 ,318-352-1414,NATCHITOCHES,McKindley Hoover,P.O. Box 266,,Natchez,LA,71456,5,318-214-0429,B,M,D,305,6/30/2010,7/1/2006,Chief Hoover +Chief of Police ,Village of Powhatan ,P. O. Box 126,,Powhatan,LA,71066,318-352-8594,NATCHITOCHES,"Raymond J. Hymes, Jr.",P.O. Box 102,,Powhatan,LA,71066-0102 ,11,318-354-2943,B,M,D,305,6/30/2012,7/1/2008,Chief Hymes +Chief of Police ,Village of Provencal ,P. O. Box 400,,Provencal,LA,71468,318-472-8767,NATCHITOCHES,Harry M. Voigt,P.O. Box 425,,Provencal,LA,71468,5,318-472-8214,W,M,D,305,12/31/2010,1/1/2007,Mr. Voigt +Chief of Police ,Village of Robeline ,P. O. Box 217,,Robeline,LA,71469,318-472-6121,NATCHITOCHES,Gordon O'Con,P.O. Box 403,,Robeline,LA,71469,5,318-472-4400,W,M,D,305,12/31/2010,1/1/2007,Chief O'Con +Councilman at Large ,City of Natchitoches ,P. O. Box 37,,Natchitoches,LA,71457-0037 ,318-352-2772,NATCHITOCHES,"Don Mims, Jr.",516 Lindsey Circle,,Natchitoches,LA,71457,5,318-352-5639,W,M,D,308,5/31/2012,6/1/2008,Mr. Mims +Alderman ,Village of Clarence ,P. O. Box 309,,Clarence,LA,71414,318-357-0440,NATCHITOCHES,Jamie Ragan Alexander,P.O. Box 108,,Clarence,LA,71414-0108 ,11,318-352-2448,W,F,D,310,6/30/2012,7/1/2008,Ms. Alexander +Alderman ,Village of Clarence ,P. O. Box 309,,Clarence,LA,71414,318-357-0440,NATCHITOCHES,"Frank Mitchell, Jr.",132 Greenville Dr.,,Clarence,LA,71414,5,318-352-7321,B,M,D,310,6/30/2012,7/1/2008,Mr. Mitchell +Alderman ,Village of Clarence ,P. O. Box 309,,Clarence,LA,71414,318-357-0440,NATCHITOCHES,Natonya Pikes,P.O. Box 24,,Clarence,LA,71414-0024 ,12,318-357-0221,B,F,D,310,6/30/2012,7/1/2008,Ms. Pikes +Alderman ,Village of Goldonna ,P. O. Box 216,,Goldonna,LA,71031,318-727-8548,NATCHITOCHES,"""Ben"" Dupree",2686 Hwy. 479,,Goldonna,LA,71031-3608,10,318-727-8554,W,M,R,310,12/31/2010,1/1/2007,Mr. Dupree +Alderman ,Village of Goldonna ,P. O. Box 216,,Goldonna,LA,71031,318-727-8548,NATCHITOCHES,Daniel Dupree,2670 Hwy. 479,,Goldonna,LA,71031,5,318-727-9933,W,M,R,310,12/31/2010,1/1/2007,Mr. Dupree +Alderman ,Village of Goldonna ,P. O. Box 216,,Goldonna,LA,71031,318-727-8548,NATCHITOCHES,Reed Franklin,P.O. Box 267,,Goldonna,LA,71031-0267 ,11,318-727-8310,W,M,R,310,12/31/2010,8/24/2009,Mr. Franklin +Alderman ,Village of Natchez ,P. O. Box 229,,Natchez,LA,71456-0229 ,318-352-1414,NATCHITOCHES,"Henry D. Braxton, ",260 Morning Star Loop,,Natchez,LA,71456,5,318-357-1612,B,M,N,310,,, +Alderman ,Village of Natchez ,P. O. Box 229,,Natchez,LA,71456-0229 ,318-352-1414,NATCHITOCHES,"Shelia F. Braxton, ",131 Sam Clark Rd.,,Natchez,LA,71456,5,318-354-1644,B,F,D,310,,, +Alderman ,Village of Natchez ,P. O. Box 229,,Natchez,LA,71456-0229 ,318-352-1414,NATCHITOCHES,Henrietta Byrd,P.O. Box 131,,Natchez,LA,71456-0342 ,11,318-357-8091,B,F,D,310,6/30/2010,2/23/2009,Ms. Byrd +Alderman ,Village of Natchez ,P. O. Box 229,,Natchez,LA,71456-0229 ,318-352-1414,NATCHITOCHES,"Henrietta Byrd, ",216 Johnson Loop,,Natchez,LA,71456-3422,10,318-357-8091,B,F,N,310,,, +Alderman ,Village of Natchez ,P. O. Box 229,,Natchez,LA,71456-0229 ,318-352-1414,NATCHITOCHES,Gerald Wayne Johnson,P.O. Box 185,,Natchez,LA,71456-0185 ,11,318-354-8630,B,M,D,310,6/30/2010,7/1/2006,Mr. Johnson +Alderman ,Village of Natchez ,P. O. Box 229,,Natchez,LA,71456-0229 ,318-352-1414,NATCHITOCHES,Edna Jones,P.O. Box 243,,Natchez,LA,71456,5,318-354-8259,B,F,,310,6/30/2010,7/1/2006,Ms. Jones +Alderman ,Village of Powhatan ,P. O. Box 126,,Powhatan,LA,71066,318-352-8549,NATCHITOCHES,O. V. Hall,P.O. Box 43,,Powhatan,LA,71066-0043 ,12,318-352-4216,B,F,D,310,6/30/2012,7/1/2008,Ms. Hall +Alderman ,Village of Powhatan ,P. O. Box 126,,Powhatan,LA,71066,318-352-8549,NATCHITOCHES,"Robert Lilly, Jr.",P.O. Box 173,,Powhatan,LA,71066-0173 ,11,318-356-5540,B,M,D,310,6/30/2012,7/1/2008,Mr. Lilly +Alderman ,Village of Powhatan ,P. O. Box 126,,Powhatan,LA,71066,318-352-8549,NATCHITOCHES,Hardrick Rivers,P.O. Box 101,,Powhatan,LA,71066-0101 ,11,318-352-3926,B,M,D,310,6/30/2012,7/1/2008,Mr. Rivers +Alderman ,Village of Provencal ,P. O. Box 400,,Provencal,LA,71468,318-472-8767,NATCHITOCHES,Francine W. Cook,P.O. Box 279,,Provencal,LA,71468,5,318-472-8166,W,F,R,310,12/31/2010,1/1/2007,Mr. Cook +Alderman ,Village of Provencal ,P. O. Box 400,,Provencal,LA,71468,318-472-8767,NATCHITOCHES,Ray Gandy,P.O. Box 668,,Provencal,LA,71468,5,318-472-8886,W,M,D,310,12/31/2010,1/1/2007,Mr. Gandy +Alderman ,Village of Provencal ,P. O. Box 400,,Provencal,LA,71468,318-472-8767,NATCHITOCHES,W. E. O'Bannon,P.O. Box 547,,Provencal,LA,71468,5,318-472-8060,W,M,D,310,12/31/2010,1/1/2007,Mr. O'Bannon +Alderman ,Village of Robeline ,P. O. Box 217,,Robeline,LA,71469,318-472-6121,NATCHITOCHES,Randall Bockstanz,P.O. Box 464,,Robeline,LA,71469,5,318-472-3200,W,M,D,310,12/31/2010,1/1/2007,Mr. Bockstanz +Alderman ,Village of Robeline ,P. O. Box 217,,Robeline,LA,71469,318-472-6121,NATCHITOCHES,Ronnie French,P.O. Box 371,,Robeline,LA,71469,5,318-472-9513,W,M,D,310,12/31/2010,1/1/2007,Mr. French +Alderman ,Village of Robeline ,P. O. Box 217,,Robeline,LA,71469,318-472-6121,NATCHITOCHES,Ann Moran,P.O. Box 228,,Robeline,LA,71469,5,318-472-5576,W,F,D,310,12/31/2010,1/1/2007,Ms. Moran +Council Member ,Village of Ashland ,P. O. Box 327,,Ashland,LA,71002,318544004,NATCHITOCHES,Wayne Best,P.O. Box 477,,Ashland,LA,71002,5,318-544-8787,W,M,D,310,12/31/2010,1/1/2007,Mr. Best +Council Member ,Village of Ashland ,P. O. Box 327,,Ashland,LA,71002,318544004,NATCHITOCHES,Vincent Bown,P.O. Box,,Ashland,LA,71002,5,318-544-2593,W,M,R,310,12/31/2010,1/1/2007,Mr. Brown +Council Member ,Village of Ashland ,P. O. Box 327,,Ashland,LA,71002,318544004,NATCHITOCHES,Carol Doyle,1982 Hwy. 155,,Ashland,LA,71002-5038,10,318-544-8856,W,F,D,310,12/31/2010,1/1/2007,Ms. Doyle +Councilman ,"District 1, City of Natchitoches ",P. O. Box 37,,Natchitoches,LA,71457-0037 ,318-352-2772,NATCHITOCHES,"Jack McCain, Jr.",1020 East Fifth St.,,Natchitoches,LA,71457,5,318-352-8331,W,M,R,310,5/31/2012,6/1/2008,Mr. McCain +Councilman ,"District 2, City of Natchitoches ",P. O. Box 37,,Natchitoches,LA,71457-0037 ,318-352-2772,NATCHITOCHES,Dale Nielsen,125 Lodi St.,,Natchitoches,LA,71457,5,318-352-1603,W,M,R,310,5/31/2012,6/1/2008,Mr. Nielsen +Councilman ,"District 3, City of Natchitoches ",P. O. Box 37,,Natchitoches,LA,71457-0037 ,318-352-2772,NATCHITOCHES,Sylvia Morrow,1112 Lake St.,,Natchitoches,LA,71457,5,318-352-6129,B,F,D,310,5/31/2012,6/1/2008,Ms. Morrow +Councilman ,"District 4, City of Natchitoches ",P. O. Box 37,,Natchitoches,LA,71457-0037 ,318-352-2772,NATCHITOCHES,Larry Payne,1406 W. Lakeshore Dr.,,Natchitoches,LA,71457,5,318-357-1292,B,M,D,310,5/31/2012,6/1/2008,Mr. Payne +Councilman ,Town of Campti ,197 Edenborne St.,,Campti,LA,71411,318-476-3231,NATCHITOCHES,Mary Donaway Collins,P.O. Box 181,,Campti,LA,71411,5,318-476-3432,B,F,D,310,12/31/2010,1/1/2007,Ms. Collins +Councilman ,Town of Campti ,197 Edenborne St.,,Campti,LA,71411,318-476-3231,NATCHITOCHES,"Fredrick J. Fisher, Sr.",P.O. Box 813,,Campti,LA,71411,5,318-476-2067,B,M,D,310,12/31/2010,9/14/2007,Mr. Fisher +Councilman ,Town of Campti ,197 Edenborne St.,,Campti,LA,71411,318-476-3231,NATCHITOCHES,Claudine Hill,334 Lebrum St.,,Campti,LA,71411-4709,10,318-476-2968,B,F,D,310,12/31/2010,1/1/2007,Ms. Hill +Councilman ,Town of Campti ,197 Edenborne St.,,Campti,LA,71411,318-476-3231,NATCHITOCHES,Anthony Reliford,P.O. Box 1021,,Campti,LA,71411,5,318-476-3124,B,M,,310,12/31/2010,1/1/2007,Mr. Reliford +Councilman ,Town of Campti ,197 Edenborne St.,,Campti,LA,71411,318-476-3231,NATCHITOCHES,Joyce A. Roberson,P.O. Box 122,,Campti,LA,71411,5,318-476-3476,B,F,D,310,12/31/2010,1/1/2007,Ms. Roberson +DPEC Member ,District A ,,,,LA,,,ORLEANS,Desiree Cook-Calvin,9012 Olive St.,,New Orleans,LA,70118,5,504-250-1662,B,F,D,56,2/20/2012,2/20/2008,Ms. Cook-Calvin +DPEC Member ,District A ,,,,LA,,,ORLEANS,Philip Costa,818 City Park Ave.,,New Orleans,LA,70119,5,504-220-0593,W,M,D,56,2/20/2012,2/20/2008,Mr. Costa +DPEC Member ,District A ,,,,LA,,,ORLEANS,Lisa Gagliano Dawson,4154 Cleveland Ave.,,New Orleans,LA,70119,5,504-610-4271,W,F,D,56,2/20/2012,2/20/2008,Ms. Dawson +DPEC Member ,District A ,,,,LA,,,ORLEANS,Marshall A. Hevron,926 Joliet St.,,Mew Orleans,LA,70118,5,,,,,56,,9/28/2008,Mr. Hevron +DPEC Member ,District A ,,,,LA,,,ORLEANS,Walker Hines,100 Audubon Blvd.,,New Orleans,LA,70118,5,504-231-4991,W,M,D,56,2/20/2012,2/20/2008,Mr. Hines +DPEC Member ,District A ,,,,LA,,,ORLEANS,Alan J. Langhoff,4234 Canal St.,,New Orleans,LA,70119,5,504-258-9160,W,M,D,56,2/20/2012,2/20/2008,Mr. Langhoff +DPEC Member ,District A ,,,,LA,,,ORLEANS,Deborah Langhoff,4234 Canal St.,,New Orleans,LA,70119,5,504-259-4525,W,F,D,56,2/20/2012,2/20/2008,Ms. Langhoff +DPEC Member ,District A ,,,,LA,,,ORLEANS,Megan Langhoff,4234 Canal St.,,New Orleans,LA,70119,5,504-259-4510,W,F,D,56,2/20/2012,2/20/2008,Ms. Langhoff +DPEC Member ,District A ,,,,LA,,,ORLEANS,Kimberly Marshall,21 Maryland Dr.,,New Orleans,LA,70124,5,504-250-9418,W,F,D,56,2/20/2012,2/20/2008,Ms. Marshall +DPEC Member ,District A ,,,,LA,,,ORLEANS,"John ""Jack"" Sullivan",862 Camp St.,,New Orleans,LA,70130,5,504-524-1421,W,M,D,56,2/20/2012,2/20/2008,Mr. Sullivan +DPEC Member ,District A ,,,,LA,,,ORLEANS,John Thibodeaux,426 S. Clark St.,,New Orleans,LA,70119,5,504-723-6789,W,M,D,56,2/20/2012,2/20/2008,Mr. Thibodeaux +DPEC Member ,District A ,,,,LA,,,ORLEANS,"Andrew Tuozzolo, ",3823 Dumaine St,,New Orleans,LA,70119,5,,,,,56,,1/7/2010, +DPEC Member ,District A ,,,,LA,,,ORLEANS,Evan Wolf,8241 Hickory St.,,New Orleans,LA,70118,5,504-352-4114,W,M,D,56,2/20/2012,2/20/2008,Mr. Wolf +DPEC Member ,District A ,,,,LA,,,ORLEANS,"Betty Wolfers, ","309 Opal St., 3D",,New Orleans,LA,70124,5,,,,,56,,1/7/2010, +DPEC Member ,District B ,,,,LA,,,ORLEANS,"Samson ""Skip"" Alexander, Sr.",2719 Marengo St.,,New Orleans,LA,70115,5,504-891-4959,B,M,D,56,2/20/2012,2/20/2008,Mr. Alexander +DPEC Member ,District B ,,,,LA,,,ORLEANS,O. Butch Bajoie,P.O. Box 15465,,New Orleans,LA,70175,5,504-891-0631,B,M,D,56,2/20/2012,2/20/2008,Mr. Bajoie +DPEC Member ,District B ,,,,LA,,,ORLEANS,Charmaine Baker-Fox,2138 Terpsichore St.,,New Orleans,LA,70113,5,504-525-5819,B,F,D,56,2/20/2012,2/20/2008,Ms. Baker-Fox +DPEC Member ,District B ,,,,LA,,,ORLEANS,Jay H. Banks,1746 Jackson Ave.,,New Orleans,LA,70113,5,504-522-8811,B,M,D,56,2/20/2012,2/20/2008,Mr. Banks +DPEC Member ,District B ,,,,LA,,,ORLEANS,"Margaret ""Maggie"" Carroll",4312 Walmsley Ave.,,New Orleans,LA,70125,5,504-324-8322,W,F,D,56,2/20/2012,2/20/2008,Ms. Carroll +DPEC Member ,District B ,,,,LA,,,ORLEANS,Karen Carter,"920 Poeyfarre St., Unit 316",,New Orleans,LA,70130,5,504-568-8346,B,F,D,56,2/20/2012,2/20/2008,Ms. Carter +DPEC Member ,District B ,,,,LA,,,ORLEANS,Julius Feltus,P.O. Box 4403,,New Orleans,LA,70118,5,504-615-5216,O,M,D,56,2/20/2012,2/20/2008,Mr. Feltus +DPEC Member ,District B ,,,,LA,,,ORLEANS,Natacha Hutchinson,1918 Louisiana Ave.,,New Orleans,LA,70115,5,504-342-2686,B,F,D,56,2/20/2012,2/20/2008,Ms. Hutchinson +DPEC Member ,District B ,,,,LA,,,ORLEANS,James P. Johnson,1465 N. Broad St.,,New Orleans,LA,70119,5,504-371-5550,B,M,D,56,2/20/2012,2/20/2008,Mr. Johnson +DPEC Member ,District B ,,,,LA,,,ORLEANS,Felicia Kahn,4908 Carondelet St.,,New Orleans,LA,70115,5,504-899-1406,W,F,D,56,2/20/2012,2/20/2008,Ms. Kahn +DPEC Member ,District B ,,,,LA,,,ORLEANS,"Walter ""Walt"" Leger, III",2320 Laurel St.,,New Orleans,LA,70130,5,504-636-1395,W,M,D,56,2/20/2012,2/20/2008,Mr. Leger +DPEC Member ,District B ,,,,LA,,,ORLEANS,"Edward McGinnis, III",838 Fourth St.,,New Orleans,LA,70130,5,504-914-0963,W,M,D,56,2/20/2012,2/20/2008,Mr. McGinnis +DPEC Member ,District B ,,,,LA,,,ORLEANS,Maurice Ruffin,2412 General Taylor St.,,New Orleans,LA,70115,5,504-899-4394,B,M,D,56,2/20/2012,2/20/2008,Mr. Ruffin +DPEC Member ,District B ,,,,LA,,,ORLEANS,"Glenis M. Scott, Sr.",P.O. Box 750164,,New Orleans,LA,70175,5,504-329-1558,B,M,D,56,2/20/2012,2/20/2008,Mr. Scott +DPEC Member ,District C ,,,,LA,,,ORLEANS,Natasha Anthony-Wells,2608 Comet St.,,New Orleans,LA,70131,5,504-393-6929,B,F,D,56,2/20/2012,2/20/2008,Ms. Anthony-Wells +DPEC Member ,District C ,,,,LA,,,ORLEANS,"Jeffery ""Jeff"" Arnold",2415 Danbury Dr.,,New Orleans,LA,70131,5,504-393-5801,W,M,D,56,2/20/2012,2/20/2008,Mr. Arnold +DPEC Member ,District C ,,,,LA,,,ORLEANS,Joseph Broussard,209 Brunswick Ct.,,New Orleans,LA,70131,5,504-391-9641,B,M,D,56,2/20/2012,2/20/2008,Mr. Broussard +DPEC Member ,District C ,,,,LA,,,ORLEANS,Stephanie Roche' Butler,4234 Mac Arthur Blvd.,,New Orleans,LA,70131,5,504-391-3147,B,F,D,56,2/20/2012,2/20/2008,Ms. Butler +DPEC Member ,District C ,,,,LA,,,ORLEANS,"Troy ""C"" Carter",92 English Turn Dr.,,New Orleans,LA,70131,5,504-392-6213,B,M,D,56,2/20/2012,2/20/2008,Mr. Carter +DPEC Member ,District C ,,,,LA,,,ORLEANS,"Marlon Defillo, II",28 Seaward Ct.,,New Orleans,LA,70131,5,504-218-4048,B,M,D,56,2/20/2012,2/20/2008,Mr. Defillo +DPEC Member ,District C ,,,,LA,,,ORLEANS,Ericka Edwards-Jones,#52 Eugenie Court,,New Orleans,LA,70131,5,504-715-8447,B,F,D,56,2/20/2012,2/20/2008,Ms. Edwards-Jones +DPEC Member ,District C ,,,,LA,,,ORLEANS,"Kenneth Paul Garrett, Sr.",2152 L.B. Landry Ave.,,New Orleans,LA,70114,5,504-367-7101,B,M,D,56,2/20/2012,2/20/2008,Mr. Garrett +DPEC Member ,District C ,,,,LA,,,ORLEANS,Sandra Henderson-Wilson,1333 Elmira Ave.,,New Orleans,LA,70114,5,504-362-5997,B,F,D,56,2/20/2012,2/20/2008,Ms. Henderson-Wilson +DPEC Member ,District C ,,,,LA,,,ORLEANS,Darren Lombard,77 Yosemite Dr.,,New Orleans,LA,70131,5,504-237-8745,B,M,D,56,2/20/2012,2/20/2008,Mr. Lombard +DPEC Member ,District C ,,,,LA,,,ORLEANS,Morris Reed,4 Grand Teton Ct.,,New Orleans,LA,70131,5,504-822-4357,B,M,D,56,2/20/2012,2/20/2008,Mr. Reed +DPEC Member ,District C ,,,,LA,,,ORLEANS,Ed Robinson,6328 Dover Pl.,,New Orleans,LA,70131,5,,,,,56,,5/7/2009,Mr. Robinson +DPEC Member ,District C ,,,,LA,,,ORLEANS,Marie C. Williams,64 Grand Canyon Dr.,,New Orleans,LA,70131,5,504-392-7074,B,F,D,56,2/20/2012,2/20/2008,Ms. Williams +DPEC Member ,District D ,,,,LA,,,ORLEANS,"David Flemings, Jr.",3624 Pin Oak Ave.,,New Orleans,LA,70131,5,504-915-6358,B,M,D,56,2/20/2012,2/20/2008,Mr. Flemings +DPEC Member ,District D ,,,,LA,,,ORLEANS,Louella P. Givens,5352 Bancroft Dr.,,New Orleans,LA,70122,5,504-288-4349,B,F,D,56,2/20/2012,2/20/2008,Ms. Givens +DPEC Member ,District D ,,,,LA,,,ORLEANS,Cynthia Hedge-Morrell,4925 Moore Drive,,New Orleans,LA,70122,5,504-261-0535,B,F,D,56,2/20/2012,2/20/2008,Ms. Hedge-Morrell +DPEC Member ,District D ,,,,LA,,,ORLEANS,Jason M. Hughes,P.O. Box 51107,,New Orleans,LA,70151,5,504-914-0844,B,M,D,56,2/20/2012,2/20/2008,Mr. Hughes +DPEC Member ,District D ,,,,LA,,,ORLEANS,Carol S. Johnson,2272 N. Robertson St.,,New Orleans,LA,70117,5,504-428-6598,B,F,D,56,2/20/2012,2/20/2008,Ms. Johnson +DPEC Member ,District D ,,,,LA,,,ORLEANS,Juan Lafonta,306 Warrington Dr.,,New Orleans,LA,70122,5,504-288-4911,B,M,D,56,2/20/2012,2/20/2008,Mr. Lafonta +DPEC Member ,District D ,,,,LA,,,ORLEANS,Charlene Larche-Mason,P.O. Box 850331,,New Orleans,LA,70185,5,504-874-3292,B,F,D,56,2/20/2012,2/20/2008,Ms. Larche-Mason +DPEC Member ,District D ,,,,LA,,,ORLEANS,Michael McKenna,4511 Bancroft Dr.,,New Orleans,LA,70122,5,504-813-6716,B,M,D,56,2/20/2012,2/20/2008,Mr. McKenna +DPEC Member ,District D ,,,,LA,,,ORLEANS,Jennifer Medley,6710 Bamberry St.,,New Orleans,LA,70126,5,504-495-1385,B,F,D,56,2/20/2012,2/20/2008,Ms. Medley +DPEC Member ,District D ,,,,LA,,,ORLEANS,Arthur A. Morrell,4925 Moore Drive,,New Orleans,LA,70122,5,504-261-0535,B,M,D,56,2/20/2012,2/20/2008,Mr. Morrell +DPEC Member ,District D ,,,,LA,,,ORLEANS,"""J.P."" Morrell","6305 Elysian Fields Ave., Ste. 405-B",,New Orleans,LA,70122,5,504-286-2334,B,M,D,56,2/20/2012,2/20/2008,Mr. Morrell +DPEC Member ,District D ,,,,LA,,,ORLEANS,"Ambrose J. Pratt, III",P.O. Box 2771,,Slidell,LA,70459,5,504-258-9090,B,M,D,56,2/20/2012,2/20/2008,Mr. Pratt +DPEC Member ,District D ,,,,LA,,,ORLEANS,Christian Rhodes,4617 Venus St.,,New Orleans,LA,70122,5,504-330-9462,B,M,D,56,2/20/2012,2/20/2008,Mr. Rhodes +DPEC Member ,District D ,,,,LA,,,ORLEANS,Angele Wilson,810 Bienville St. #505,,New Orleans,LA,70112,5,504-430-5570,B,F,D,56,2/20/2012,2/20/2008,Ms. Wilson +DPEC Member ,District E ,,,,LA,,,ORLEANS,Austin Badon,"5555 Bullard Ave., Ste. 101",,New Orleans,LA,70128,5,504-896-1491,B,M,D,56,2/20/2012,2/20/2008,Mr. Badon +DPEC Member ,District E ,,,,LA,,,ORLEANS,"Ronald Carrere, Jr.",11131 Lake Forest Blvd.,,New Orleans,LA,70128,5,504-495-8228,B,M,D,56,2/20/2012,2/20/2008,Mr. Carrere +DPEC Member ,District E ,,,,LA,,,ORLEANS,Carolyn Collins-DeBose,11121 lakeforest Blvd.,,New Orleans,LA,70128,5,504-453-7995,B,F,D,56,2/20/2012,2/20/2008,Ms. Collins-DeBose +DPEC Member ,District E ,,,,LA,,,ORLEANS,Shelia Collins-Stallworth,5801 Waterford Blvd.,,New Orleans,LA,70127,5,504-450-0457,B,F,D,56,2/20/2012,2/20/2008,Ms. Collins-Stallworth +DPEC Member ,District E ,,,,LA,,,ORLEANS,Michon Copelin,7163 Parkside Ct.,,New Orleans,LA,70127,5,504-415-9680,B,F,D,56,2/20/2012,2/20/2008,Ms. Copelin +DPEC Member ,District E ,,,,LA,,,ORLEANS,Lena Craig-Stewart,4800 Good Drive,,New Orleans,LA,70127,5,504-913-9336,B,F,D,56,2/20/2012,2/20/2008,Ms. Craig-Stewart +DPEC Member ,District E ,,,,LA,,,ORLEANS,Brian Egana,11436 S. Easterlyn Cir.,,New Orleans,LA,70128,5,504-799-8711,B,M,D,56,2/20/2012,2/20/2008,Mr. Egana +DPEC Member ,District E ,,,,LA,,,ORLEANS,Yolanda Evans,4635 Camelia St.,,New Orleans,LA,70126,5,504-231-9496,B,F,D,56,2/20/2012,2/20/2008,Ms. Evans +DPEC Member ,District E ,,,,LA,,,ORLEANS,"Errol T. George, ",11248 Notaway Ln,,New Orleans,LA,70128,5,,,,,56,,1/7/2010, +DPEC Member ,District E ,,,,LA,,,ORLEANS,"James A. Gray, II","2 Canal St., Ste. 2707",,New Orleans,LA,70130,5,504-628-2795,B,M,D,56,2/20/2012,2/20/2008,Mr. Gray +DPEC Member ,District E ,,,,LA,,,ORLEANS,Carl Haydel,P.O. Box 871081,,New Orleans,LA,70187-1081,10,504-430-4630,B,M,D,56,2/20/2012,2/20/2008,Mr. Haydel +DPEC Member ,District E ,,,,LA,,,ORLEANS,Dana Henry,7600 Hansbrough Ave.,,New Orleans,LA,70127,5,504-246-3408,B,M,D,56,2/20/2012,2/20/2008,Mr. Henry +DPEC Member ,District E ,,,,LA,,,ORLEANS,Charmaine L. Marchand,1730 Andry St.,,New Orleans,LA,70117,5,504-945-8151,B,F,D,56,2/20/2012,2/20/2008,Ms. Marchand +DPEC Member ,District E ,,,,LA,,,ORLEANS,Sabrina Mays-Montana,"812 Joe Yenni Blvd., Apt. 19",,New Orleans,LA,70065,5,504-305-3046,B,F,D,56,2/20/2012,2/20/2008,Ms. Mays-Montana +RPEC Member ,District A ,,,,LA,,,ORLEANS,"John ""Jay"" Batt, Jr.",230 Carondelet St.,,New Orleans,LA,70130,5,504-528-1073,W,M,R,66,2/20/2012,2/20/2008, +RPEC Member ,District A ,,,,LA,,,ORLEANS,Brett A. Bonin,6628 General Diaz St.,,New Orleans,LA,70124,5,504-547-3238,W,M,R,66,2/20/2012,2/20/2008,Mr. Bonin +RPEC Member ,District A ,,,,LA,,,ORLEANS,Adrian Bruneau,145 Robert E. Lee Blvd. Ste. 206,,New Orleans,LA,70124,5,504-858-2832,W,M,R,66,2/20/2012,2/20/2008,Ms. Bruneau +RPEC Member ,District A ,,,,LA,,,ORLEANS,"Christine ""Chrissy"" Bruneau",145 Robert E. Lee Blvd. Ste. 206,,New Orleans,LA,70124,5,504-458-6272,O,F,R,66,2/20/2012,2/20/2008,Ms. Bruneau +RPEC Member ,District A ,,,,LA,,,ORLEANS,"""Jeb"" Bruneau",7038 General Haig St.,,New Orleans,LA,70124,5,504-459-6628,W,M,R,66,2/20/2012,2/20/2008,Mr. Bruneau +RPEC Member ,District A ,,,,LA,,,ORLEANS,"Robert ""Bob"" Ellis",8006 Nelson St.,,New Orleans,LA,70125,5,504-669-7977,W,M,R,66,2/20/2012,2/20/2008, +RPEC Member ,District A ,,,,LA,,,ORLEANS,"John ""Fenn"" French",230 Carondelet St.,,New Orleans,LA,,0,504-593-9953,W,M,R,66,2/20/2012,2/20/2008,Mr. French +RPEC Member ,District A ,,,,LA,,,ORLEANS,Michele Gaudin,866 City Park Ave.,,New Orleans,LA,70119,5,504-486-0188,W,F,R,66,2/20/2012,2/20/2008,Ms. Gaudin +RPEC Member ,District A ,,,,LA,,,ORLEANS,"""Peggy"" Gehbauer",87 Avant Garde,,Kenner,LA,70065,5,504-220-9433,W,F,R,66,2/20/2012,2/20/2008,Ms. Gehbauer +RPEC Member ,District A ,,,,LA,,,ORLEANS,"Alexander ""Alex"" Heaton",7703 Nelson St.,,New Orleans,LA,70125,5,504-861-2130,W,M,R,66,2/20/2012,2/20/2008,Mr.Heaton +RPEC Member ,District A ,,,,LA,,,ORLEANS,"Nicholas J. ""Nick"" Lorusso",1133 Robert E. Lee Blvd.,,New Orleans,LA,70124,5,504-282-4001,W,M,R,66,2/20/2012,2/20/2008,Mr. Landry +RPEC Member ,District A ,,,,LA,,,ORLEANS,Robert E. Smith Lupo,78 Tern St.,,New Orleans,LA,70124,5,504-288-2593,W,M,R,66,2/20/2012,2/20/2008,Mr. Lupo +RPEC Member ,District A ,,,,LA,,,ORLEANS,Murray Nelson,5500 Prytania St. Suite 116,,New Orleans,LA,70115,5,504-717-7115,W,M,R,66,2/20/2012,2/20/2008,Mr. Nelson +RPEC Member ,District A ,,,,LA,,,ORLEANS,Sal Palmisano,3135 De Saix Blvd.,,New Orleans,LA,70119,5,504-858-3137,W,M,R,66,2/20/2012,3/18/2008,Mr. Palmisano +RPEC Member ,District B ,,,,LA,,,ORLEANS,Marc Behar,1422 Jackson Avenue,,New Orleans,LA,70130,5,504-361-3333,,M,R,66,2/20/2012,2/20/2008,Mr. Behar +RPEC Member ,District B ,,,,LA,,,ORLEANS,Randy Boudreaux,2533 Jefferson Ave.,,New Orleans,LA,70115,5,504-862-5868,W,M,R,66,2/20/2012,2/20/2008,Mr. Boudreaux +RPEC Member ,District B ,,,,LA,,,ORLEANS,Mark M. Cassidy,1201 St. Mary St.,,New Orleans,LA,70130,5,504-524-2272,W,M,R,66,2/20/2012,2/20/2008,Mr. Cassidy +RPEC Member ,District B ,,,,LA,,,ORLEANS,"Anthony J. Clesi, Jr.",926 Leontine St.,,New Orleans,LA,70115,5,504-899-4601,W,M,R,66,2/20/2012,2/20/2008,Mr. Clesi +RPEC Member ,District B ,,,,LA,,,ORLEANS,"Hosea J. Doucet, III",1201 St. Mary St.,,New Orleans,LA,70130,5,504-524-5524,W,M,R,66,2/20/2012,2/20/2008,Mr. Doucet +RPEC Member ,District B ,,,,LA,,,ORLEANS,Barbara A. Lill,1423 Cadiz St.,,New Orleans,LA,70115,5,504-899-7156,W,F,R,66,2/20/2012,2/20/2008,Ms. Lill +RPEC Member ,District B ,,,,LA,,,ORLEANS,"John Musser, IV",1201 First St.,,New Orleans,LA,70130,5,504-289-2589,W,M,R,66,2/20/2012,2/20/2008,Mr. Musser +RPEC Member ,District B ,,,,LA,,,ORLEANS,"John Musser, V",1218 Napoleon Ave.,,New Orleans,LA,70115,5,504-899-4411,W,M,R,66,,,Mr. Huser +RPEC Member ,District B ,,,,LA,,,ORLEANS,Peter A. Nass,5204 Prytania St.,,New Orleans,LA,70115,5,504-723-6369,W,M,R,66,2/20/2012,2/20/2008,Mr. Nass +RPEC Member ,District B ,,,,LA,,,ORLEANS,Alicia Ohlmeyer,2825 Jefferson Avenue,,New Orleans,LA,70115,5,504-812-7405,W,F,R,66,2/20/2012,2/20/2008,Ms. Ohlmeyer +RPEC Member ,District B ,,,,LA,,,ORLEANS,Christopher Roos,1685 Soniat St.,,New Orleans,LA,70115,5,504-895-1685,W,M,R,66,2/20/2012,2/20/2008,Mr. Roos +RPEC Member ,District B ,,,,LA,,,ORLEANS,Bryan Wagner,625 St. Charles Ave. 6C,,New Orleans,LA,70130,5,504-866-0550,W,M,R,66,2/20/2012,2/20/2008,Mr. Wagner +RPEC Member ,District B ,,,,LA,,,ORLEANS,Judy W. Wagner,"625 St. Charles Ave, 6C",,New Orleans,LA,70130,5,504-866-0550,W,F,R,66,2/20/2012,2/20/2008,Ms. Wagner +RPEC Member ,District B ,,,,LA,,,ORLEANS,George White,1205 Jefferson Ave.,,New Orleans,LA,70115,5,504-895-0488,W,M,R,66,2/20/2012,2/20/2008,Mr. White +RPEC Member ,District C ,,,,LA,,,ORLEANS,"Walter P. ""Pete"" Abercrombie",1119 N. Dupre St.,,New Orleans,LA,70119,5,504-458-0396,W,M,R,66,2/20/2012,2/20/2008,Mr. Ambercrombie +RPEC Member ,District C ,,,,LA,,,ORLEANS,Terri L. Baker,1322 Esplanade Ave.#D,,New Orleans,LA,70116,5,504-330-7187,W,F,R,66,2/20/2012,2/20/2008,Mr. Baker +RPEC Member ,District C ,,,,LA,,,ORLEANS,Robert Claypool,3935 S. Pin Oak Ave.,,New Orleans,LA,70131,5,504-391-0120,W,M,R,66,2/20/2012,2/20/2008,Mr. Claypool +RPEC Member ,District C ,,,,LA,,,ORLEANS,Andre Guichard,2071 West Bend Parkway Unit # 284,,New Orleans,LA,70114,5,504-366-6180,W,M,R,66,2/20/2012,2/20/2008,Mr. Guichard +RPEC Member ,District C ,,,,LA,,,ORLEANS,"John J. Kelly, III",601 Poydras St. Suite 2625,,New Orleans,LA,70130,5,504-299-3101,,,R,66,2/20/2012,2/20/2008,Mr. Kelly +RPEC Member ,District C ,,,,LA,,,ORLEANS,Edward Markle,126 Lakewood Estates Dr.,,New Orleans,LA,70131,5,504-392-8127,W,M,R,66,2/20/2012,2/20/2008,Mr. Markle +RPEC Member ,District C ,,,,LA,,,ORLEANS,"""Thomas Long"" Nguyen",3 Grand Teton Court,,New Orleans,LA,70131,5,504-994-0209,O,M,R,66,2/20/2012,2/20/2008,Mr. Nguyen +RPEC Member ,District C ,,,,LA,,,ORLEANS,James Pfeiffer,3640 Mimosa Ct.,,New Orleans,LA,70131,5,504-715-7251,W,M,R,66,2/20/2012,2/20/2008,Mr. Pfeiffer +RPEC Member ,District C ,,,,LA,,,ORLEANS,Patrick T. Phillpott,525 Huey P.Long Ave.,,Gretna,LA,70053,5,504-577-5036,W,M,R,66,2/20/2012,2/20/2008,Mr. Phillpott +RPEC Member ,District C ,,,,LA,,,ORLEANS,Paul Richard,10 Annandale Ct.,,New Orleans,LA,70131,5,504-394-5056,W,M,R,66,2/20/2012,2/20/2008,Mr. Richard +RPEC Member ,District C ,,,,LA,,,ORLEANS,Darrell H. Richards,2668 Mercedes Blvd.,,New Orleans,LA,70114,5,504-392-7440,W,M,R,66,2/20/2012,2/20/2008,Mr. Richards +RPEC Member ,District C ,,,,LA,,,ORLEANS,Jacob Rickoll,3227 St. Philip St.,,New Orleans,LA,70119,5,504-473-6943,W,M,R,66,2/20/2012,2/20/2008,Mr. Rickoll +RPEC Member ,District C ,,,,LA,,,ORLEANS,Stephen M. Swain,1129 Bourbon St.,,New Orleans,LA,70116,5,504-523-7047,,M,R,66,2/20/2012,2/20/2008,Mr. Swain +RPEC Member ,District C ,,,,LA,,,ORLEANS,"William ""Bill"" Thibaut",816 Orleans St. Apt.-B,,New Orleans,LA,70116,5,504-522-6650,W,M,R,66,2/20/2012,2/20/2008,Mr. Thibaut +RPEC Member ,District D ,,,,LA,,,ORLEANS,"Oliver ""Bishop O.C."" Coleman",P.O. Box 8800,,New Orleans,LA,70182,5,504-452-7797,B,M,R,66,2/20/2012,2/20/2008,Mr. Bishop +RPEC Member ,District D ,,,,LA,,,ORLEANS,Meryl B. Duroncelet,46 Forest Oaks Dr.,,New Orleans,LA,70131,5,504-439-2812,,F,R,66,2/20/2012,2/20/2008,Ms. Duroncelet +RPEC Member ,District D ,,,,LA,,,ORLEANS,Eustis Guillemet,"5985 W. Forrest Isle Dr., Apt. 399",,New Orleans,LA,70131,5,504-218-5347,,,,66,2/20/2012,2/20/2008,Mr. Guillemet +RPEC Member ,District D ,,,,LA,,,ORLEANS,"Eustis Guillemet, Jr.","5985 W. Forrest Isle Dr., Apt. 399",,New Orleans,LA,70131,5,504-218-5347,,,,66,2/20/2012,2/20/2008,Mr. Guillemet +RPEC Member ,District D ,,,,LA,,,ORLEANS,"Eustis Guillemet, Jr.","5985 W. Forrest Isle Dr., Apt. 399",,New Orleans,LA,70131,5,504-218-5347,B,M,R,66,2/20/2012,2/20/2008,Mr. Guillemet +RPEC Member ,District D ,,,,LA,,,ORLEANS,Lloyd A. Harsch,4337 Seminary Pl.,,New Orleans,LA,70126,5,817-733-0260,W,M,R,66,2/20/2012,2/20/2008,Mr. Harsch +RPEC Member ,District D ,,,,LA,,,ORLEANS,Claire DiRosa Simno,1728 Oriole St.,,New Orleans,LA,70122,5,504-283-6261,W,F,R,66,2/20/2012,2/20/2008,Ms. Simno +RPEC Member ,District D ,,,,LA,,,ORLEANS,"Elizabeth ""Betsy"" Stoner","3443 Esplanade Ave., Apt. 207",,New Orleans,LA,70119,5,504-908-0242,W,F,R,66,2/20/2012,2/20/2008,Ms. Stoner +RPEC Member ,District E ,,,,LA,,,ORLEANS,"Anh ""Joseph"" Cao",4371 Murano Rd.,,New Orleans,LA,70129,5,504-368-0491,O,M,R,66,2/20/2012,2/20/2008,MR. CAO +RPEC Member ,District E ,,,,LA,,,ORLEANS,"Hieu ""Kathie"" Hoang",4371 Murano Rd.,,New Orleans,LA,70129,5,504-813-0835,O,F,R,66,2/20/2012,2/20/2008,Ms. Hoang +RPEC Member ,District E ,,,,LA,,,ORLEANS,Robert Myers,916 Louisa,,New Orleans,LA,70117,5,504-417-9607,W,M,R,66,2/20/2012,2/20/2008,Mr. Myers +RPEC Member ,District E ,,,,LA,,,ORLEANS,Bac Cao Nguyen,13900 Chef Menteur Hwy.,,New Orleans,LA,70129,5,504-638-6555,O,M,R,66,2/20/2012,2/20/2008,Mr. Nguyen +RPEC Member ,District E ,,,,LA,,,ORLEANS,"Hoa ""Monica"" Nguyen",4818 Bergerac St.,,New Orleans,LA,70129,5,504-717-3396,O,F,R,66,2/20/2012,2/20/2008,Ms. Ngyuen +RPEC Member ,District E ,,,,LA,,,ORLEANS,"Thanh ""Martin"" Nguyen",13937 Dwyer Blvd.,,New Orleans,LA,70129,5,504-710-3876,O,M,R,66,2/20/2012,2/20/2008,Mr.Nguyen +Judge ,"Juvenile Court, Section A ",421 Loyola Ave.,,New Orleans,LA,70112,504-565-7324,ORLEANS,Ernestine S. Gray,421 Loyola Ave.,,New Orleans,LA,70112,5,504-565-7325,B,F,D,220,12/31/2014,1/1/2003,Judge Gray +Judge ,"Juvenile Court, Section B ",421 Loyola Ave.,,New Orleans,LA,70112,504-565-7315,ORLEANS,Tammy Stewart,1631 Elysian Fields Ave.#298,,New Orleans,LA,70117,5,504-512-1833,B,F,D,220,12/31/2014,4/14/2009,Ms. Stewart +Judge ,"Juvenile Court, Section C ",421 Loyola Ave.,,New Orleans,LA,70112,504-565-7370,ORLEANS,David L. Bell,421 Loyola Ave.,,New Orleans,LA,70112,5,504-484-0880,B,M,D,220,12/31/2014,12/16/2004,Judge Bell +Judge ,"Juvenile Court, Section D ",421 Loyola Ave.,,New Orleans,LA,70112,504-565-7380,ORLEANS,"Lawrence L. ""Larry"" Lagarde, Jr.",6350 Vicksburg St.,,New Orleans,LA,70124,5,504-488-4777,W,M,D,220,12/31/2014,1/1/2003,Judge Lagarde +Judge ,"Juvenile Court, Section E ",421 Loyola Ave.,,New Orleans,LA,70112,225-565-7383,ORLEANS,"Tracey Flemings-Davillier, ",3624 Pin Oak Ave.,,New Orleans,LA,70131-8444,10,504-270-5258,B,F,D,220,12/31/2014,2/17/2010, +Judge ,"Juvenile Court, Section F ",421 Loyola Ave.,,New Orleans,LA,70112,504-565-7381,ORLEANS,Mark Doherty,6415 West End Blvd.,,New Orleans,LA,70124,5,504-482-2262,W,M,D,220,12/31/2014,1/1/2001,Judge Doherty +Civil Sheriff ,,"421 Loyola Ave., Ste. 403",,New Orleans,LA,70112,504-523-6143,ORLEANS,"Paul R. Valteau, Jr.","421 Loyola Ave., Ste. 403",,New Orleans,LA,70112,5,504-891-1549,B,M,D,225,5/2/2010,5/1/2006,Sheriff Valteau +Criminal Sheriff ,,2800 Gravier St.,,New Orleans,LA,70119,504-827-8501,ORLEANS,Marlin N. Gusman,2800 Gravier St.,,New Orleans,LA,70119,5,504-339-6270,B,M,D,225,5/2/2010,5/2/2006,Sheriff Gusman +Sheriff,,,,,,,,ORLEANS,"Marlin N. Gusman, ",4478 Venus St.,,New Orleans,LA,70122-4906,10,504-826-7034,B,M,D,225,,, +Clerk ,Civil District Court ,"421 Loyola Ave., Ste. 402",,New Orleans,LA,70112,504-592-9100,ORLEANS,"Dale Atkins, ",2411 Oriole St.,,New Orleans,LA,70122-1813,10,504-286-0229,B,F,D,230,,, +Clerk ,Civil District Court ,"421 Loyola Ave., Ste. 402",,New Orleans,LA,70112,504-592-9100,ORLEANS,Dale N. Atkins,"421 Loyola Ave., Ste. 402",,New Orleans,LA,70112,5,504-592-3472,B,F,D,230,5/2/2010,5/2/2006,Ms. Atkins +Clerk ,Criminal District Court ,2800 Gravier St.,,New Orleans,LA,70119,504-339-6270,ORLEANS,Arthur A. Morrell,2800 Gravier St.,,New Orleans,LA,70119,5,504-400-3691,B,M,D,230,5/2/2010,5/31/2006,Mr. Morrell +Clerk ,Criminal District Court ,2800 Gravier St.,,New Orleans,LA,70119,504-339-6270,ORLEANS,"Arthur A. Morrell, ",4925 Moore Drive,,New Orleans,LA,70122-2515,10,504-282-7812,B,M,D,230,,, +Assessor ,,,,,LA,,,ORLEANS,,,,,,,0,,,,,235,,, +Assessor ,1st Municipal District ,P.O. Box 57373,,New Orleans,LA,70157-7373,504-658-1310,ORLEANS,Darren Mire,P.O. Box 57373,,New Orleans,LA,70157-7373,10,504-913-9692,B,M,D,235,5/2/2010,5/31/2006,Mr. Mire +Assessor ,2nd Municipal District ,441 Jewel St.,,New Orleans,LA,70124,504-565-7066,ORLEANS,Claude Mauberret,441 Jewel St.,,New Orleans,LA,70124,5,504-658-1320,W,M,D,235,5/2/2010,5/2/2006,Mr. Mauberret +Assessor ,3rd Municipal District ,4741 General Early Dr.,,New Orleans,LA,70126,504-565-7071,ORLEANS,Erroll Williams,4741 Gen. Early Dr.,,New Orleans,LA,70126,5,504-658-1313,B,M,D,235,5/2/2010,5/2/2006,Mr. Williams +Assessor ,4th Municipal District ,963 Jackson Ave.,,New Orleans,LA,70130,504-658-1340,ORLEANS,Betty Jefferson,936 Jackson Ave.,,New Orleans,LA,70130,5,504-523-6245,B,F,D,235,5/2/2010,5/31/2006,Ms. Jefferson +Assessor ,5th Municipal District ,2407 Danbury Dr.,,New Orleans,LA,70131,504-368-7642,ORLEANS,"""Tom"" Arnold",2407 Danbury Dr.,,New Orleans,LA,70131,5,504-394-3749,W,M,R,235,5/2/2010,5/2/2006,Mr. Arnold +Assessor ,6th Municipal District ,7303 Spruce St.,,New Orleans,LA,70118,504-658-1360,ORLEANS,Nancy Marshall,625 Lowerline St.,,New Orleans,LA,70118,5,504-866-8395,W,F,D,235,5/2/2010,5/2/2006,Ms. Marshall +Assessor ,7th Municipal District ,1300 Perdido St.,,New Orleans,LA,70112,504-658-1370,ORLEANS,Henry F. Heaton,231 36th St.,,New Orleans,LA,70124,5,504-486-6142,W,M,D,235,5/2/2010,5/2/2006,Mr. Heaton +Coroner ,,2700 Tulane Ave.,,New Orleans,LA,70119,504-827-3583,ORLEANS,Frank Minyard,718 Barracks St.,,New Orleans,LA,70116,5,504-228-9719,W,M,D,240,5/2/2010,5/1/2006,Mr. Minyard +Coroner ,,2700 Tulane Ave.,,New Orleans,LA,70119,504-827-3583,ORLEANS,"Frank Minyard, ",1111 S. Peters St. #221,,New Orleans,LA,70130-1798,10,504-658-9660,W,M,D,240,,, +Mayor ,City of New Orleans ,Clerk of City Council,,1300 Perdido St.,LA,70112,504-658-1085,ORLEANS,"Mitchell ""Mitch"" Landrieu, ",2336 Octavia St.,,New Orleans,LA,70115-6532,10,000-000-0000,W,M,D,243,,, +Mayor ,City of New Orleans ,Clerk of City Council,,1300 Perdido St.,LA,70112,504-658-1085,ORLEANS,C. Ray Nagin,"1615 Poydras St., Ste. 660",,New Orleans,LA,70112,5,504-304-8196,B,M,D,243,5/2/2010,5/31/2006,Mayor Nagin +Councilmember at Large ,,"1300 Perdido St., Rm. 1E09",,New Orleans,LA,70112,504-658-1085,ORLEANS,Jacquelyn Brechtel Clarkson,2657 Danbury Dr.,,New Orleans,LA,70131,5,504-392-2092,W,F,D,244,5/2/2010,11/27/2007,Ms. Clarkson +Councilmember at Large ,,"1300 Perdido St., Rm. 1E09",,New Orleans,LA,70112,504-658-1085,ORLEANS,"Jacquelyn Brechtel Clarkson, ",2657 Danbury Dr.,,New Orleans,LA,70131-3845,10,504-392-2092,W,F,D,244,,, +Councilmember at Large ,,"1300 Perdido St., Rm. 1E09",,New Orleans,LA,70112,504-658-1085,ORLEANS,Arnie Fielkow,2220 Palmer Ave.,,New Orleans,LA,70118,5,504-234-0600,W,M,D,244,5/2/2010,5/31/2006,Mr. Fielkow +Councilmember at Large ,,"1300 Perdido St., Rm. 1E09",,New Orleans,LA,70112,504-658-1085,ORLEANS,"""Arnie"" D. Fielkow, ",2220 Palmer Ave.,,New Orleans,LA,70118-6370,10,504-905-9025,W,M,D,244,,, +Councilmember ,District A ,"1300 Perdido St., Rm. 1E09",,New Orleans,LA,,504-658-1085,ORLEANS,Shelley Stephenson Midura,83 Flamingo St.,,New Orleans,LA,70124,5,504-284-5999,W,F,D,245,5/2/2010,5/31/2006,Ms. Midura +Councilmember ,District B ,"1300 Perdido St., Rm. 1E09",,New Orleans,LA,70112,504-658-1085,ORLEANS,Stacy Head,1675 Soniat St.,,New Orleans,LA,70115,5,504-891-6957,W,F,D,245,5/2/2010,5/31/2006,Ms. Head +Councilmember ,District B ,"1300 Perdido St., Rm. 1E09",,New Orleans,LA,70112,504-658-1085,ORLEANS,"Stacy Head, ",1675 Soniat St.,,New Orleans,LA,70115-4957,10,504-891-6957,W,F,D,245,,, +Councilmember ,District C ,"1300 Perdido St., Rm. 1E09",,New Orleans,LA,70112,504-658-1085,ORLEANS,James Carter,600 Belleville St.,,New Orleans,LA,70114,5,504-914-1847,B,M,D,245,5/2/2010,5/31/2006,Mr. Carter +Councilmember ,District C ,"1300 Perdido St., Rm. 1E09",,New Orleans,LA,70112,504-658-1085,ORLEANS,"Kristin Gisleson Palmer, ",119 Vallette Street,,New Orleans,LA,70114-1145,10,504-361-4978,W,F,D,245,,, +Councilmember ,District D ,"1300 Perdido St., Rm. 1E09",,New Orleans,LA,70112,504-658-1085,ORLEANS,Cynthia Hedge-Morrell,4925 Moore Drive,,New Orleans,LA,70122,5,504-342-5403,B,F,D,245,5/2/2010,5/2/2006,Ms. Hedge-Morrell +Councilmember ,District D ,"1300 Perdido St., Rm. 1E09",,New Orleans,LA,70112,504-658-1085,ORLEANS,"Cynthia Hedge-Morrell, ",4925 Moore Dr.,,New Orleans,LA,70122-2515,10,504-282-7812,B,F,D,245,,, +Councilmember ,District E ,"1300 Perdido St., Rm. 1E09",,New Orleans,LA,70112,504-658-1085,ORLEANS,Cynthia Willard-Lewis,10911 Willowbrae Dr.,,Harvey,LA,70058,5,504-874-5814,B,F,D,245,5/2/2010,5/2/2006,Ms. Willard-Lewis +Judge ,"1st City Court, Sect. A, City of New Orleans ",421 Loyola Ave.,,New Orleans,LA,70112,504-592-9240,ORLEANS,Charles A. Imbornone,6020 Kensington Blvd.,,New Orleans,LA,70127,5,504-592-9240,W,M,D,250,12/31/2010,1/1/2005,Judge Imbornone +Judge ,"1st City Court, Sect. B, City of New Orleans ",421 Loyola Ave.,,New Orleans,LA,70112,504-592-9243,ORLEANS,Angelique A. Reed,3438 Octavia St.,,New Orleans,LA,70125,5,504-592-9243,B,M,D,250,12/31/2010,1/1/2005,Judge Reed +Judge ,"1st City Court, Sect. C, City of New Orleans ",421 Loyola Ave.,,New Orleans,LA,70112,504-592-9247,ORLEANS,Sonja Spears,"421 Loyola Ave., Rm. 201",,New Orleans,LA,70112,5,504-593-9500,B,F,D,250,12/31/2010,1/1/2005,Mr. Spears +Judge ,"2nd City Court, City of New Orleans ",225 Morgan St.,,New Orleans,LA,70114,504-368-4099,ORLEANS,"Mary ""KK"" Norman",25 English Turn Dr.,,New Orleans,LA,70131,5,504-394-7452,W,F,D,250,12/31/2012,1/1/2007,Judge Norman +Judge ,Municipal Court ,"727 S. Broad St., Rm. 105",,New Orleans,LA,70119,504-827-5081,ORLEANS,Desiree M. Charbonnet,"365 Canal St., Ste. 1155",,New Orleans,LA,70130,5,504-949-0996,B,F,D,250,12/31/2016,1/1/2009,Judge Charbonnet +Judge ,Municipal Court ,"727 S. Broad St., Rm. 105",,New Orleans,LA,70119,504-827-5081,ORLEANS,Sean Early,7246 Ring St.,,New Orleans,LA,70124,5,504-283-0055,W,M,D,250,12/31/2014,1/1/2007,Judge Early +Judge ,Municipal Court ,"727 S. Broad St., Rm. 105",,New Orleans,LA,70119,504-827-5081,ORLEANS,"Joseph ""Joe"" Landry",7027 Argonne Blvd.,,New Orleans,LA,70124,5,504-309-7029,W,M,D,250,12/31/2010,5/10/2009,Judge Landry +Judge ,Municipal Court ,"727 S. Broad St., Rm. 105",,New Orleans,LA,70119,504-827-5081,ORLEANS,Paul N. Sens,7009 General Haig St.,,New Orleans,LA,70124,5,504-288-3929,W,M,D,250,12/31/2012,1/1/2005,Judge Sens +Judge ,"Traffic Court, Div. A, City of New Orleans ",727 S. Broad St.,,New Orleans,LA,70119,504-827-5096,ORLEANS,Dennis J. Dannel,6128 Pratt Dr.,,New Orleans,LA,70122,5,504-286-1330,B,M,D,250,12/31/2012,1/1/2005,Judge Dannel +Judge ,"Traffic Court, Div. B, City of New Orleans ",727 S. Broad St.,,New Orleans,LA,70119,504-827-5095,ORLEANS,"Robert E.""Bobby"" Jones, III",3749 Red Oak Crt.,,New Orleans,LA,70131,5,504-433-4045,B,M,D,250,12/31/2010,1/1/2003,Judge Jones +Judge ,"Traffic Court, Div. C, City of New Orleans ",727 S. Broad St.,,New Orleans,LA,70119,504-827-5064,ORLEANS,Mark J. Shea,6417 Bertha Dr.,,New Orleans,LA,70122,5,504-482-5100,W,M,D,250,12/31/2014,4/14/2009,Judge Shea +Judge ,"Traffic Court, Div. D, City of New Orleans ",727 S. Broad St.,,New Orleans,LA,70119,504-827-5005,ORLEANS,"Ronald J. ""Ron"" Sholes",180 Lakewood Estates Dr.,,New Orleans,LA,70131,5,504-433-4343,B,M,D,250,12/31/2014,1/1/2007,Judge Sholes +Clerk ,"1st City Court, City of New Orleans ",421 Loyola Ave.,,New Orleans,LA,70112,504-592-9155,ORLEANS,Ellen M. Hazeur,5121 Easterlyn Circle,,New Orleans,LA,70128,5,504-246-9576,B,F,D,252,12/31/2010,1/1/2005,Ms. Hazeur +Clerk ,"2nd City Court, City of New Orleans ",225 Morgan St.,,New Orleans,LA,70114,504-368-4245,ORLEANS,"Martin L. ""Marty"" Broussard",4420 Lennox Blvd.,,New Orleans,LA,70131,5,504-368-4245,W,M,D,252,12/31/2012,1/1/2007,Mr. Broussard +Constable ,"1st City Court, City of New Orleans ",421 Loyola Ave.,,New Orleans,LA,70112,504-523-3258,ORLEANS,"Lambert C. Boissiere, Jr.",2358 Lake Oaks Parkway,,New Orleans,LA,70122,5,504-523-3258,B,M,D,253,12/31/2014,1/1/2009,Mr. Boissiere +Constable ,"2nd City Court, City of New Orleans ",225 Morgan St.,,New Orleans,LA,70114,504-368-1101,ORLEANS,Ennis Grundmeyer,1241 Kabel Dr.,,New Orleans,LA,70131,5,504-392-3800,W,M,D,253,12/31/2012,1/1/2007, +Member of School Board ,District 1 ,3510 General DeGaulle Dr.,,New Orleans,LA,70114,504-304-5702,ORLEANS,Ira Thomas,6931 Queensway Dr.,,New Orleans,LA,70128,5,504-319-9331,B,M,D,255,12/31/2012,1/1/2009,Ms. Thomas +Member of School Board ,District 2 ,3510 General DeGaulle Dr.,,New Orleans,LA,70114,504-304-5702,ORLEANS,Cynthia Cade,P. O. Box 870986,,New Orleans,LA,70187,5,504-717-5130,B,F,D,255,12/31/2012,1/1/2009,Ms. Cade +Member of School Board ,District 3 ,3510 General DeGaulle Dr.,,New Orleans,LA,70114,504-304-5702,ORLEANS,Brett A. Bonin,6628 General Diaz Street,,New Orleans,LA,70124,5,504-482-9589,W,M,R,255,12/31/2012,1/1/2009,Mr. Bonin +Member of School Board ,District 4 ,3510 General DeGaulle Dr.,,New Orleans,LA,70114,504-304-5702,ORLEANS,Lourdes Moran,2620 Ramsey Drive,,New Orleans,LA,70131,5,504-717-5013,O,F,D,255,12/31/2012,1/1/2009,Ms. Moran +Member of School Board ,District 5 ,3510 General DeGaulle Dr.,,New Orleans,LA,70114,504-304-5702,ORLEANS,Seth J. Bloom,700 Camp St.,,New Orleans,LA,70130,5,504-599-9997,W,M,R,255,12/31/2012,1/1/2009,Mr. Bloom +Member of School Board ,District 6 ,3510 General DeGaulle Dr.,,New Orleans,LA,70114,504-304-5702,ORLEANS,Woody Koppel,"1215 Prytania St., Ste.238",,New Orleans,LA,70130,5,504-525-3067,W,M,D,255,12/31/2012,1/1/2009,Mr. Koppel +Member of School Board ,District 7 ,3510 General DeGaulle Dr.,,New Orleans,LA,70114,504-304-5702,ORLEANS,Thomas A. Robichaux,1805 Esplanade Ave.,,New Orleans,LA,70116,5,504-945-4003,W,M,D,255,12/31/2012,1/1/2009,Mr. Robichaux +DPEC Member ,at Large ,,,,LA,,,OUACHITA,Billye Burns,219 Jackson St.,,West Monroe,LA,71291,5,318-323-5210,B,F,D,54,2/20/2012,2/20/2008,Mr. Burns +DPEC Member ,at Large ,,,,LA,,,OUACHITA,Mary D. Hall,1398 Parker Rd.,,Monroe,LA,71202,5,318-330-9092,B,F,D,54,2/20/2012,2/20/2008,Ms. Hall +DPEC Member ,at Large ,,,,LA,,,OUACHITA,"Turner Hayden, Jr.",1111 S. Sixth,,Monroe,LA,71202,5,318-557-2187,B,M,D,54,2/20/2012,2/20/2008,Mr. Hayden +DPEC Member ,at Large ,,,,LA,,,OUACHITA,Shameka Jones,1413 Crescent Dr.,,Monroe,LA,71202,5,318-387-2507,B,F,D,54,2/20/2012,2/20/2008,Ms. Jones +DPEC Member ,at Large ,,,,LA,,,OUACHITA,Nikki Wade,1016 N. Seventh St.,,Monroe,LA,71201,5,318-387-4980,B,F,D,54,2/20/2012,2/20/2008,Ms. Wade +DPEC Member ,District A ,,,,LA,,,OUACHITA,Wayne Trichel,201 Butler Ave.,,West Monroe,LA,71291,5,318-396-2384,W,M,D,56,2/20/2012,2/20/2008,Mr. Trichel +DPEC Member ,District B ,,,,LA,,,OUACHITA,,,,,,,0,,,,,56,,, +DPEC Member ,District C ,,,,LA,,,OUACHITA,"Patton D. McHenry, Jr.",P.O. Box 7177,,Monroe,LA,71211-7177,10,318-388-0619,W,M,D,56,2/20/2012,2/20/2008,Mr. McHenry +DPEC Member ,District D ,,,,LA,,,OUACHITA,David Pivont,500 Stubbs Ave.,,Monroe,LA,71201,5,318-388-2136,W,M,D,56,2/20/2012,2/20/2008,Mr. Pivont +DPEC Member ,District E ,,,,LA,,,OUACHITA,,,,,,,0,,,,,56,,, +DPEC Member ,District F ,,,,LA,,,OUACHITA,"Rodney McFarland, Sr.",1017 Ouachita Ave.,,Monroe,LA,71201,5,318-323-0163,B,M,D,56,2/20/2012,2/20/2008,Mr. McFarland +RPEC Member ,at Large ,,,,LA,,,OUACHITA,Bradley Adair,402 Mckinley St.,,Monroe,LA,71201,5,318-381-2529,W,M,R,64,2/20/2012,2/20/2008,Mr. Adair +RPEC Member ,at Large ,,,,LA,,,OUACHITA,Jack B. Files,2110 Pargoud Blvd.,,Monroe,LA,71201,5,318-387-2312,W,M,R,64,2/20/2012,2/20/2008,Mr. Files +RPEC Member ,at Large ,,,,LA,,,OUACHITA,Jean Halsell,205 Elmwood Dr.,,West Monroe,LA,71291,5,318-396-0832,W,F,R,64,2/20/2012,2/20/2008,Ms. Halsell +RPEC Member ,at Large ,,,,LA,,,OUACHITA,Lois P. Hoover,5468 Horseshoe Lake Rd.,,Monroe,LA,71203,5,318-665-0628,W,F,R,64,2/20/2012,2/20/2008,Ms. Hoover +RPEC Member ,at Large ,,,,LA,,,OUACHITA,Kay Kellogg Katz,2905 Lamy Cr.,,Monroe,LA,71201,5,318-387-7728,W,F,R,64,2/20/2012,2/20/2008,Ms. Katz +RPEC Member ,District A ,,,,LA,,,OUACHITA,"Charles E. Jackson, III",121 Lafayette Cr.,,West Monroe,LA,71291,5,318-397-1153,W,M,R,66,2/20/2012,2/20/2008,Mr. Jackson +RPEC Member ,District B ,,,,LA,,,OUACHITA,,,,,,,0,,,,,66,,, +RPEC Member ,District C ,,,,LA,,,OUACHITA,Ruth Ulrich,406 Forsythe Ave.,,Monroe,LA,71201,5,318-330-9780,W,F,R,66,2/20/2012,2/20/2008,Ms. Ulrich +RPEC Member ,District D ,,,,LA,,,OUACHITA,Ben Katz,2905 Lamy Cr.,,Monroe,LA,71201,5,318-387-7728,W,M,R,66,2/20/2012,2/20/2008,MR. Katz +RPEC Member ,District E ,,,,LA,,,OUACHITA,Shane Smiley,3602 Deborah Dr.,,Monroe,LA,71201,5,318-855-4401,W,M,R,66,2/20/2012,2/20/2008,Mr. Smiley +RPEC Member ,District F ,,,,LA,,,OUACHITA,,,,,,,0,,,,,66,,, +Sheriff ,,P. O. Box 1803,,Monroe,LA,71210-1803,318-329-1200,OUACHITA,Royce Toney,P.O. Box 1803,,Monroe,LA,71210-1803,10,318-329-1216,W,M,R,225,6/30/2012,7/1/2008,Sheriff Toney +Clerk of Court ,,P. O. Box 1862,,Monroe,LA,71210-1862,318-327-1444,OUACHITA,"""Bill"" Hodge",P. O. Box 1862,,Monroe,LA,71210-1862,10,318-325-1565,W,M,D,230,6/30/2012,7/1/2008,Mr. Hodge +Assessor ,,P.O. Box 1127,,Monroe,LA,71210,318-327-1300,OUACHITA,"""Rich"" Bailey",134 Marty Ln.,,West Monroe,LA,71291,5,318-396-8943,W,M,R,235,12/31/2012,1/1/2009,Mr. Bailey +Coroner ,,"1300 N. 7th Street, Suite G",,West Monroe,LA,71291,318-327-1362,OUACHITA,Teri O'Neal,101 Jason Dr.,,West Monroe,LA,71291,5,318-388-3674,W,F,R,240,3/25/2012,3/24/2008,Mr. O'Neal +Police Juror,District A,P. O. Box 3007,,Monroe,LA,71210-3007,318-327-1340,OUACHITA,"Charles E. Jackson, III",121 Lafayette Cir.,,West Monroe,LA,71291,5,318-397-1153,W,M,R,245,1/8/2012,1/14/2008,Mr. Jackson +Police Juror ,District B ,P. O. Box 3007,,Monroe,LA,71210-3007,318-327-1340,OUACHITA,"""Mack"" Calhoun",854 Red Cut Rd.,,West Monroe,LA,71292,5,318-387-2659,W,M,R,245,1/8/2012,1/14/2008,Mr. Calhoun +Police Juror ,District C ,P. O. Box 3007,,Monroe,LA,71210-3007,318-327-1340,OUACHITA,"Walter M. ""Walt"" Caldwell, IV",104 Madelyn Pl.,,West Monroe,LA,71291,5,318-397-2684,W,M,R,245,1/8/2012,1/14/2008,Mr. Cladwell +Police Juror ,District D ,P. O. Box 3007,,Monroe,LA,71210-3007,318-327-1340,OUACHITA,Ollibeth Reddix,1629 Richwood Rd #1,,Monroe,LA,71202,5,318-267-8274,B,F,D,245,1/8/2012,10/27/2009,Ms. Reddix +Police Juror ,District E ,P. O. Box 3007,,Monroe,LA,71210-3007,318-327-1340,OUACHITA,Shane Smiley,3602 Deborah Dr.,,Monroe,LA,71201,5,318-267-8659,W,M,R,245,1/8/2012,1/14/2008,Mr. Smiley +Police Juror ,District F ,P. O. Box 3007,,Monroe,LA,71210-3007,318-327-1340,OUACHITA,Pat Moore,2306 Ticheli Rd.,,Monroe,LA,71202,5,318-325-5951,B,F,D,245,1/8/2012,1/14/2008,Ms. Moore +City Judge ,"City Court, City of West Monroe ",2303 N. Seventh St.,,West Monroe,LA,71291,318-396-2767,OUACHITA,"""Jim"" Norris",500 Island Dr.,,West Monroe,LA,71291,5,318-323-1124,W,M,D,250,12/31/2014,1/1/2009,Judge Norris +City Judge ,"City Court, Division A, City of Monroe ",P. O. Box 777,,Monroe,LA,71210,318-329-2580,OUACHITA,Tammy D. Lee,1206 Walton Ln.,,Monroe,LA,71202,5,318-322-2848,B,F,D,250,12/31/2014,1/1/2009,Judge Lee +City Judge ,"City Court, Division B, City of Monroe ",P. O. Box 777,,Monroe,LA,71210,318-329-2580,OUACHITA,"""Fred"" Amman",3309 Stowers Dr.,,Monroe,LA,71201,5,318-325-4878,W,M,D,250,12/31/2014,1/1/2009,Judge Amman +City Judge ,"City Court, Division C, City of Monroe ",P. O. Box 777,,Monroe,LA,71210,318-329-2580,OUACHITA,Larry D. Jefferson,6511 Cypress Point Dr.,,Monroe,LA,71203,5,318-343-1877,B,M,D,250,12/31/2014,1/1/2009,Judge Jefferson +City Marshal ,"City Court, City of Monroe ",P. O. Box 777,,Monroe,LA,71210,318-329-2532,OUACHITA,"Wince Highshaw, Jr.",4704 Bon Aire Dr.,,Monroe,LA,71203,5,318-343-6393,B,M,D,250,12/31/2014,1/1/2009,Marshal Highshaw +City Marshal ,"City Court, City of West Monroe ",2303 N. Seventh St.,,West Monroe,LA,71291,318-396-8192,OUACHITA,William M. Guyton,2425 North 9th St.,,West Monroe,LA,71291,5,318-396-4058,W,M,D,250,12/31/2014,1/1/2009,Marshal Guyton +Member of School Board ,"District 1, City of Monroe ",P. O. Box 4180,,Monroe,LA,71211-4180,318-325-0601,OUACHITA,Vickie Dayton,4113 Woodway Dr.,,Monroe,LA,71201,5,318-329-9320,W,F,R,255,12/31/2010,1/1/2007,Ms. Dayton +Member of School Board ,"District 2, City of Monroe ",P. O. Box 4180,,Monroe,LA,71211-4180,318-325-0601,OUACHITA,Vickie Krutzer,3018 River Oaks Dr.,,Monroe,LA,71201,5,318-388-1686,W,F,D,255,12/31/2010,1/1/2007,Ms. Krutzer +Member of School Board ,"District 3, City of Monroe ",P. O. Box 4180,,Monroe,LA,71211-4180,318-325-0601,OUACHITA,Mickey Traweek,2507 Brierfield Dr.,,Monroe,LA,71201,5,318-388-0596,W,M,R,255,12/31/2010,1/1/2007,Mr. Traweek +Member of School Board ,"District 4, City of Monroe ",P. O. Box 4180,,Monroe,LA,71211-4180,318-325-0601,OUACHITA,Jessie L. Handy,3015 Owl St.,,Monroe,LA,71201,5,318-387-0445,B,M,D,255,12/31/2010,1/1/2007,Mr. Handy +Member of School Board ,"District 5, City of Monroe ",P. O. Box 4180,,Monroe,LA,71211-4180,318-325-0601,OUACHITA,"Rodney McFarland, Sr.",1017 Ouachita Ave.,,Monroe,LA,71201,5,318-323-0163,B,M,D,255,12/31/2010,1/1/2007,Mr. McFarland +Member of School Board ,"District 6, City of Monroe ",P. O. Box 4180,,Monroe,LA,71211-4180,318-325-0601,OUACHITA,Stephine Shoulders Smith,2003 S. 6th St.,,Monroe,LA,71202-5132,10,318-361-9295,B,F,D,255,12/31/2010,1/1/2007,Ms. Smith +Member of School Board ,"District 7, City of Monroe ",P.O. Box 4180,,Monroe,LA,71211-4180,318-325-0601,OUACHITA,Brenda Shelling,140 King Oak Dr.,,Monroe,LA,71202,5,318-323-9150,B,F,D,255,12/31/2010,1/1/2007,Ms. Shelling +Member of School Board ,District A ,100 Bry St.,,Monroe,LA,71201,318-388-2711,OUACHITA,Jack White,412 Maridale Dr.,,,LA,71291,5,318-322-9837,W,M,D,255,12/31/2010,1/1/2007,Mr. White +Member of School Board ,District B ,100 Bry St.,,Monroe,LA,71201,318-388-2711,OUACHITA,Scott Robinson,805 Avant Rd.,,West Monroe,LA,71291,5,318-397-9953,W,M,R,255,12/31/2010,1/1/2007,Mr. Robinson +Member of School Board ,District C ,100 Bry St.,,Monroe,LA,71201,318-388-2711,OUACHITA,"A. R. ""Red"" Sims",339 Marion Sims Rd.,,West Monroe,LA,71292,5,318-322-4696,W,M,D,255,12/31/2010,1/1/2007,Mr. Sims +Member of School Board ,District D ,100 Bry St.,,Monroe,LA,71201,318-388-2711,OUACHITA,Jerry R. Hicks,351 Kendalwood Rd.,,West Monroe,LA,71291,5,318-396-7118,W,M,D,255,12/31/2010,1/1/2007,Mr. Hicks +Member of School Board ,District E ,100 Bry St.,,Monroe,LA,71201,318-388-2711,OUACHITA,John L. Russell,3615 Reddix Ln.,,Monroe,LA,71202,5,318-387-1667,B,M,D,255,12/31/2010,1/1/2007,Mr. Russell +Member of School Board ,District F ,100 Bry St.,,Monroe,LA,71201,318-388-2711,OUACHITA,Carey Walker,58 Quail Ridge Dr.,,Monroe,LA,71203,5,318-343-7272,W,M,R,255,12/31/2010,1/1/2007,Mr. Walker +Member of School Board ,District G ,100 Bry St.,,Monroe,LA,71201,318-388-2711,OUACHITA,Susan Bolton Spence,683 Keystone Rd.,,Monroe,LA,71203,5,318-665-2422,W,F,R,255,12/31/2010,10/30/2007,Ms. Spence +Justice of the Peace ,Justice of the Peace Ward 1 ,16 Audubon Dr.,,Monroe,LA,71203-2703,318-343-2723,OUACHITA,Lynnette Vining,348 Cypress Knee Dr.,,Monroe,LA,71203,5,318-503-4391,W,F,R,265,12/31/2014,10/27/2009,Ms. Vining +Justice of the Peace ,Justice of the Peace Ward 2 ,26 Quail Ridge Dr.,,Monroe,LA,71203,318-343-5685,OUACHITA,"""Tommy"" Brunt",26 Quailridge Dr.,,Monroe,LA,71203,5,318-343-5685,W,M,R,265,12/31/2014,1/1/2009,Mr. Brunt +Justice of the Peace ,Justice of the Peace Ward 6 ,643 Hwy.837,,Calhoun,LA,71225,318-644-2688,OUACHITA,Dorothy Heacock,643 Hwy. 837,,Calhoun,LA,71225,5,318-644-2688,W,F,,265,12/31/2014,1/1/2009,Ms. Heacock +Justice of the Peace ,Justice of the Peace Ward 7 ,3638 Caples Rd.,,West Monroe,LA,71292,318-396-2457,OUACHITA,Helen Roberts Johnston,3638 Caples Rd.,,West Monroe,LA,71292,5,318-396-2457,W,F,R,265,12/31/2014,1/1/2009,Ms. Johnston +Justice of the Peace ,Justice of the Peace Ward 8 ,100 Mockingbird Ln.,,West Monroe,LA,71292,318-323-5646,OUACHITA,"James E. ""Jim"" Nolan",100 Mockingbird Ln.,,West Monroe,LA,71292,5,318-323-5646,W,M,R,265,12/31/2014,1/1/2009,Mr. Nolan +Justice of the Peace ,Justice of the Peace Ward 9 ,1532 Cyress School Rd.,,West Monroe,LA,71292,318-387-5517,OUACHITA,"""Benny"" Owens",1532 Cypress School Rd.,,West Monroe,LA,71292,5,318-387-5517,W,M,R,265,12/31/2014,1/1/2009,Mr. Owens +Constable ,Justice of the Peace Ward 1 ,178 Saterfield Rd.,,Fairbanks,LA,71240,318-665-2347,OUACHITA,Gerald R. York,P.O. Box 249,,Fairbanks,LA,71240,5,318-665-2347,W,M,R,267,12/31/2014,1/1/2009,Mr. York +Constable ,Justice of the Peace Ward 2 ,2547 Stubbs Vinson Rd.,,Monroe,LA,71203,318-343-0895,OUACHITA,"Dewey R. Allen, Sr.",350 Springhill Rd.,,Monroe,LA,71203,5,318-343-4955,W,M,R,267,12/31/2014,1/1/2009,Mr. Allen +Constable ,Justice of the Peace Ward 6 ,P.O. Box 81,,Calhoun,LA,71255,318-644-2250,OUACHITA,Bobby Joe Graves,1623 Griggs Rd.,,Calhoun,LA,71225,5,318-644-2375,W,M,R,267,12/31/2014,10/27/2009,Mr. Graves +Constable ,Justice of the Peace Ward 7 ,3638 Caples Rd.,,West Monroe,LA,71292,318-396-2457,OUACHITA,Charles H. Johnston,3638 Caples Rd.,,West Monroe,LA,71292,5,318-396-2457,W,M,R,267,12/31/2014,1/1/2009,Mr. Johnston +Constable ,Justice of the Peace Ward 8 ,375 Caples Rd.,,West Monroe,LA,71292,318-398-0400,OUACHITA,"""Greg"" Sims",375 Caples Rd.,,West Monroe,LA,71292,5,318-398-0400,W,M,R,267,12/31/2014,1/1/2009,Mr. Sims +Constable ,Justice of the Peace Ward 9 ,222 Owens Rd.,,West Monroe,LA,71292,318-388-4506,OUACHITA,"""Benji"" Owens, ",222 Owens Rd.,,West Monroe,LA,71292-1349,10,318-388-4506,W,M,R,267,,2/15/2010, +Mayor ,City of Monroe ,P. O. Box 123,,Monroe,LA,,318-329-2252,OUACHITA,Jamie Mayo,318 King Oaks Dr.,,Monroe,LA,71202,5,318-325-7387,B,M,D,300,7/2/2012,7/7/2008,Mr. Mayo +Mayor ,City of West Monroe ,2305 N. Seventh St.,,West Monroe,LA,,318-396-2600,OUACHITA,Dave Norris,1514 Woodland,,West Monroe,LA,71291,5,318-396-4451,W,M,D,300,6/30/2010,7/1/2006,Mayor Norris +Mayor ,City of West Monroe ,2305 N. Seventh St.,,West Monroe,LA,,318-396-2600,OUACHITA,"Dave Norris, ",1514 Woodland,,West Monroe,LA,71291-7116,10,318-396-4451,W,M,D,300,,, +Mayor ,Town of Richwood ,5130 Brown Rd.,,Richwood,LA,,318-322-2104,OUACHITA,Simeon Profit,5130 Brown Rd.,,Richwood,LA,71202-7004,10,,,,,300,,10/22/2009,Mayor Profit +Mayor ,Town of Sterlington ,503 Hwy 2,,Sterlington,LA,,318-665-2157,OUACHITA,Vern Breland,P.O. Box 88,,Sterlington,LA,71280,5,318-450-2707,W,M,R,300,12/31/2010,1/1/2007,Mayor Breland +Chief of Police ,Town of Sterlington ,P. O. Box 1000,,Sterlington,LA,71280,318-665-2157,OUACHITA,Barry Bonner,P.O. Box 1184,,Sterlington,LA,71280,5,318-665-0524,W,M,R,305,12/31/2010,1/1/2007,Chief Bonner +Alderman ,City of West Monroe ,2305 N. Seventh St.,,West Monroe,LA,71291-5299,318-396-2600,OUACHITA,"James ""Sonny"" Bennett",3000 N. 12th St.,,West Monroe,LA,71291,5,318-396-0119,W,M,D,310,6/30/2010,7/1/2006,Mr. Bennett +Alderman ,City of West Monroe ,2305 N. Seventh St.,,West Monroe,LA,71291-5299,318-396-2600,OUACHITA,"James ""Polk"" Brian",110 Wilhite,,West Monroe,LA,71291,5,318-397-5865,W,M,D,310,6/30/2010,7/1/2006,Mr. Brian +Alderman ,City of West Monroe ,2305 N. Seventh St.,,West Monroe,LA,71291-5299,318-396-2600,OUACHITA,Alice Pearson,408 Ferndale Ave.,,West Monroe,LA,71291,5,318-322-5854,W,F,D,310,6/30/2010,7/1/2006,Ms. Pearson +Alderman ,City of West Monroe ,2305 N. Seventh St.,,West Monroe,LA,71291-5299,318-396-2600,OUACHITA,"Fred Ragland, Jr.",304 Marie St.,,West Monroe,LA,71291,5,318-323-3572,W,M,,310,6/30/2010,7/1/2006,Mr. Ragland +Alderman ,City of West Monroe ,2305 N. Seventh St.,,West Monroe,LA,71291-5299,318-396-2600,OUACHITA,"L. O. ""Sam"" Yeager",1003 Parkwood St.,,West Monroe,LA,71291,5,318-396-1527,W,M,D,310,6/30/2010,7/1/2006,Mr. Yeager +Alderman ,Town of Richwood ,5130 Brown Rd.,,Richwood,LA,71202-7004,318-322-2104,OUACHITA,Lavern Hester,5110 Highland St.,,Richwood,LA,71202,5,318-323-2652,B,M,D,310,6/30/2012,7/1/2008,Mr. Hester +Alderman ,Town of Richwood ,5130 Brown Rd.,,Richwood,LA,71202-7004,318-322-2104,OUACHITA,Alvin Jackson,2939 Lynn Dr.,,Monroe,LA,71202,5,318-387-1239,B,M,D,310,6/30/2012,7/1/2008,Mr. Jackson +Alderman ,Town of Richwood ,5130 Brown Rd.,,Richwood,LA,71202-7004,318-322-2104,OUACHITA,Leo Kelly,5500 Highland Rd.,,Richwood,LA,71202,5,318-388-8802,B,M,D,310,6/30/2012,7/1/2008,Mr. Kelly +Alderman ,Town of Richwood ,5130 Brown Rd.,,Richwood,LA,71202-7004,318-322-2104,OUACHITA,Leola Goins Keys,5019 Brown Rd.,,Richwood,LA,71202,5,318-323-7738,B,F,D,310,6/30/2012,7/1/2008,Ms. Keys +Alderman ,Town of Richwood ,5130 Brown Rd.,,Richwood,LA,71202-7004,318-322-2104,OUACHITA,"Lavenia McKinley, ",5130 Brown Rd.,,Richwood,LA,71202-7004,10,318-388-6819,,,,310,,11/19/2009,Ms. McKinley +Alderman ,Town of Sterlington ,P. O. Box 1000,,Sterlington,LA,71280,318-665-2157,OUACHITA,Clifford Bullock,P.O. Box 908,,,LA,71280,5,318-665-2778,W,M,D,310,12/31/2010,1/1/2007,Mr. Bullock +Alderman ,Town of Sterlington ,P. O. Box 1000,,Sterlington,LA,71280,318-665-2157,OUACHITA,Bonnie Dilmore,P.O. Box 77,,,LA,71280,5,318-665-2571,W,F,,310,12/31/2010,1/1/2007,Ms. Dilmore +Alderman ,Town of Sterlington ,P. O. Box 1000,,Sterlington,LA,71280,318-665-2157,OUACHITA,Ronald A. Hill,620 Bayou Dr.,,,LA,71280,5,318-665-9810,W,M,R,310,12/31/2010,1/1/2007,Mr. Hill +Alderman ,Town of Sterlington ,P. O. Box 1000,,Sterlington,LA,71280,318-665-2157,OUACHITA,Caesar Velasquez,P.O. Box 37,,Sterlington,LA,71280,5,318-665-9168,W,M,R,310,12/31/2010,4/14/2009,Mr. Velasquez +Alderman ,Town of Sterlington ,P. O. Box 1000,,Sterlington,LA,71280,318-665-2157,OUACHITA,Ladd Williams,P.O. Box 490,,Sterlington,LA,71280,5,318-665-4551,W,M,D,310,12/31/2010,1/1/2007,Mr. Williams +Councilman ,"District 1, City of Monroe ",P. O. Box 123,,Monroe,LA,71210,318-329-2252,OUACHITA,"""Jay"" Marx",2602 Point Dr.,,Monroe,LA,71201,5,318-323-7521,W,M,D,310,7/2/2012,7/7/2008,Mr. Marx +Councilman ,"District 2, City of Monroe ",P. O. Box 123,,Monroe,LA,71210,318-329-2252,OUACHITA,"Gretchen H. Ezernack, ",2109 Redwood Dr.,,Monroe,LA,71201,5,318-325-7648,,,,310,,1/21/2010,Ms. Ezernack +Councilman ,"District 3, City of Monroe ",P. O. Box 123,,Monroe,LA,71210,318-329-2252,OUACHITA,"Arthur Gilmore, Jr.",4100 Grammont St.,,Monroe,LA,71203,5,318-345-3557,B,M,D,310,7/2/2012,7/7/2008,Mr. Gilmore +Councilman ,"District 4, City of Monroe ",P. O. Box 123,,Monroe,LA,71210,318-329-2252,OUACHITA,"Robert ""Red"" Stevens",1410 S. Sixth St.,,Monroe,LA,71202,5,318-388-3339,B,M,D,310,7/2/2012,7/7/2008,Mr. Stevens +Councilman ,"District 5, City of Monroe ",P. O. Box 123,,Monroe,LA,71210,318-329-2252,OUACHITA,Eddie M. Clark,582 Buckhorn Bend Loop Rd.,,Monroe,LA,71202,5,225-279-1100,B,M,D,310,7/2/2012,5/12/2009,Mr. Clark +DPEC Member ,at Large ,,,,LA,,,PLAQUEMINES,"Amos Cormier, III",106 Woodchase Dr.,,Port Sulphur,LA,70037,5,504-394-0568,W,M,D,54,2/20/2012,2/20/2008,Mr. Cormier +DPEC Member ,at Large ,,,,LA,,,PLAQUEMINES,Alicia Gravolet,P.O. Box 281,,Belle Chasse,LA,70037,5,504-394-0937,W,F,D,54,2/20/2012,2/20/2008,Ms. Gravolet +DPEC Member ,at Large ,,,,LA,,,PLAQUEMINES,Herman Gravolet,P.O. Box 261,,Belle Chasse,LA,70037,5,504-450-1651,W,M,D,54,2/20/2012,2/20/2008,Mr. Gravolet +DPEC Member ,District 1 ,,,,LA,,,PLAQUEMINES,,,,,,,0,,,,,56,,, +DPEC Member ,District 2 ,,,,LA,,,PLAQUEMINES,,,,,,,0,,,,,56,,, +DPEC Member ,District 3 ,,,,LA,,,PLAQUEMINES,,,,,,,0,,,,,56,,, +DPEC Member ,District 4 ,,,,LA,,,PLAQUEMINES,Mack Cormier,106 Highland Ave.,,Belle Chasse,LA,70037,5,504-920-0169,W,M,D,56,2/20/2012,2/20/2008,Mr. Cormier +DPEC Member ,District 5 ,,,,LA,,,PLAQUEMINES,,,,,,,0,,,,,56,,, +DPEC Member ,District 6 ,,,,LA,,,PLAQUEMINES,,,,,,,0,,,,,56,,, +DPEC Member ,District 7 ,,,,LA,,,PLAQUEMINES,"E. W. ""Duffy"" LaVigne",28784 Hwy. 23,,Port Sulphur,LA,70083,5,985-564-0283,W,M,D,56,2/20/2012,2/20/2008,Mr. LaVigne +DPEC Member ,District 8 ,,,,LA,,,PLAQUEMINES,,,,,,,0,,,,,56,,, +DPEC Member ,District 9 ,,,,LA,,,PLAQUEMINES,,,,,,,0,,,,,56,,, +RPEC Member ,at Large ,,,,LA,,,PLAQUEMINES,Eric Lundin,102 Royal Oaks Ct.,,Belle Chasse,LA,70037,5,504-392-8221,W,M,R,64,2/20/2012,2/20/2008,Mr. Lundin +RPEC Member ,at Large ,,,,LA,,,PLAQUEMINES,"""Mike"" Mariana",112-A Live Oak Dr.,,Belle Chasse,LA,70037,5,504-394-8749,W,M,R,64,2/20/2012,2/20/2008,Mr. Mariana +RPEC Member ,District 1 ,,,,LA,,,PLAQUEMINES,,,,,,,0,,,,,66,,, +RPEC Member ,District 2 ,,,,LA,,,PLAQUEMINES,Thomas Craine,107 Theta St.,,Belle Chasse,LA,70037,5,504-391-2979,W,M,R,66,2/20/2012,2/20/2008,Mr. Craine +RPEC Member ,District 3 ,,,,LA,,,PLAQUEMINES,"Harold L. ""Rocky"" Asevedo",433 Oak Tree Rd.,,Belle Chasse,LA,70037,5,504-392-0038,W,M,R,66,2/20/2012,2/20/2008,Mr. Asevedo +RPEC Member ,District 4 ,,,,LA,,,PLAQUEMINES,Nelson Chaisson,108 Gondrella Dr.,,Belle Chasse,LA,70037,5,504-433-2929,W,M,R,66,2/20/2012,2/20/2008,Mr. Chaisson +RPEC Member ,District 5 ,,,,LA,,,PLAQUEMINES,,,,,,,0,,,,,66,,, +RPEC Member ,District 6 ,,,,LA,,,PLAQUEMINES,,,,,,,0,,,,,66,,, +RPEC Member ,District 7 ,,,,LA,,,PLAQUEMINES,,,,,,,0,,,,,66,,, +RPEC Member ,District 8 ,,,,LA,,,PLAQUEMINES,,,,,,,0,,,,,66,,, +RPEC Member ,District 9 ,,,,LA,,,PLAQUEMINES,,,,,,,0,,,,,66,,, +Sheriff ,,P. O. Box 99,,Pointe-a-la-Hache,LA,70082,504-333-4401,PLAQUEMINES,"I. F. ""Jiff"" Hingle",302 Main St.,,Belle Chasse,LA,70037,5,504-297-5425,W,M,R,225,6/30/2012,7/1/2008,Sheriff Hingle +Clerk of Court ,,P. O. Box 40,,Belle Chasse,LA,70037,504-297-5180,PLAQUEMINES,Dorothy Marvin Lundin,P. O. Box 40,,Belle Chasse,LA,70037,5,504-392-8221,W,F,R,230,6/30/2012,7/1/2008,Ms. Lundin +Assessor ,,P.O. Box 7129,,Belle Chasse,LA,70037,504-297-5256,PLAQUEMINES,"Robert R. ""Bobby"" Gravolet",108 Cambridge Dr.,,Belle Chasse,LA,70037,5,504-394-2606,W,M,D,235,12/31/2012,1/1/2009,Mr. Gravolet +Coroner ,,P.O. Box 345,,Port Sulphur,LA,70083,504-398-1100,PLAQUEMINES,Lawrence A. Giambelluca,8200 Hwy. 233,,Belle Chasse,LA,70037,5,504-398-1100,W,M,D,240,3/25/2012,3/24/2008,Mr. Giambelluca +Parish President ,,P.O. Box 61,,Pointe-a-la-Hache,LA,70082,985-333-4287,PLAQUEMINES,"""Billy"" Nungesser",P.O. Box 743,,Balle Chasse,LA,70037,5,504-433-1200,W,M,R,243,12/31/2010,1/1/2007,Mr. Nungesser +Member of Parish Council ,District 1 ,P. O. Box 61,,Pointe-a-la-Hache,LA,,985-333-4287,PLAQUEMINES,Don Beshel,8603 Hwy. 39,,Braithwaite,LA,70040,5,504-682-8004,W,M,R,245,12/31/2010,1/1/2007,Mr. Beshel +Member of Parish Council ,District 2 ,P. O. Box 61,,Pointe-a-la-Hache,LA,70082,985-333-4287,PLAQUEMINES,Keith Hinkley,112 Liberty St.,,Belle Chasse,LA,70037,5,504-394-6328,W,M,R,245,12/31/2010,1/1/2007,Mr. Hinkley +Member of Parish Council ,District 3 ,P. O. Box 61,,Pointe-a-la-Hache,LA,70082,985-333-4287,PLAQUEMINES,Jerry Hodnett,413 Schlief Dr.,,Belle Chasse,LA,70037,5,504-394-3699,W,M,R,245,12/31/2010,1/1/2007,Mr. Hodnett +Member of Parish Council ,District 4 ,P. O. Box 61,,Pointe-a-la-Hache,LA,70082,985-333-4287,PLAQUEMINES,"Stuart J. Guey, Jr.",136 Magnolia Dr.,,Belle Chasse,LA,70037,5,504-394-2441,W,M,R,245,12/31/2010,10/14/2008,Mr. Guey +Member of Parish Council ,District 5 ,P. O. Box 61,,Pointe-a-la-Hache,LA,70082,985-333-4287,PLAQUEMINES,"Anthony L. Buras, Jr.",13158 Hwy. 23,,Belle Chasse,LA,70037,5,504-656-0003,W,M,R,245,12/31/2010,1/1/2007,Mr. Buras +Member of Parish Council ,District 6 ,P. O. Box 61,,Pointe-a-la-Hache,LA,70082,985-333-4287,PLAQUEMINES,Burghart H. Turner,P.O. Box 137,,Port Sulphur,LA,70083,5,504-912-1050,B,M,D,245,12/31/2010,1/1/2007,Mr. Turner +Member of Parish Council ,District 7 ,P. O. Box 61,,Pointe-a-la-Hache,LA,70082,985-333-4287,PLAQUEMINES,"John ""Jay"" Friedman",P.O. Box 105,,Buras,LA,70041,5,504-416-3280,W,M,D,245,12/31/2010,1/1/2007,Mr. Friedman +Member of Parish Council ,District 8 ,P. O. Box 61,,Pointe-a-la-Hache,LA,70082,985-333-4287,PLAQUEMINES,Lynda G. Banta,35600 Hwy. 11,,Buras,LA,70041,5,504-421-4670,W,F,D,245,12/31/2010,1/1/2007,Ms. Banta +Member of Parish Council ,District 9 ,P. O. Box 61,,Pointe-a-la-Hache,LA,70082,985-333-4287,PLAQUEMINES,Marla Fisher Cooper,42941 Hwy. 23,,Venice,LA,70091,5,985-534-1447,W,F,D,245,12/31/2010,1/1/2007,Ms. Cooper +Member of School Board ,District 1 ,P. O. Box 69,,Belle Chasse,LA,70037,504-392-4970,PLAQUEMINES,"Michael Wade Jiles, Sr.",2895 English Turn Rd.,,Braithwaite,LA,70040,5,504-682-8639,B,M,D,255,12/31/2010,10/30/2007,Mr. Jiles +Member of School Board ,District 2 ,P. O. Box 69,,Belle Chasse,LA,70037,504-392-4970,PLAQUEMINES,Nancy LaHaye,108 Louise St.,,Belle Chasse,LA,70037,5,504-392-2644,W,F,D,255,12/31/2010,1/1/2007,Ms. LaHaye +Member of School Board ,District 3 ,P. O. Box 69,,Belle Chasse,LA,70037,504-392-4970,PLAQUEMINES,"Anthony ""Tony"" St. Philip",422 Dr. Gorman Dr.,,Belle Chasse,LA,70037,5,504-393-2309,W,M,R,255,12/31/2010,1/1/2007,Mr. St. Philip +Member of School Board ,District 4 ,P. O. Box 69,,Belle Chasse,LA,70037,504-392-4970,PLAQUEMINES,Joyce C. Lamkin,105 Ft. Jackson St.,,Belle Chasse,LA,70037,5,504-392-1995,W,F,D,255,12/31/2010,1/1/2007,Ms. Lamkin +Member of School Board ,District 5 ,P. O. Box 69,,Belle Chasse,LA,70037,504-392-4970,PLAQUEMINES,Sharon Branan,11781 Hwy. 23,,Belle Chasse,LA,70037,5,504-656-7270,W,F,D,255,12/31/2010,1/1/2007,Ms. Branan +Member of School Board ,District 6 ,P. O. Box 69,,Belle Chasse,LA,70037,504-392-4970,PLAQUEMINES,"Carlton M. LaFrance, Sr.",24562 Diamond Rd.,,Port Sulphur,LA,70083,5,504-281-5353,B,M,D,255,12/31/2010,1/1/2007,Mr. LaFrance +Member of School Board ,District 7 ,P. O. Box 69,,Belle Chasse,LA,70037,504-392-4970,PLAQUEMINES,Paul Lemaire,P.O. Box 226,,Port Sulphur,LA,70083,5,504-912-8562,W,M,D,255,12/31/2010,1/1/2007,MR. Lemaire +Member of School Board ,District 8 ,P. O. Box 69,,Belle Chasse,LA,70037,504-392-4970,PLAQUEMINES,Helen E. Barrois,119 Nu St.,,Belle Chasse,LA,70037,5,504-214-3839,W,F,R,255,12/31/2010,1/1/2007,Ms. Barrois +Member of School Board ,District 9 ,P. O. Box 69,,Belle Chasse,LA,70037,504-392-4970,PLAQUEMINES,William F. Mertz,39506 Boothville River Rd.,,Buras,LA,70041,5,985-534-1152,W,M,R,255,12/31/2010,1/1/2007,Mr. Mertz +Justice of the Peace ,Justice of the Peace Ward 1 ,3295 English Turn Rd.,,Braithwaite,LA,70040,504-682-5159,PLAQUEMINES,Mary Seibert,3295 English Turn Rd.,,Braithwaite,LA,70040,5,504-682-5159,W,F,D,265,12/31/2014,1/1/2009,Ms. Seibert +Justice of the Peace ,Justice of the Peace Ward 2 ,12925 Hwy.15,,Phoenix,LA,70040,985-333-4232,PLAQUEMINES,"Herbert Williams, Jr.",12925 Hwy. 15,,Phoenix,LA,70040,5,504-874-0300,B,M,D,265,12/31/2014,1/1/2009,Mr. Williams +Justice of the Peace ,Justice of the Peace Ward 3 ,P.O. Box 162,,Pointe-a-la-Hache,LA,70082,985-333-4161,PLAQUEMINES,Chadwick J. Encalade,P.O. Box 162,,Pointe-ala-Hache,LA,70082,5,504-491-7688,B,M,D,265,12/31/2014,1/1/2009,Mr. Encalade +Justice of the Peace ,Justice of the Peace Ward 4 ,23 Pilottown Ln.,,Pilottown,LA,70081,985-657-2539,PLAQUEMINES,"Davey Lee Naquin, Jr.",104 New Orleans St.,,Belle Chasse,LA,70037,5,,,,,265,,6/1/2009,Mr. Naquin +Justice of the Peace ,Justice of the Peace Ward 5 ,P.O. Box 173,,Boothville,LA,70038,985-534-9076,PLAQUEMINES,"Robert ""Hot Rod"" Kruithof",P.O. Box 486,,Boothville,LA,70038,5,504-915-1957,W,M,O,265,12/31/2014,1/1/2009,Mr. Kruithof +Justice of the Peace ,Justice of the Peace Ward 6 ,509 Dr.Gorman Dr.,,Belle Chasse,LA,70037,504-392-4045,PLAQUEMINES,"Davey L. Naquin, Jr.",509 Dr. Gorman Dr.,,Belle Chasse,LA,70037,5,504-392-4045,W,M,R,265,12/31/2014,1/1/2009,Mr. Naquin +Justice of the Peace ,Justice of the Peace Ward 7 ,281 Rocky Rd.,,Belle Chasse,LA,70037,504-656-0054,PLAQUEMINES,"Paul C. Macaluso, Jr.",281 Rocky Rd.,,Belle Chasse,LA,70037,5,504-656-7157,W,M,R,265,12/31/2014,1/1/2009,Mr. Macaluso +Justice of the Peace ,Justice of the Peace Ward 8 ,P.O.Box 650,,Port Sulphur,LA,70083,985-564-3604,PLAQUEMINES,"Lorne L. ""Boo"" Landry",P.O. Box 650,,Port Sulphur,LA,70083,5,504-564-1901,B,M,D,265,12/31/2014,1/1/2009,Mr. Landry +Justice of the Peace ,Justice of the Peace Ward 9 ,144 Holiday Dr.,,Port Sulphur,LA,70083,504-392-6690,PLAQUEMINES,Mary Lou Everage,P.O. Box 726,,Port Sulphur,LA,70083,5,504-564-0706,W,F,D,265,12/31/2014,1/1/2009,Ms. Everage +Justice of the Peace ,Justice of the Peace Ward 10 ,35161 Hwy. 11,,Buras,LA,70041,985-657-6252,PLAQUEMINES,"""Chuck"" Soileau",31108 Hwy. 23,,Buras,LA,70041,5,504-382-1519,W,M,R,265,12/31/2014,1/1/2009,Mr. Soileau +Constable ,Justice of the Peace Ward 1 ,5655 Hwy. 39,,Braithwaite,LA,70040,504-682-7471,PLAQUEMINES,Eugene White,5655 Hwy. 39,,Braithwaite,LA,70040,5,504-682-7471,W,M,D,267,12/31/2014,1/1/2009,Mr. White +Constable ,Justice of the Peace Ward 2 ,P.O. Box 1466,,Braithwaite,LA,70040,985-333-9373,PLAQUEMINES,Hilry Thomas,P.O. Box 1273,,Braithwaite,LA,70040,5,504-329-4519,B,M,D,267,12/31/2014,1/1/2009,Mr. Thomas +Constable ,Justice of the Peace Ward 3 ,P.O. Box 162,,Pointe-a-la-Haiche,LA,70082,985-333-4161,PLAQUEMINES,Byron L. Encalade,P.O. Box 219,,Pointe-ala-Hache,LA,70082,5,504-236-1527,B,M,D,267,12/31/2014,1/1/2009,Mr. Enclade +Constable ,Justice of the Peace Ward 4 ,23 Pilottown Ln.,,Pilottown,LA,70081,985-657-2539,PLAQUEMINES,Charles C. Gerkin,412 Good News Dr.,,Belle Chasse,LA,70037,5,504-715-4640,W,M,D,267,12/31/2014,1/1/2009,Mr. Gerkin +Constable ,Justice of the Peace Ward 5 ,P.O. Box 261,,Boothville,LA,70038,985-534-7515,PLAQUEMINES,Bobbie Gaubert-Holland,P.O. Box 261,,Boothville,LA,70038,5,504-228-9192,W,F,D,267,12/31/2014,1/1/2009,Ms. Gaubert-Holland +Constable ,Justice of the Peace Ward 6 ,509 Dr. Gorman Dr.,,Belle Chasse,LA,70037,506-392-4045,PLAQUEMINES,"Debra C. ""Debbie"" Naquin",509 Dr. Gorman Dr.,,Belle Chasse,LA,70037,5,504-392-4045,W,F,R,267,12/31/2014,1/1/2009,Ms. Naquin +Constable ,Justice of the Peace Ward 7 ,172 Rue Acadian,,Belle Chasse,LA,70037,504-656-2217,PLAQUEMINES,David L. Freeman,172 Rue Acadian,,Belle Chasse,LA,70037,5,504-656-2217,W,M,R,267,12/31/2014,1/1/2009,Mr. Freeman +Constable ,Justice of the Peace Ward 8 ,P.O. Box 650,,Port Sulphur,LA,70083,985-564-3604,PLAQUEMINES,"Andria ""Pal"" Barthelemy",P.O. Box 650,,Port Sulphur,LA,70083,5,504-289-1208,B,F,D,267,12/31/2014,1/1/2009,Ms. Barthelemy +Constable ,Justice of the Peace Ward 9 ,P.O. Box 183,,Port Sulphur,LA,70083,985-564-3541,PLAQUEMINES,Mary Jo Hebert,28763 Hwy. 23,,Port Sulphur,LA,70083,5,504-564-2356,W,F,D,267,12/31/2014,1/1/2009,Ms. Hebert +Constable ,Justice of the Peace Ward 10 ,125 Ave. C,,Buras,LA,70041,985-657-8033,PLAQUEMINES,Martha Sue Callais Cook,125 Avenue C,,Buras,LA,70041,5,504-657-8033,W,F,D,267,12/31/2014,1/1/2009,Ms. Cook +DPEC Member ,at Large ,,,,LA,,,POINTE COUPEE,,,,,,,0,,,,,54,,, +DPEC Member ,District 1 ,,,,LA,,,POINTE COUPEE,,,,,,,0,,,,,56,,, +DPEC Member ,District 2 ,,,,LA,,,POINTE COUPEE,,,,,,,0,,,,,56,,, +DPEC Member ,District 3 ,,,,LA,,,POINTE COUPEE,,,,,,,0,,,,,56,,, +DPEC Member ,District 4 ,,,,LA,,,POINTE COUPEE,,,,,,,0,,,,,56,,, +DPEC Member ,District 5 ,,,,LA,,,POINTE COUPEE,,,,,,,0,,,,,56,,, +DPEC Member ,District 6 ,,,,LA,,,POINTE COUPEE,,,,,,,0,,,,,56,,, +DPEC Member ,District 7 ,,,,LA,,,POINTE COUPEE,J. Roosevelt Gremillion,8677 St. Jospeh St.,,New Roads,LA,70760,5,225-618-0221,B,M,D,56,2/20/2012,2/20/2008,Mr. Gremillion +DPEC Member ,District 8 ,,,,LA,,,POINTE COUPEE,,,,,,,0,,,,,56,,, +DPEC Member ,District 9 ,,,,LA,,,POINTE COUPEE,,,,,,,0,,,,,56,,, +DPEC Member ,District 10 ,,,,LA,,,POINTE COUPEE,,,,,,,0,,,,,56,,, +DPEC Member ,District 11 ,,,,LA,,,POINTE COUPEE,,,,,,,0,,,,,56,,, +DPEC Member ,District 12 ,,,,LA,,,POINTE COUPEE,,,,,,,0,,,,,56,,, +RPEC Member ,at Large ,,,,LA,,,POINTE COUPEE,,,,,,,0,,,,,64,,, +RPEC Member ,District 1 ,,,,LA,,,POINTE COUPEE,,,,,,,0,,,,,66,,, +RPEC Member ,District 2 ,,,,LA,,,POINTE COUPEE,,,,,,,0,,,,,66,,, +RPEC Member ,District 3 ,,,,LA,,,POINTE COUPEE,,,,,,,0,,,,,66,,, +RPEC Member ,District 4 ,,,,LA,,,POINTE COUPEE,,,,,,,0,,,,,66,,, +RPEC Member ,District 5 ,,,,LA,,,POINTE COUPEE,,,,,,,0,,,,,66,,, +RPEC Member ,District 6 ,,,,LA,,,POINTE COUPEE,Madeleine Caillet,6249 False River Rd.,,Oscar,LA,70762,5,225-627-4175,W,F,R,66,2/20/2012,2/20/2008,Ms. Caillet +RPEC Member ,District 7 ,,,,LA,,,POINTE COUPEE,,,,,,,0,,,,,66,,, +RPEC Member ,District 8 ,,,,LA,,,POINTE COUPEE,,,,,,,0,,,,,66,,, +RPEC Member ,District 9 ,,,,LA,,,POINTE COUPEE,,,,,,,0,,,,,66,,, +RPEC Member ,District 10 ,,,,LA,,,POINTE COUPEE,,,,,,,0,,,,,66,,, +RPEC Member ,District 11 ,,,,LA,,,POINTE COUPEE,,,,,,,0,,,,,66,,, +RPEC Member ,District 12 ,,,,LA,,,POINTE COUPEE,,,,,,,0,,,,,66,,, +Sheriff ,,P. O. Box 248,,New Roads,LA,70760,225-638-5400,POINTE COUPEE,"Beauregard ""Bud"" Torres, III",P.O. Box 248,,New Roads,LA,70760,5,225-625-3312,W,M,D,225,6/30/2012,7/1/2008,Sheriff Torres +Clerk of Court ,,P. O. Box 86,,New Roads,LA,70760,225-638-9596,POINTE COUPEE,Lanell Swindler Landry,P.O. Box 86,,New Roads,LA,70760,5,225-694-8551,W,F,D,230,6/30/2012,7/1/2008,Ms. Landry +Assessor ,,211 E. Main St. Ste. 4,,New Roads,LA,70760,225-638-7077,POINTE COUPEE,"James A. ""Jimmy"" Laurent, Jr.",9638 False River Rd.,,New Roads,LA,70760,5,225-638-4061,W,M,D,235,12/31/2012,12/18/2009,Mr. Laurent +Coroner ,,P.O. Box 40,,New Roads,LA,70760,225-718-2807,POINTE COUPEE,Harry J. Kellerman,2417 False River Dr.,,New Roads,LA,70760,5,225-638-7348,W,M,D,240,3/25/2012,3/24/2008,Mr. Kellerman +Police Juror,District 1,P. O. Box 290,,New Roads,LA,70760,225-638-9556,POINTE COUPEE,Allen S. Monk,P.O. Box 285,,Batchelor,LA,70715,5,225-492-3704,W,M,D,245,1/8/2012,1/14/2008,Mr. Monk +Police Juror ,District 2 ,P. O. Box 290,,New Roads,LA,70760,225-638-9556,POINTE COUPEE,"John ""Sassy"" Pourciau",3768 La. Hwy. 419 W.,,Batchelor,LA,70715,5,225-492-2701,W,M,D,245,1/8/2012,1/14/2008,Mr. Pourciau +Police Juror ,District 3 ,P. O. Box 290,,New Roads,LA,70760,225-638-9556,POINTE COUPEE,Russell Joseph Young,9005 Mandela Dr.,,New Roads,LA,70760,5,225-638-3941,B,M,D,245,1/8/2012,1/14/2008,Mr. Young +Police Juror ,District 4 ,P. O. Box 290,,New Roads,LA,70760,225-638-9556,POINTE COUPEE,Glenn Ray Cline,14110 Chenal Rd.,,Jarreau,LA,70749,5,225-627-9511,W,M,D,245,1/8/2012,1/14/2008,Mr. Cline +Police Juror ,District 5 ,P. O. Box 290,,New Roads,LA,70760,225-638-9556,POINTE COUPEE,"Willard ""Willie"" Olinde, Jr.",P.O. Box 256,,Ventress,LA,70783,5,225-638-8726,W,M,D,245,1/8/2012,1/14/2008,Mr. Olinde +Police Juror ,District 6 ,P. O. Box 290,,New Roads,LA,70760,225-638-9556,POINTE COUPEE,"Melanie ""Miss Mel"" Bueche",11850 Hwy. 416,,Lakeland,LA,70752,5,225-627-4055,W,F,R,245,1/8/2012,1/14/2008,Ms. Bueche +Police Juror ,District 7 ,P. O. Box 290,,New Roads,LA,70760,225-638-9556,POINTE COUPEE,"Albert ""Dewey"" Dukes",8979 Rodney Dr.,,New Roads,LA,70760,5,225-638-3383,B,M,D,245,1/8/2012,1/14/2008,Mr. Dukes +Police Juror ,District 8 ,P. O. Box 290,,New Roads,LA,70760,225-638-9556,POINTE COUPEE,Cornell T. Dukes,309 Rail Road St.,,New Roads,LA,70760,5,225-638-8778,B,M,D,245,1/8/2012,1/14/2008,Mr. Dukes +Police Juror ,District 9 ,P. O. Box 290,,New Roads,LA,70760,225-638-9556,POINTE COUPEE,Janet P. Vosburg,9431 False River Rd.,,New Roads,LA,70760,5,225-638-8328,W,F,D,245,1/8/2012,1/14/2008,Mr. Vosburg +Police Juror ,District 10 ,P. O. Box 290,,New Roads,LA,70760,225-638-9556,POINTE COUPEE,Kurt J. Jarreau,P.O. Box 383,,Livonia,LA,70755,5,225-637-2540,W,M,D,245,1/8/2012,1/14/2008,Mr. Jarreau +Police Juror ,District 11 ,P. O. Box 290,,New Roads,LA,70760,225-638-9556,POINTE COUPEE,"Joseph ""Bozo"" Bergeron",P. O. Box 90,,Fordoche,LA,70732,5,225-637-3486,W,M,D,245,1/8/2012,1/14/2008,Mr. Bergeron +Police Juror ,District 12 ,P. O. Box 290,,New Roads,LA,70760,225-638-9556,POINTE COUPEE,"Clifford ""Ted"" Nelson",P.O. Box 336,,Ventress,LA,70783,5,225-638-3589,B,M,D,245,1/8/2012,1/14/2008,Mr. Nelson +Member of School Board ,District A ,P. O. Drawer 579,,New Roads,LA,70760,225-638-8674,POINTE COUPEE,Debbie Collins,13315 Third St.,,Batchelor,LA,70715,5,225-492-2446,B,F,D,255,12/31/2010,1/1/2007,Ms. Collins +Member of School Board ,District B ,P. O. Drawer 579,,New Roads,LA,70760,225-638-8674,POINTE COUPEE,Brandon Bergeron,13209 Bayou Fordoche Rd.,,Morganza,LA,70759,5,225-694-2626,W,M,R,255,12/31/2010,1/1/2007,Mr. Bergeron +Member of School Board ,District C ,P. O. Drawer 579,,New Roads,LA,70760,225-638-8674,POINTE COUPEE,"""Tom"" Nelson",9353 Saizon Rd.,,New Roads,LA,70760,5,225-638-6823,B,M,D,255,12/31/2010,1/1/2007,Mr. Nelson +Member of School Board ,District D ,P. O. Drawer 579,,New Roads,LA,70760,225-638-8674,POINTE COUPEE,Chad A. Aguillard,14163 Patin Dyke Rd.,,Ventress,LA,70783,5,225-638-9571,B,M,D,255,12/31/2010,1/1/2007,Mr. Aguillard +Member of School Board ,District E ,P. O. Drawer 579,,New Roads,LA,70760,225-638-8674,POINTE COUPEE,"Frank R. ""Frankie"" Aguillard, Jr.",10664 Island Rd.,,Ventress,LA,70783,5,225-638-6705,W,M,D,255,12/31/2010,1/1/2007,Mr. Aguillard +Member of School Board ,District F ,P. O. Drawer 579,,New Roads,LA,70760,225-638-8674,POINTE COUPEE,Anita LeJeune,3987 Wye Rd.,,Lakeland,LA,70752,5,225-627-6912,W,F,D,255,12/31/2010,2/23/2009,Ms. LeJeune +Member of School Board ,District G ,P. O. Drawer 579,,New Roads,LA,70760,225-638-8674,POINTE COUPEE,Kevin Hotard,9368 False River Rd.,,New Roads,LA,70760,5,225-638-7575,W,M,R,255,12/31/2010,1/1/2007,Mr. Hotard +Member of School Board ,District H ,P. O. Drawer 579,,New Roads,LA,70760,225-638-8674,POINTE COUPEE,"James ""Bado"" Cline",P.O. Box 781,,Livonia,LA,70755,5,225-637-4930,W,M,D,255,12/31/2010,1/1/2007,Mr. Cline +Justice of the Peace ,Justice of the Peace District 1 ,P.O. Box 1,,Lettsworth,LA,70753,225-492-2445,POINTE COUPEE,"Charles ""Chuck"" Lemoine",20236 La. Hwy. 417,,Lettsworth,LA,70753,5,225-718-3893,W,M,O,265,12/31/2014,1/1/2009,Mr. Lemoine +Justice of the Peace ,Justice of the Peace District 2 ,P.O. Box 9,,Batchelor,LA,70715,225-492-2020,POINTE COUPEE,Sharon Carroll Hebert,P.O. Box 9,,Batchelor,LA,70715,5,225-492-2020,W,F,D,265,12/31/2014,1/1/2009,Ms. Hebert +Justice of the Peace ,Justice of the Peace District 3 ,8257 Hwy.1,,Morganza,LA,70759,225-694-2414,POINTE COUPEE,"George Molex, III",8257 Hwy. 1,,Morganza,LA,70759,5,225-694-2414,B,M,D,265,12/31/2014,1/1/2009,Mr. Molex +Justice of the Peace ,Justice of the Peace District 4 ,5278 Noah's Ln.,,Jarreau,LA,70749,225-627-6752,POINTE COUPEE,Stacie P. Myers,5278 Noah's Lane,,Jarreau,LA,70749,5,225-718-4567,W,F,D,265,12/31/2014,1/1/2009, +Justice of the Peace ,Justice of the Peace District 5 ,8011 Island Rd.,,Ventress,LA,70783,225-638-4326,POINTE COUPEE,Ida J. Chustz,8011 Island Rd.,,Ventress,LA,70783,5,225-638-4326,W,F,D,265,12/31/2014,1/1/2009,Ms. Chustz +Justice of the Peace ,Justice of the Peace District 6 ,3101 Oakland Rd.,,Lakeland,LA,70752,225-627-5414,POINTE COUPEE,Leona J. Jarreau,3101 Oakland Rd.,,Lakeland,LA,70752,5,225-627-5414,W,F,D,265,12/31/2014,1/1/2009,Ms. Jarreau +Justice of the Peace ,Justice of the Peace District 7 ,8677 St.Joseph St.,,New Roads,LA,70760,225-618-0221,POINTE COUPEE,J. Roosevelt Gremillion,8677 St. Joseph St.,,New Roads,LA,70760,5,225-618-0221,B,M,D,265,12/31/2014,1/1/2009,Mr. Gremillion +Justice of the Peace ,Justice of the Peace District 8 ,209 E.Fifth St.,,New Roads,LA,70760,225-638-7023,POINTE COUPEE,Claiborne Ashford,209 East 5th St.,,New Roads,LA,70760,5,225-638-7023,B,M,D,265,12/31/2014,1/1/2009,Mr. Ashford +Justice of the Peace ,Justice of the Peace District 9 ,P.O. Box 66,,New Roads,LA,70760,225-638-4892,POINTE COUPEE,J. Randy Guidroz,P.O. Box 66,,Ventress,LA,70783,5,225-638-4892,W,M,D,265,12/31/2014,1/1/2009,Mr. Guidroz +Justice of the Peace ,Justice of the Peace District 10 ,P.O. Box 234,,Livonia,LA,70755,225-637-2915,POINTE COUPEE,John H. Cline,P.O. Box 234,,Livonia,LA,70755,5,225-637-2915,W,M,D,265,12/31/2014,1/1/2009,Mr. Cline +Justice of the Peace ,Justice of the Peace District 11 ,P.O.Box 178,,Lottie,LA,70756,225-637-2787,POINTE COUPEE,Lillian L. Montgomery,P.O. Box 178,,Lottie,LA,70756,5,225-637-2787,W,F,D,265,12/31/2014,1/1/2009,Ms. Montgomery +Justice of the Peace ,Justice of the Peace District 12 ,1006 Singletary St.,,New Roads,LA,70760,225-638-6928,POINTE COUPEE,"Kevin ""Gizmo"" St. Cyr, Sr.",P.O. Box 41,,New Roads,LA,70760,5,225-638-3155,B,M,D,265,12/31/2014,1/1/2009,Mr. St. Cyr +Constable ,Justice of the Peace District 1 ,P.O. Box 15,,Lettsworth,LA,70753,225-492-2394,POINTE COUPEE,Matt Hartford,P.O. Box 15,,Lettsworth,LA,70753,5,225-492-2394,B,M,D,267,12/31/2014,1/1/2009,Mr. Hartford +Constable ,Justice of the Peace District 2 ,6212 Hwy. 1,,Batchelor,LA,70715,225-492-2390,POINTE COUPEE,"Charles ""Hop"" Hopkins",6212 Hwy. 1,,Batchelor,LA,70715,5,225-492-2390,W,M,D,267,12/31/2014,1/1/2009,Mr. Hopkins +Constable ,Justice of the Peace District 3 ,8775 Delta Place Rd.,,New Roads,LA,70760,225-638-6122,POINTE COUPEE,"Michael ""Mike"" Porche",8775 Delta Place Road,,New Roads,LA,70760,5,225-638-6122,B,M,D,267,12/31/2014,1/1/2009,Mr. Porche +Constable ,Justice of the Peace District 4 ,P.O. Box 131,,Jarreau,LA,70749,225-627-4868,POINTE COUPEE,Randy L. Pourciau,5982 Island Rd.,,Jarreau,LA,70749,5,225-627-4762,W,M,D,267,12/31/2014,1/1/2009,Mr. Pourciau +Constable ,Justice of the Peace District 5 ,P.O. Box 289,,Ventress,LA,70783,225-638-7133,POINTE COUPEE,"Joseph A. ""Boy"" Ballard",P.O. Box 289,,Ventress,LA,70783,5,225-638-7133,W,M,D,267,12/31/2014,1/1/2009,Mr. Ballard +Constable ,Justice of the Peace District 6 ,P.O. Box 114,,Oscar,LA,70762,225-627-5334,POINTE COUPEE,"Ronald A. ""Ron"" Pourciau",4871 Luther Robillard St.,,Livonia,LA,70755,5,225-637-3590,W,M,D,267,12/31/2014,1/11/2009,Mr. Pourciau +Constable ,Justice of the Peace District 7 ,P.O. Box 978,,New Roads,LA,70760,225-638-6400,POINTE COUPEE,Gloria J. Facione,P.O. Box 978,,New Roads,LA,70760,5,225-638-6250,B,F,D,267,12/31/2014,1/1/2009,Ms. Facione +Constable ,Justice of the Peace District 8 ,104 Park Ave.,,New Roads,LA,70760,225-638-8283,POINTE COUPEE,Elie J. Part,407 North Carolina Ave.,,New Roads,LA,70760,5,225-638-9241,W,M,D,267,12/31/2014,1/1/2009,Mr. Part +Constable ,Justice of the Peace District 9 ,435 Fairfield Ave.,,New Roads,LA,70760,225-638-9346,POINTE COUPEE,George Miller,406 Gretchen St.,,New Roads,LA,70760,5,225-638-5968,W,M,O,267,12/31/2014,1/1/2009,Mr. Miller +Constable ,Justice of the Peace District 10 ,P.O. Box 721,,Livonia,LA,70755,225-637-3913,POINTE COUPEE,"Christopher ""Scotty"" LeJeune",3611 Church St.,,Livionia,LA,70755,5,225-718-5209,W,M,D,267,12/31/2014,1/1/2009,Mr. LeJeune +Constable ,Justice of the Peace District 11 ,4300 Oak Dr.,,Fordoche,LA,70732,225-637-3722,POINTE COUPEE,Floyd J. Meche,4300 Oak Dr.,,Fordoche,LA,70732,5,225-247-1146,W,M,D,267,12/31/2014,1/1/2009,Mr. Meche +Constable ,Justice of the Peace District 12 ,302 Morningside St.,,New Roads,LA,70760,225-638-9622,POINTE COUPEE,Roger D. Dixon,302 Morningside St.,,New Roads,LA,70760,5,225-638-9622,B,M,D,267,12/31/2014,1/1/2009,Mr. Dixon +Mayor ,City of New Roads ,P. O. Box 280,,New Roads,LA,,225-638-5360,POINTE COUPEE,"""Tommy"" Nelson",P.O. Box 593,,New Roads,LA,70760,5,225-638-4540,B,M,D,300,12/31/2010,1/1/2007,Mr. Nelson +Mayor ,Town of Fordoche ,P. O. Box 10,,Fordoche,LA,,225-637-3112,POINTE COUPEE,Justin K. Cox,P.O. Box 269,,Fordoche,LA,70732,5,225-637-3201,W,M,D,300,12/31/2010,1/1/2007,Mr. Cox +Mayor ,Town of Livonia ,P. O. Box 307,,Livonia,LA,,225-637-2981,POINTE COUPEE,Troy Chustz,P.O. Box 313,,Livonia,LA,70755,5,225-637-3845,W,M,D,300,12/31/2012,1/1/2009,Mr. Chustz +Mayor ,Village of Morganza ,P. O. Box 66,,Morganza,LA,,225-694-3655,POINTE COUPEE,"S. J. ""Boobie"" Tuminello",P. O. Box 123,,Morganza,LA,70759,5,225-694-2268,W,M,D,300,12/31/2010,7/21/2008,Mr. Tuminello +Chief of Police ,Town of Fordoche ,P. O. Box 10,,Fordoche,LA,70732,225-637-3112,POINTE COUPEE,"""Fred"" Gueho, Jr.",P.O. Box 23,,Fordoche,LA,70737,5,225-637-2861,W,M,D,305,12/31/2010,1/1/2007,Mr. Guecho +Chief of Police ,Town of Livonia ,P. O. Box 307,,Livonia,LA,70755,225-637-2981,POINTE COUPEE,"""Brad"" E. Joffrion",P.O. Box 772,,Livonia,LA,70755,5,225-637-3755,W,M,D,305,12/31/2012,1/1/2009,Chief Joffrion +Council Member at Large ,City of New Roads ,P. O. Box 280,,New Roads,LA,70760,225-638-5360,POINTE COUPEE,Anthony Daisy,1112 St. Mary St.,,New Roads,LA,70760,5,225-638-9009,B,M,D,308,12/31/2010,1/1/2007, +Alderman ,Town of Fordoche ,P. O. Box 10,,Fordoche,LA,70732,225-637-3112,POINTE COUPEE,Teddy Gros,4435 Ammie Dr.,,Fordoche,LA,70732,5,225-637-3979,W,M,D,310,12/31/2010,1/1/2007,Mr. Gros +Alderman ,Town of Fordoche ,P. O. Box 10,,Fordoche,LA,70732,225-637-3112,POINTE COUPEE,Corey E. Gueho,P.O. Box 431,,Fordoche,LA,70732,5,225-637-2181,W,M,D,310,12/31/2010,1/1/2007,Mr. Gueho +Alderman ,Town of Fordoche ,P. O. Box 10,,Fordoche,LA,70732,225-637-3112,POINTE COUPEE,Randy St. Romain,P.O. Box 125,,Fordoche,LA,70732,5,225-637-3843,W,M,D,310,12/31/2010,1/1/2007,Mr. St. Romain +Alderman ,Town of Fordoche ,P. O. Box 10,,Fordoche,LA,70732,225-637-3112,POINTE COUPEE,Don Sonnier,P.O. Box 203,,Fordoche,LA,70732,5,225-637-4893,W,M,D,310,12/31/2010,1/1/2007,Mr. Sonnier +Alderman ,Town of Fordoche ,P. O. Box 10,,Fordoche,LA,70732,225-637-3112,POINTE COUPEE,"Scott ""Boner"" Wright",P.O. Box 275,,Fordoche,LA,70732,5,225-637-4923,W,M,D,310,12/31/2010,1/1/2007,Mr. Wright +Council Member ,"District 1, City of New Roads ",P. O. Box 280,,New Roads,LA,70760,225-638-5360,POINTE COUPEE,Vernell Davis,603 Rita St.,,New Roads,LA,70760,5,225-718-0371,B,M,D,310,12/31/2010,1/1/2007,Mr. Davis +Council Member ,"District 1, City of New Roads ",P. O. Box 280,,New Roads,LA,70760,225-638-5360,POINTE COUPEE,"Walter Warr, Jr.",P.O. Box 622,,New Roads,LA,70760,5,225-638-4778,B,M,D,310,12/31/2010,1/1/2007,Mr. Warr +Council Member ,"District 2, City of New Roads ",P. O. Box 280,,New Roads,LA,70760,225-638-5360,POINTE COUPEE,Kurt Kellerman,1705 False River Dr.,,New Roads,LA,70760,5,225-638-4435,W,M,D,310,12/31/2010,1/1/2007,Mr. Kellerman +Council Member ,"District 2, City of New Roads ",P. O. Box 280,,New Roads,LA,70760,225-638-5360,POINTE COUPEE,"Kirk ""Clipper"" White",602 Louisiana St.,,New Roads,LA,70760,5,225-638-3864,W,M,R,310,12/31/2010,1/1/2007,Mr. White +Council Member ,Town of Livonia ,P. O. Box 307,,Livonia,LA,70755,225-637-2981,POINTE COUPEE,"James ""Lil Buck"" Bergeron",P. O. Box 717,,Livonia,LA,70755,5,225-718-0271,W,M,D,310,12/31/2012,1/1/2009,Mr. Bergeron +Council Member ,Town of Livonia ,P. O. Box 307,,Livonia,LA,70755,225-637-2981,POINTE COUPEE,Keith Davidson,P. O. Box 471,,Livonia,LA,70755,5,225-637-2408,W,M,D,310,12/31/2012,1/1/2009,Mr. Davidson +Council Member ,Town of Livonia ,P. O. Box 307,,Livonia,LA,70755,225-637-2981,POINTE COUPEE,"John ""Terry"" Jarreau",P.O. Box 283,,Livonia,LA,70755,5,225-637-2001,W,M,D,310,12/31/2012,1/1/2009,Mr. Jarreau +Council Member ,Town of Livonia ,P. O. Box 307,,Livonia,LA,70755,225-637-2981,POINTE COUPEE,Barbara A. LeJeune,P. O. Box 282,,Livonia,LA,70755,5,225-637-2494,W,F,D,310,12/31/2012,1/1/2009,Ms. LeJeune +Council Member ,Town of Livonia ,P. O. Box 307,,Livonia,LA,70755,225-637-2981,POINTE COUPEE,"James ""Rhett"" Pourciau",P. O. Box 311,,Livonia,LA,70755,5,225-637-2866,W,M,D,310,12/31/2012,1/1/2009,Mr. Pourciau +Council Member ,Village of Morganza ,P. O. Box 66,,Morganza,LA,70759,225-694-3655,POINTE COUPEE,Carmella N. Guedry,P.O. Box 14,,Morganza,LA,70759,5,225-694-2218,W,F,D,310,12/31/2010,1/1/2007,Ms. Guedry +Council Member ,Village of Morganza ,P. O. Box 66,,Morganza,LA,70759,225-694-3655,POINTE COUPEE,"""Mitch"" Langlois",P.O. Box 312,,Morganza,LA,70759,5,225-694-2177,W,M,O,310,12/31/2010,1/1/2007,Mr. Langlois +Council Member ,Village of Morganza ,P. O. Box 66,,Morganza,LA,70759,225-694-3655,POINTE COUPEE,Stephanie A. Savoy,P. O. Box 407,,Morganza,LA,70759,5,225-694-2049,W,F,D,310,12/31/2010,10/14/2008,Ms. Savoy +DPEC Member ,at Large ,,,,LA,,,RAPIDES,"Richard E. ""Dick"" Lee",3204 Robert Dr.,,Pineville,LA,71360,5,318-473-8769,W,M,D,54,2/20/2012,2/20/2008,Mr. Lee +DPEC Member ,at Large ,,,,LA,,,RAPIDES,Rosia G. Metoyer,910 Papin St.,,Alexandria,LA,71302,5,318-443-2439,B,F,D,54,2/20/2012,2/20/2008,Ms. Metoyer +DPEC Member ,at Large ,,,,LA,,,RAPIDES,Helen W. Moore,3216 Skyline Dr.,,Pineville,LA,71360,5,318-448-4464,W,F,D,54,2/20/2012,2/20/2008,Ms. Moore +DPEC Member ,at Large ,,,,LA,,,RAPIDES,"Chris J. Roy, Sr.",2050 Marye St.,,Alexandria,LA,71301,5,318-443-8027,W,M,D,54,2/20/2012,2/20/2008,Mr. Roy +DPEC Member ,at Large ,,,,LA,,,RAPIDES,Mary L. Wardsworth,3223 Redwood Dr.,,Alexandria,LA,71301,5,318-448-4036,B,F,D,54,2/20/2012,2/20/2008,Ms. Wardsworth +DPEC Member ,District A ,,,,LA,,,RAPIDES,,,,,,,0,,,,,56,,, +DPEC Member ,District B ,,,,LA,,,RAPIDES,Lauren Saucier Hill,5601 Pinekraft Dr.,,Pineville,LA,71360,5,318-561-2631,W,F,D,56,2/20/2012,2/20/2008,Ms. Hill +DPEC Member ,District C ,,,,LA,,,RAPIDES,,,,,,,0,,,,,56,,, +DPEC Member ,District D ,,,,LA,,,RAPIDES,"Theodore Fountaine, III",509 Evangeline Ln.,,Alexandria,LA,71302,5,318-445-1998,B,M,D,56,2/20/2012,2/20/2008,Mr. Fountaine +DPEC Member ,District E ,,,,LA,,,RAPIDES,,,,,,,0,,,,,56,,, +DPEC Member ,District F ,,,,LA,,,RAPIDES,,,,,,,0,,,,,56,,, +DPEC Member ,District G ,,,,LA,,,RAPIDES,,,,,,,0,,,,,56,,, +DPEC Member ,District H ,,,,LA,,,RAPIDES,,,,,,,0,,,,,56,,, +DPEC Member ,District I ,,,,LA,,,RAPIDES,,,,,,,0,,,,,56,,, +RPEC Member ,at Large ,,,,LA,,,RAPIDES,John Bradas,1212 Lancaster Dr.,,Alexandria,LA,71303,5,318-445-1839,W,M,R,64,2/20/2012,2/20/2008,Mr. Bradas +RPEC Member ,at Large ,,,,LA,,,RAPIDES,Kim P. Knight,810 18th St.,,Alexandria,LA,71301,5,,,,,64,2/20/2012,2/20/2008,Ms. Knight +RPEC Member ,at Large ,,,,LA,,,RAPIDES,Carolyn F. Ledet,1617 Audubon Dr.,,Alexandria,LA,71301,5,318-484-2876,W,F,R,64,2/20/2012,2/20/2008,Ms. Ledet +RPEC Member ,at Large ,,,,LA,,,RAPIDES,Edan D. Moran,3210 Parkway Dr.,,Alexandria,LA,71301,5,318-473-1059,W,M,R,64,2/20/2012,2/20/2008,Mr. Moran +RPEC Member ,at Large ,,,,LA,,,RAPIDES,Wayne E. Ryan,6205 Bradford Dr.,,Alexandria,LA,71303,5,318-613-2202,W,M,R,64,2/20/2012,2/20/2008,Mr. Ryan +RPEC Member ,District A ,,,,LA,,,RAPIDES,"""Gena"" Gore",8940 Hwy. 71N,,Dry Prong,LA,71423,5,318-640-3811,W,F,R,66,2/20/2012,2/20/2008,Ms. Gore +RPEC Member ,District B ,,,,LA,,,RAPIDES,Robert C. Anderson,281 Stilley Rd.,,Pineville,LA,71360,5,,,,,66,2/20/2012,2/20/2008,Mr. Anderson +RPEC Member ,District C ,,,,LA,,,RAPIDES,"George Bennett, Jr.",P.O. Box 417,,Libuse,LA,71348,5,318-308-7287,W,M,R,66,2/20/2012,2/20/2008,Mr. Bennett +RPEC Member ,District D ,,,,LA,,,RAPIDES,Elizabeth Weber Levy,2022 Polk St.,,Alexandria,LA,71301-6341,10,318-445-3093,W,F,R,66,2/20/2012,2/20/2008,Ms. Levy +RPEC Member ,District E ,,,,LA,,,RAPIDES,Steve Mahoney,2451 Coulee Crossing,,Woodworth,LA,71485,5,,,,,66,,8/28/2009,Mr. Mahoney +RPEC Member ,District F ,,,,LA,,,RAPIDES,Cynthia M. Delaney,3911 Pecan Dr.,,Alexandria,LA,71302,5,,,,,66,2/20/2012,2/20/2008,Ms. Delaney +RPEC Member ,District G ,,,,LA,,,RAPIDES,"""Chuck"" Tosten",4202 Wellington Blvd.,,Alexandria,LA,71303-2828,10,318-442-1016,W,M,R,66,2/20/2012,2/20/2008,Mr. Tosten +RPEC Member ,District H ,,,,LA,,,RAPIDES,Timothy A. Holloway,5006 Laura St.,,Woodworth,LA,71485,5,,,,,66,2/20/2012,2/20/2008,Mr. Holloway +RPEC Member ,District I ,,,,LA,,,RAPIDES,Karen Kay Haymon,1809 Bush Ave.,,Alexandria,LA,71301,5,318-449-1108,W,F,R,66,2/20/2012,2/20/2008,Ms. Haymon +Sheriff ,,P. O. Box 1510,,Alexandria,LA,71309,318-473-6704,RAPIDES,"Charles F. ""Chuck"" Wagner, Jr.",P.O. Box 1510,,Alexandria,LA,71309,5,318-473-6700,W,M,D,225,6/30/2012,7/1/2008,Sheriff Wagner +Clerk of Court ,,P. O. Box 952,,Alexandria,LA,71309,318-473-8153,RAPIDES,Carolyn Jones Ryland,P. O. Box 952,,Alexandria,LA,71309,5,318-445-7365,W,F,D,230,6/30/2012,7/1/2008,Ms. Ryland +Assessor ,,P.O. Box 2002,,Alexandria,LA,71309,318-448-8511,RAPIDES,Ralph Gill,430 Belgard Bend,,Boyce,LA,71409,5,318-793-2666,W,M,D,235,12/31/2012,1/1/2009,Mr. Gill +Coroner ,,P.O. Box 747,,Alexandria,LA,71309,318-473-6831,RAPIDES,"Francis Marion Brian, Jr.",P. O. Box 747,,Alexandria,LA,71309,5,318-473-6831,W,M,R,240,3/25/2012,3/24/2008,Mr. Brian +Police Juror,District A,P. O. Box 1150,,Alexandria,LA,71309-1150,318-473-6660,RAPIDES,"John ""Buck"" Lincecum",6502 Springhill Rd.,,Ball,LA,71405,5,318-640-4344,W,M,D,245,1/8/2012,1/14/2008,Mr. Lincecum +Police Juror ,District B ,P. O. Box 1150,,Alexandria,LA,71309-1150,318-473-6660,RAPIDES,"""Joe"" Bishop",205 Greer St.,,Pineville,LA,71360,5,318-443-5690,W,M,D,245,1/8/2012,1/14/2008,Mr. Bishop +Police Juror ,District C ,P. O. Box 1150,,Alexandria,LA,71309-1150,318-473-6660,RAPIDES,Jamie L. Floyd,32 G. Ryder Rd.,,Deville,LA,71328,5,318-481-2657,W,M,R,245,1/8/2012,1/14/2008,Mr. Floyd +Police Juror ,District D ,P. O. Box 1150,,Alexandria,LA,71309-1150,318-473-6660,RAPIDES,"Theodore Fountaine, Jr.",509 Evangeline Ln.,,Alexandria,LA,71302,5,318-445-1998,B,M,D,245,1/8/2012,1/14/2008,Mr. Fountaine +Police Juror ,District E ,P. O. Box 1150,,Alexandria,LA,71309-1150,318-473-6660,RAPIDES,Richard Gerald Vanderlick,400 Gladys Dr.,,Alexandria,LA,71303,5,318-445-4378,W,M,R,245,1/8/2012,1/14/2008,Mr. Vanderlick +Police Juror ,District F ,P. O. Box 1150,,Alexandria,LA,71309-1150,318-473-6660,RAPIDES,"Oliver ""Ollie"" Overton",3809 Spencer St.,,Alexandria,LA,71302,5,318-484-3532,B,M,D,245,1/8/2012,10/14/2008,Mr. Overton +Police Juror ,District G ,P. O. Box 1150,,Alexandria,LA,71309-1150,318-473-6660,RAPIDES,"""Steve"" Coco",328 Windermere Blvd.,,Alexandria,LA,71303,5,318-487-0057,W,M,O,245,1/8/2012,1/14/2008,Mr. Coco +Police Juror ,District H ,P. O. Box 1150,,Alexandria,LA,71309-1150,318-473-6660,RAPIDES,Richard W. Billings,P.O. BOX 1150,,Alexandria,LA,71309-1150,10,318-748-4345,W,M,R,245,1/8/2012,1/14/2008,Mr. Billings +Police Juror ,District I ,P. O. Box 1150,,Alexandria,LA,71309-1150,318-473-6660,RAPIDES,"Scott Perry, Jr.",4324 England Dr.,,Alexandria,LA,71303,5,318-443-3630,B,M,D,245,1/8/2012,1/14/2008,Mr. Perry +City Judge ,"City Court, City of Alexandria ",P.O. Box 30,,Alexandria,LA,71309,318-449-5151,RAPIDES,"Richard E. Starling, Jr.",6206 Coty Dr.,,Alexandria,LA,71303,5,318-448-2469,W,M,D,250,12/31/2014,1/1/2009,Judge Starling +City Judge ,"City Court, City of Pineville ",P. O. Box 3671,,Pineville,LA,71361,318-449-5656,RAPIDES,Phillip Terrell,200 Northwood Dr.,,Pineville,LA,71360,5,318-641-8833,W,M,D,250,12/31/2014,1/1/2009,Judge Terrell +City Marshal ,"City Court, City of Alexandria ",P.O. Box 30,,Alexandria,LA,71309,318-449-5149,RAPIDES,James Byrd,5105 Robinson Dr.,,Alexandria,LA,71301,5,318-442-9986,B,M,D,250,12/31/2014,1/1/2009,Marshal Byrd +City Marshal ,"City Court, City of Pineville ",P.O. Box 3671,,Pineville,LA,71361,318-449-5657,RAPIDES,Larry W. Jeane,175 Northwood Dr.,,Pineville,LA,71360,5,318-641-0498,W,M,R,250,12/31/2014,1/1/2009,Marshal Jean +Member of School Board ,District A ,P. O. Box 1230,,Alexandria,LA,71309-1230,318-487-0888,RAPIDES,"Wilton Barrios, Jr.",P.O. Box 655,,Tioga,LA,71477,5,318-640-4274,W,M,R,255,12/31/2010,1/1/2007,Mr. Barrios +Member of School Board ,District B ,P. O. Box 1230,,Alexandria,LA,71309-1230,318-487-0888,RAPIDES,Steve Berry,110 Myrtlewood Dr.,,Pineville,LA,71360,5,318-448-8300,W,M,R,255,12/31/2010,1/1/2007,Mr. Berry +Member of School Board ,District C ,P. O. Box 1230,,Alexandria,LA,71309-1230,318-487-0888,RAPIDES,"""E. L."" Paulk",6750 Dogwood Dr.,,Pineville,LA,71360,5,318-466-3139,W,M,D,255,12/31/2010,1/1/2007,Mr. Paulk +Member of School Board ,District D ,P. O. Box 1230,,Alexandria,LA,71309-1230,318-487-0888,RAPIDES,Janet H. Dixon,2701 3rd St.,,Alexandria,LA,71302,5,318-709-1423,B,F,D,255,12/31/2010,10/14/2008,Ms. Dixon +Member of School Board ,District E ,P. O. Box 1230,,Alexandria,LA,71309-1230,318-487-0888,RAPIDES,Stephen Chapman,1135 Lake Dr.,,Woodworth,LA,71485,5,318-448-4382,W,M,R,255,12/31/2010,1/1/2007,Mr. Chapman +Member of School Board ,District F ,P. O. Box 1230,,Alexandria,LA,71309-1230,318-487-0888,RAPIDES,"John E. Allen, Jr.",1610 Van St.,,Alexandria,LA,71301,5,318-442-1036,B,M,D,255,12/31/2010,1/1/2007,Mr. Allen +Member of School Board ,District G ,P. O. Box 1230,,Alexandria,LA,71309-1230,318-487-0888,RAPIDES,Paul Dauzat,1220 Windsor Place,,Alexandria,LA,71301,5,318-443-3977,W,M,R,255,12/31/2010,1/1/2007,Mr. Dauzat +Member of School Board ,District H ,P. O. Box 1230,,Alexandria,LA,71309-1230,318-487-0888,RAPIDES,"""Al"" Davis",P.O. Box 137,,Elmer,LA,71424,5,318-659-4226,W,M,D,255,12/31/2010,1/1/2007,Mr. Davis +Member of School Board ,District I ,P. O. Box 1230,,Alexandria,LA,71309-1230,318-487-0888,RAPIDES,"""Pam"" Webb",1420 S. City Park,,Alexandria,LA,71301,5,318-443-1457,W,F,R,255,12/31/2010,1/1/2007,Ms. Webb +Justice of the Peace ,Justice of the Peace Ward 2 ,516 River Rd.,,Alexandria,LA,71302,318-563-4452,RAPIDES,"""Mike"" Herrin",699 Hwy. 457,,Lecompte,LA,71346,5,318-776-6469,W,M,D,265,12/31/2014,1/1/2009,Mr. Herrin +Justice of the Peace ,"Justice of the Peace Ward 3, 1st Just. Court",P.O. Box 45,,Cheneyville,LA,71325,318-279-2272,RAPIDES,Edward M. Beaver,P.O. Box 106,,Cheneyville,LA,71325,5,318-279-2415,W,M,R,265,12/31/2014,1/1/2009,Mr. Beaver +Justice of the Peace ,"Justice of the Peace Ward 3, 2nd Just. Court",,,,LA,,,RAPIDES,Kermit Bowman,P.O. Box 766,,Lecompte,LA,71346,5,318-776-5328,W,M,D,265,12/31/2014,1/1/2009,Mr. Bowman +Justice of the Peace ,"Justice of the Peace Ward 4, 1st Just. Court",P.O. Box 68,,Forest Hill,LA,71430,318-748-6784,RAPIDES,"""John"" Ethridge",P.O. Box 68,,Forest Hill,LA,71430,5,318-748-6784,W,M,D,265,12/31/2014,1/1/2009,Mr. Ethridge +Justice of the Peace ,"Justice of the Peace Ward 4, 2nd Just. Court",P.O.Box 277,,Glenmora,LA,71433,318-748-4582,RAPIDES,"Paula Brady, ",P.O. Box 277,,Glenmora,LA,71433,5,318-748-4582,W,F,D,265,12/31/2014,1/1/2009,Ms. Brady +Justice of the Peace ,"Justice of the Peace Ward 5, 1st Just. Court",157 Dixie Church Rd.,,Sieper,LA,71472,318-793-4815,RAPIDES,Carolyn N. Holt,157 Dixie Church Rd.,,Sieper,LA,71472,5,318-793-4815,W,,D,265,12/31/2014,1/1/2009,Ms. Holt +Justice of the Peace ,"Justice of the Peace Ward 5, 2nd Just. Court",36 Ed Miller Rd.,,Elmer,LA,71424,318-659-4357,RAPIDES,Margaruette H. Beard,36 Ed Miller Rd.,,Elmer,LA,71424,5,318-659-4357,W,F,D,265,12/31/2014,1/1/2009,Ms. Beard +Justice of the Peace ,Justice of the Peace Ward 6 ,93 Humble Church Rd.,,Glenmora,LA,71433,318-634-7425,RAPIDES,Darrell Rodriguez,93 Humble Church Rd.,,Glenmora,LA,71433,5,318-634-7425,W,M,D,265,12/31/2014,1/1/2009,Mr. Rodriguez +Justice of the Peace ,"Justice of the Peace Ward 7, 1st Just. Court",890 Hwy 8,,Lena,LA,71447,318-793-2586,RAPIDES,Raymond E. Cupples,890 Hwy. 8,,Lena,LA,71447,5,318-793-2586,,,O,265,12/31/2014,1/1/2009,Mr. Cupples +Justice of the Peace ,"Justice of the Peace Ward 7, 2nd Just. Court",4990 Hot Wells Rd.,,Boyce,LA,71409,318-793-9912,RAPIDES,Joe Keith Nichols,5230 Hwy. 121,,Boyce,LA,71409,5,318-793-8889,W,M,R,265,12/31/2014,1/1/2009,Mr. Nichols +Justice of the Peace ,Justice of the Peace Ward 8 ,536 N Bayou Rapides,,Alexandria,LA,71303,318-487-2077,RAPIDES,"Jennifer ""Jenni"" Peterman",536 N. Bayou Rapides Rd.,,Alexandria,LA,71303,5,318-487-2077,W,F,R,265,12/31/2014,1/1/2009, +Justice of the Peace ,Justice of the Peace Ward 10 ,6502 Springhill Rd.,,Pineville,LA,71360,318-640-4344,RAPIDES,Edwin Bonial,4221 Aspen Ct.,,Pineville,LA,71360,5,318-640-5073,W,M,R,265,12/31/2014,1/1/2009,Mr. Bonial +Justice of the Peace ,Justice of the Peace Ward 11 ,1006 Windy Dr.,,Pineville,LA,71360,318-473-9216,RAPIDES,"""Artie"" Cole",1006 Windy Dr.,,Pineville,LA,71360,5,318-473-9216,W,M,,265,12/31/2014,1/1/2009,Mr. Cole +Constable ,Justice of the Peace Ward 2 ,P.O. Box 189,,Woodworth,LA,71485,318-487-8548,RAPIDES,Charles R. Butler,P.O. Box 189,,Woodworth,LA,71485,5,318-487-8548,,,D,267,12/31/2014,1/1/2009,Mr. Butler +Constable ,"Justice of the Peace Ward 3, 1st Just. Court",179 Munson Rd.,,Cheneyville,LA,71325,318-279-2103,RAPIDES,John Buddie Guillory,177 Munson Rd.,,Cheneyville,LA,71325,5,318-481-8193,W,M,D,267,12/31/2014,1/1/2009,Mr. Guillory +Constable ,"Justice of the Peace Ward 3, 2nd Just. Court",P.O. Box 878,,Lecompte,LA,71346,318-776-0533,RAPIDES,Frank J. Spears,P.O. Box 878,,Lecompte,LA,71346,5,318-776-9960,W,M,D,267,12/31/2014,1/1/2009,Mr. Spears +Constable ,"Justice of the Peace Ward 4, 1st Just. Court",P.O. Box 308,,Forest Hill,LA,71430,318-748-6422,RAPIDES,"""Rob"" Hewitt",210 Butter Cemetary Rd.,,Forest Hill,LA,71430,5,318-451-9165,W,M,D,267,12/31/2014,10/27/2009,Mr. Hewitt +Constable ,"Justice of the Peace Ward 4, 2nd Just. Court",P.O. Box 1032,,Glenmore,LA,71433,318-748-4065,RAPIDES,"Matt A. Martin, III",P. O. Box 603,,Glenmora,LA,71433,5,318-792-5884,W,M,D,267,12/31/2014,10/27/2009,Mr. Martin +Constable ,"Justice of the Peace Ward 5, 1st Just. Court",410 Ian Johnson Rd.,,Sieper,LA,71472,318-793-8977,RAPIDES,Clyde W. George,410 Ian Johnson Rd.,,Sieper,LA,71472,5,318-793-8977,W,M,D,267,12/31/2014,1/1/2009,Mr. George +Constable ,"Justice of the Peace Ward 5, 2nd Just. Court",8444 Twin Bridges Rd.,,Elmer,LA,71424,318-659-4585,RAPIDES,Hershel Williamson,6382 Hwy. 112,,Glenmora,LA,71433,5,318-659-4987,,,D,267,12/31/2014,1/1/2009,Mr. Williamson +Constable ,Justice of the Peace Ward 6 ,117 Chester MC Rd.,,Pitkin,LA,70656,318-634-7184,RAPIDES,"""L. C."" Coker",117 Chester Mc Rd.,,Pitkin,LA,70656,5,318-634-7184,W,M,D,267,12/31/2014,1/1/2009,Mr. Coker +Constable ,"Justice of the Peace Ward 7, 1st Just. Court",1677 Lena-Flatwoods Rd.,,Lena,LA,71447,318-793-2996,RAPIDES,"Robert ""R.K."" Beebe",P.O. Box 311,,Boyce,LA,71409-0311 ,11,318-793-2996,W,M,D,267,12/31/2014,1/1/2009,Mr. Beebe +Constable ,"Justice of the Peace Ward 7, 2nd Just. Crt. ",335 Red Store Hill Rd.,,Boyce,LA,71409,318-793-2552,RAPIDES,Jason T. Beebe,15 Knight Rd.,,Lena,LA,71447,5,318-793-9358,W,M,O,267,12/31/2014,1/1/2009,Mr. Beebe +Constable ,Justice of the Peace Ward 8 ,8822 Hwy. 28 W.,,Alexandria,LA,71303,318-449-8509,RAPIDES,Vernon G. Mathews,8822 Hwy. 28 West,,Alexandria,LA,71303,5,318-449-8509,,,D,267,12/31/2014,1/1/2009,Mr. Mathews +Constable ,Justice of the Peace Ward 10 ,6502 Springhill Rd.,,Pineville,LA,71360,318-640-4344,RAPIDES,James E. Deslatte,1225 Oriole Ln.,,Ball,LA,71405,5,318-640-9265,W,M,D,267,12/31/2014,1/1/2009,Mr. Deslatte +Constable ,Justice of the Peace Ward 11 ,P.O. Box 493,,Deville,LA,71328,318-466-3542,RAPIDES,Hayden A. Paul,110 Reed Lawrence Rd.,,Deville,LA,71328,5,318-446-2241,W,M,D,267,12/31/2014,1/1/2009,Mr. Paul +Mayor ,City of Alexandria ,P. O. Box 71,,Alexandria,LA,,318-449-5047,RAPIDES,Jacques M. Roy,715 Kimball Ave.,,Alexandria,LA,71301,5,318-442-1622,W,M,D,300,12/6/2010,12/4/2006,Mayor Roy +Mayor ,City of Pineville ,P. O. Box 3820,,Pineville,LA,,318-449-5658,RAPIDES,Clarence R. Fields,103 North Bend,,Pineville,LA,71360,5,318-443-8429,B,M,D,300,6/30/2010,7/1/2006,Mayor Fields +Mayor ,City of Pineville ,P. O. Box 3820,,Pineville,LA,,318-449-5658,RAPIDES,"Clarence R. Fields, ",103 N. Bend Dr.,,Pineville,LA,71360,5,318-487-9429,B,M,D,300,,, +Mayor ,Town of Ball ,P. O. Box 800,,Ball,LA,,318-640-9604,RAPIDES,Roy Hebron,152 Dryden Ln.,,Ball,LA,71405,5,318-640-4697,W,M,D,300,12/31/2010,1/1/2007,Mayor Hebron +Mayor ,Town of Boyce ,P. O. Box 146,,Boyce,LA,,318-793-2175,RAPIDES,Donald W. Welch,P.O. Box 726,,Boyce,LA,71409,5,318-793-4342,W,M,D,300,12/31/2010,4/10/2007,Mayor Welch +Mayor ,Town of Cheneyville ,P. O. Box 322,,Cheneyville,LA,,318-279-2155,RAPIDES,"Reginald ""Reggie"" Allen",P.O. Box 471,,Cheneyville,LA,71325,5,318-359-2847,B,M,D,300,6/30/2013,7/1/2009,Mayor Allen +Mayor ,Town of Glenmora ,P. O. Box 265,,Glenmora,LA,,318-748-4885,RAPIDES,"Joe ""Coach"" Rivers",1633 7th Ave.,,Glenmora,LA,71433,5,318-748-6350,W,M,D,300,12/31/2010,1/1/2007,Mr. Rivers +Mayor ,Town of Lecompte ,P. O. Box 649,,Lecompte,LA,,318-776-5488,RAPIDES,"Gregory ""Greg"" Clark",P.O. Box 986,,Lecompte,LA,71346,5,318-776-5709,B,M,D,300,12/31/2010,5/15/2007,Mayor Clark +Mayor ,Town of Woodworth ,P.O. Box 228,,Woodworth,LA,,318-442-1198,RAPIDES,"David C. Butler, II",767 Robinson Bridge Rd.,,Woodworth,LA,71485,5,318-442-0659,W,M,R,300,12/31/2010,1/1/2007,Mayor Butler +Mayor ,Village of Forest Hill ,P. O. Box 309,,Forest Hill,LA,,318-748-6300,RAPIDES,Marcia F. Young,P.O. Box 126,,Forest Hill,LA,71430,5,318-748-6810,W,F,R,300,12/31/2010,1/1/2007,Mr. Young +Mayor ,Village of McNary ,P. O. Box 1197,,McNary,LA,,318-748-8264,RAPIDES,"Don Parker, II",P.O. Box 194,,McNary,LA,71433,5,318-748-6022,W,M,D,300,12/31/2010,1/1/2007,Mr. Parker +Chief of Police ,Town of Ball ,P. O. Box 800,,Ball,LA,71405,318-640-9604,RAPIDES,Jay L. Barber,42 Hammack Ln.,,Ball,LA,71405,5,318-640-1692,W,M,D,305,12/31/2010,7/21/2008,Chief Barber +Chief of Police ,Town of Boyce ,P. O. Box 146,,Boyce,LA,71409,318-793-2175,RAPIDES,Elvin Lee Wren,P.O. Box 606,,Boyce,LA,71409,5,318-447-0773,W,M,,305,12/31/2010,4/14/2009,Mr. wren +Chief of Police ,Town of Glenmora ,P. O. Box 265,,Glenmora,LA,71433,318-748-4885,RAPIDES,Bennie L. Coker,P.O. Box 1171,,Glenmora,LA,71433,5,318-748-4381,W,M,D,305,12/31/2010,1/1/2007,Mr. Coker +Chief of Police ,Village of Forest Hill ,P. O. Box 309,,Forest Hill,LA,71430,318-748-6300,RAPIDES,"Garland ""Bear"" Carroll",2133 10th St.,,Forest Hill,LA,71430,5,318-748-6422,W,M,,305,12/31/2010,1/1/2007,Mr. Carroll +Councilman at Large ,City of Alexandria ,P. O. Box 71,,Alexandria,LA,71309,318-449-5047,RAPIDES,Roosevelt L. Johnson,5714 Samuel St.,,Alexandria,LA,71302,5,318-448-3177,,,D,308,12/3/2012,12/1/2008,Mr. Johnson +Councilman at Large ,City of Alexandria ,P. O. Box 71,,Alexandria,LA,71309,318-449-5047,RAPIDES,Myron K. Lawson,6417 Taylor Oaks Ln.,,Alexandria,LA,71301,5,318-443-8913,B,M,D,308,12/6/2010,12/4/2006,Mr. Lawson +Alderman ,"Seat A, Town of Ball ",P. O. Box 800,,Ball,LA,71405,318-640-9604,RAPIDES,"Curtis ""Buster"" Robertson",420 Shanghai Rd.,,Ball,LA,71405,5,318-640-2846,W,M,R,310,12/31/2010,1/1/2007,Mr. Robertson +Alderman ,"Seat B, Town of Ball ",P. O. Box 800,,Ball,LA,71405,318-640-9604,RAPIDES,Willie Bishop,P.O. Box 463,,Ball,LA,71405,5,318-640-3357,W,F,D,310,12/31/2010,1/1/2007,Mr. Bishop +Alderman ,"Seat C, Town of Ball ",P. O. Box 800,,Ball,LA,71405,318-640-9604,RAPIDES,Jerry Giddings,P.O. Box 604,,Ball,LA,71405,5,318-640-1531,W,M,D,310,12/31/2010,1/1/2007,Mr. Giddings +Alderman ,"Seat D, Town of Ball ",P. O. Box 800,,Ball,LA,71405,318-640-9604,RAPIDES,Bryan Adams,506 Huckleberry Trace,,Ball,LA,71405,5,318-640-4429,W,M,D,310,12/31/2010,1/1/2007,Mr. Admas +Alderman ,"Seat E, Town of Ball ",P. O. Box 800,,Ball,LA,71405,318-640-9604,RAPIDES,"""Genny"" Poteet",6920 Monroe Hwy.,,Ball,LA,71405,5,318-640-8967,W,F,D,310,12/31/2010,1/1/2007,Ms. Poteet +Alderman ,Town of Boyce ,P. O. Box 146,,Boyce,LA,71409,318-793-2175,RAPIDES,"""E.C."" Bobb",P.O. Box 733,,Boyce,LA,71409,5,318-793-2699,B,M,D,310,12/31/2010,1/1/2007,Mr. Bobb +Alderman ,Town of Boyce ,P. O. Box 146,,Boyce,LA,71409,318-793-2175,RAPIDES,"""Randy"" Bond",P.O. Box 436,,Boyce,LA,71409,5,318-793-8857,W,M,D,310,12/31/2010,1/1/2007,Mr. Bond +Alderman ,Town of Boyce ,P. O. Box 146,,Boyce,LA,71409,318-793-2175,RAPIDES,Vivian R. Brossett,P.O. Box 358,,Boyce,LA,71409,5,318-793-5576,W,F,D,310,12/31/2010,1/1/2007,Mr. Brossett +Alderman ,Town of Boyce ,P. O. Box 146,,Boyce,LA,71409,318-793-2175,RAPIDES,Cathy D. Fisher,P.O. Box 801,,Boyce,LA,71409,5,318-793-9924,W,F,D,310,12/31/2010,1/1/2007,Ms. Fisher +Alderman ,Town of Boyce ,P. O. Box 146,,Boyce,LA,71409,318-793-2175,RAPIDES,Alma Scott Moore,P.O. Box 412,,Boyce,LA,71409,5,318-793-9106,B,F,D,310,12/31/2010,1/1/2007,Mr. Moore +Alderman ,Town of Cheneyville ,P. O. Box 322,,Cheneyville,LA,71325,318-279-2155,RAPIDES,Charles Wesley Allen,P.O. Box 492,,Cheneyville,LA,71325,5,318-279-2618,,,D,310,6/30/2013,7/1/2009,Mr. Allen +Alderman ,Town of Cheneyville ,P. O. Box 322,,Cheneyville,LA,71325,318-279-2155,RAPIDES,"""Mickey"" Allen",P.O. Box 24,,Cheneyville,LA,71325,5,318-201-5516,W,M,R,310,6/30/2013,7/1/2009,Mr. Allen +Alderman ,Town of Cheneyville ,P. O. Box 322,,Cheneyville,LA,71325,318-279-2155,RAPIDES,Charles L. Collins,P.O. Box 27,,Cheneyville,LA,71325,5,318-279-2422,B,M,R,310,6/30/2013,7/1/2009,Mr. Collins +Alderman ,Town of Cheneyville ,P. O. Box 322,,Cheneyville,LA,71325,318-279-2155,RAPIDES,Ollie Crittle,P.O. Box 113,,Cheneyville,LA,71325,5,318-279-2408,,,D,310,6/30/2013,7/1/2009,Mr. Crittle +Alderman ,Town of Cheneyville ,P. O. Box 322,,Cheneyville,LA,71325,318-279-2155,RAPIDES,Derrick Johnson,502 Klock St.,,Cheneyville,LA,71325,5,318-229-8947,B,M,D,310,6/30/2013,7/1/2009,Mr. Johnson +Alderman ,Town of Glenmora ,P. O. Box 265,,Glenmora,LA,71433,318-748-4885,RAPIDES,Malcolm L. English,P.O. Box 1693,,Glenmora,LA,71433,5,318-748-8264,W,M,D,310,12/31/2010,1/1/2007,Mr. English +Alderman ,Town of Glenmora ,P. O. Box 265,,Glenmora,LA,71433,318-748-4885,RAPIDES,Willie E. Moore,P.O. Box 149,,Glenmora,LA,71433,5,318-748-8490,B,M,D,310,12/31/2010,1/1/2007,Mr. Moore +Alderman ,Town of Glenmora ,P. O. Box 265,,Glenmora,LA,71433,318-748-4885,RAPIDES,Clyde Myers,P.O. Box 963,,Glenmora,LA,71433,5,318-748-4520,W,M,,310,12/31/2010,1/1/2007,Mr. Myers +Alderman ,Town of Glenmora ,P. O. Box 265,,Glenmora,LA,71433,318-748-4885,RAPIDES,"Howard Shaw, Jr.",P.O. Box 1048,,Glenmora,LA,71433,5,318-748-8814,B,M,D,310,12/31/2010,8/24/2009,Mr. Shaw +Alderman ,Town of Glenmora ,P. O. Box 265,,Glenmora,LA,71433,318-748-4885,RAPIDES,Mark Snyder,P.O. Box 852,,Glenmora,LA,71433,5,318-748-7919,W,M,R,310,12/31/2010,1/1/2007,Mr. Snyder +Alderman ,Town of Lecompte ,P. O. Box 649,,Lecompte,LA,71346,318-776-5488,RAPIDES,Virginia L. Bailey,P.O. Box 832,,Lecompte,LA,71346,5,318-776-9561,,,D,310,12/31/2010,1/1/2007,Ms. Bailey +Alderman ,Town of Lecompte ,P. O. Box 649,,Lecompte,LA,71346,318-776-5488,RAPIDES,Debbie Charlene Davis,P.O. Box 787,,Lecompte,LA,71346,5,318-776-5473,B,F,D,310,12/31/2010,1/1/2007,Ms. Davis +Alderman ,Town of Lecompte ,P. O. Box 649,,Lecompte,LA,71346,318-776-5488,RAPIDES,Melford Jones,P.O. Box 1007,,Lecompte,LA,71346,5,318-776-5038,,,D,310,12/31/2010,1/1/2007,Mr. Jones +Alderman ,Town of Lecompte ,P. O. Box 649,,Lecompte,LA,71346,318-776-5488,RAPIDES,Leroy Kirk,P.O. Box 404,,Lecompte,LA,71346,5,318-776-5184,B,M,D,310,12/31/2010,1/1/2007,Mr. Kirk +Alderman ,Town of Lecompte ,P. O. Box 649,,Lecompte,LA,71346,318-776-5488,RAPIDES,"""Teena"" Satcher",29 Hwy. 457,,Lecompte,LA,71346,5,318-776-5157,W,F,D,310,12/31/2010,1/1/2007,Ms. Satcher +Alderman ,Village of Forest Hill ,P. O. Box 309,,Forest Hill,LA,71430,318-748-6300,RAPIDES,Glenda Droddy Bordelon,116 Butter Cemetery Rd.,,Forest Hill,LA,71430,5,318-664-6807,W,F,D,310,12/31/2010,1/1/2007,Ms. Bordelon +Alderman ,Village of Forest Hill ,P. O. Box 309,,Forest Hill,LA,71430,318-748-6300,RAPIDES,Anna Cloud,P.O. Box 215,,Forest Hill,LA,71430,5,318-748-6696,W,F,D,310,12/31/2010,1/1/2007,Ms. Cloud +Alderman ,Village of Forest Hill ,P. O. Box 309,,Forest Hill,LA,71430,318-748-6300,RAPIDES,"Samuel O. ""Sam"" Echols",140 Earl Linzay Rd.,,Forest Hill,LA,71430,5,318-748-7380,W,M,R,310,12/31/2010,1/1/2007,Mr. Echols +Alderman ,Village of McNary ,P. O. Box 1197,,McNary,LA,71433,318-748-8264,RAPIDES,Barbara Billings,P.O. Box 984,,McNary,LA,71433,5,318-748-4045,W,F,D,310,12/31/2010,1/1/2007,Ms. Billings +Alderman ,Village of McNary ,P. O. Box 1197,,McNary,LA,71433,318-748-8264,RAPIDES,Billy E. Billings,P.O. Box 1103,,Glenmora,LA,71433,5,318-748-4679,W,M,D,310,12/31/2010,1/1/2007,Mr. Billings +Alderman ,Village of McNary ,P. O. Box 1197,,McNary,LA,71433,318-748-8264,RAPIDES,Billy Brian Goree,1521 5th Ave.,,Glenmora,LA,71433,5,318-447-7143,W,M,R,310,12/31/2010,1/1/2007,Mr. Goree +Council Member ,"District 1, City of Pineville ",P. O. Box 3820,,Pineville,LA,71361,318-449-5658,RAPIDES,Mary Bishop Galloway,400 Main St.,,Pineville,LA,71360,5,318-443-9786,W,F,D,310,6/30/2010,10/14/2008,Ms. Galloway +Council Member ,"District 1, City of Pineville ",P. O. Box 3820,,Pineville,LA,71361,318-449-5658,RAPIDES,"Mary Bishop Galloway, ",400 Main St.,,Pineville,LA,71360,5,318-443-9786,W,F,D,310,,, +Council Member ,"District 2, City of Pineville ",P. O. Box 3820,,Pineville,LA,71361,318-449-5658,RAPIDES,Kevin Dorn,116 Gordon St.,,Pineville,LA,71360,5,318-442-7853,B,M,D,310,6/30/2010,7/1/2006,Mr. Dorn +Council Member ,"District 3, City of Pineville ",P. O. Box 3820,,Pineville,LA,71361,318-449-5658,RAPIDES,Carol Jeukens VanMol,1813 Jewell St.,,Pineville,LA,71360,5,318-445-3352,W,F,R,310,6/30/2010,7/1/2006,Ms. VanMol +Council Member ,"District 3, City of Pineville ",P. O. Box 3820,,Pineville,LA,71361,318-449-5658,RAPIDES,"Carol Jeukens VanMol, ",1813 Jewell St.,,Pineville,LA,71360,5,318-445-3352,W,F,R,310,,, +Council Member ,"District 4, City of Pineville ",P. O. Box 3820,,Pineville,LA,71361,318-449-5658,RAPIDES,"Thomas ""Tom"" Bouchie",216 Iris Ln.,,Pineville,LA,71360,5,318-640-3009,W,M,R,310,6/30/2010,7/1/2006,Mr. Bouchie +Council Member ,"District 4, City of Pineville ",P. O. Box 3820,,Pineville,LA,71361,318-449-5658,RAPIDES,"Thomas ""Tom"" Bouchie, ",216 Iris Ln.,,Pineville,LA,71360,5,318-640-3009,W,M,R,310,,, +Council Member ,"District 5, City of Pineville ",P. O. Box 3820,,Pineville,LA,71361,318-449-5658,RAPIDES,Nathan Martin,107 Valley Dr.,,Pineville,LA,71360,5,318-641-0987,W,M,R,310,6/30/2010,7/1/2006,Mr. Martin +Council Member ,"District 5, City of Pineville ",P. O. Box 3820,,Pineville,LA,71361,318-449-5658,RAPIDES,"Nathan Martin, ",107 Valley Dr.,,Pineville,LA,71360,5,318-641-0987,W,M,N,310,,, +Council Member ,Town of Woodworth ,P.O. Box 228,,Woodworth,LA,71485,318-442-1198,RAPIDES,Richard A. Butler,778 Robinson Bridge Rd.,,Woodworth,LA,71485,5,318-487-8505,W,M,D,310,12/31/2010,1/1/2007,Mr. Butler +Council Member ,Town of Woodworth ,P.O. Box 228,,Woodworth,LA,71485,318-442-1198,RAPIDES,Jimmie S. Cranford,839 Robinson Bridge Rd.,,Woodworth,LA,71485,5,318-443-8013,W,M,R,310,12/31/2010,1/1/2007,Mr. Cranford +Council Member ,Town of Woodworth ,P.O. Box 228,,Woodworth,LA,71485,318-442-1198,RAPIDES,Michael Doiron,9224 Hwy. 165-S,,Woodworth,LA,71485,5,318-443-7151,W,M,R,310,12/31/2010,1/1/2007,Mr. Doiron +Council Member ,Town of Woodworth ,P.O. Box 228,,Woodworth,LA,71485,318-442-1198,RAPIDES,Gail B. Dunn,9268 Hwy. 165 S.,,Woodworth,LA,71485,5,318-443-0044,W,F,D,310,12/31/2010,1/1/2007,Ms. Dunn +Council Member ,Town of Woodworth ,P.O. Box 228,,Woodworth,LA,71485,318-442-1198,RAPIDES,"Charles ""Chuck"" Reich",100 Drummond Ln.,,Woodworth,LA,71485,5,318-473-9677,W,M,R,310,12/31/2010,1/1/2007,Mr. Reich +Councilman ,"District 1, City of Alexandria ",P. O. Box 71,,Alexandria,LA,71309,318-449-5047,RAPIDES,"Edward Larvadain, III",P.O. Box 47,,Alexandria,LA,71309-0047 ,12,318-484-9907,,M,D,310,12/3/2012,12/1/2008,Mr. Larvadain +Councilman ,"District 2, City of Alexandria ",P. O. Box 71,,Alexandria,LA,71309,318-449-5047,RAPIDES,Everett C. Hobbs,3911 Lisa St.,,Alexandria,LA,71302,5,318-445-3966,B,M,D,310,12/6/2010,12/4/2006,Mr. Hobbs +Councilman ,"District 3, City of Alexandria ",P. O. Box 71,,Alexandria,LA,71309,318-449-5047,RAPIDES,Jonathan D. Goins,P.O. Box 24,,Alexandria,LA,71309,5,318-393-3388,B,M,D,310,12/3/2012,12/1/2008,Mr. Goins +Councilman ,"District 4, City of Alexandria ",P. O. Box 71,,Alexandria,LA,71309,318-449-5047,RAPIDES,Harry B. Silver,3117 Marye St.,,Alexandria,LA,71301,5,318-443-1624,W,M,R,310,12/6/2010,12/4/2006,Mr. Silver +Councilman ,"District 5, City of Alexandria ",P. O. Box 71,,Alexandria,LA,71309,318-449-5047,RAPIDES,"""Chuck"" Fowler",4400 Wendover Blvd.,,Alexandria,LA,71303,5,318-448-3157,W,M,R,310,12/3/2012,12/1/2008,Mr. Fowler +DPEC Member ,at Large ,,,,LA,,,RED RIVER,,,,,,,0,,,,,54,,, +DPEC Member ,District 1 ,,,,LA,,,RED RIVER,,,,,,,0,,,,,56,,, +DPEC Member ,District 2 ,,,,LA,,,RED RIVER,,,,,,,0,,,,,56,,, +DPEC Member ,District 3 ,,,,LA,,,RED RIVER,,,,,,,0,,,,,56,,, +DPEC Member ,District 4 ,,,,LA,,,RED RIVER,,,,,,,0,,,,,56,,, +DPEC Member ,District 5 ,,,,LA,,,RED RIVER,,,,,,,0,,,,,56,,, +DPEC Member ,District 6 ,,,,LA,,,RED RIVER,,,,,,,0,,,,,56,,, +DPEC Member ,District 7 ,,,,LA,,,RED RIVER,,,,,,,0,,,,,56,,, +RPEC Member ,at Large ,,,,LA,,,RED RIVER,,,,,,,0,,,,,64,,, +RPEC Member ,District 1 ,,,,LA,,,RED RIVER,,,,,,,0,,,,,66,,, +RPEC Member ,District 2 ,,,,LA,,,RED RIVER,,,,,,,0,,,,,66,,, +RPEC Member ,District 3 ,,,,LA,,,RED RIVER,,,,,,,0,,,,,66,,, +RPEC Member ,District 4 ,,,,LA,,,RED RIVER,,,,,,,0,,,,,66,,, +RPEC Member ,District 5 ,,,,LA,,,RED RIVER,,,,,,,0,,,,,66,,, +RPEC Member ,District 6 ,,,,LA,,,RED RIVER,,,,,,,0,,,,,66,,, +RPEC Member ,District 7 ,,,,LA,,,RED RIVER,,,,,,,0,,,,,66,,, +Sheriff ,,P. O. Box 375,,Coushatta,LA,71019,318-932-4221,RED RIVER,Johnny Ray Norman,P.O. Box 375,,Coushatta,LA,71019,5,318-932-6388,W,M,D,225,6/30/2012,7/1/2008,Sheriff Norman +Clerk of Court ,,P. O. Box 485,,Coushatta,LA,71019-0485 ,318-932-6741,RED RIVER,Stuart Shaw,P.O. Box 485,,Coushatta,LA,71019-0485 ,11,318-932-4171,W,M,D,230,6/30/2012,7/1/2008,Mr. Shaw +Assessor ,,P.O. Box 509,,Coushatta,LA,71019,318-932-4922,RED RIVER,"""Becky"" Craig",P.O. Box 25,,Coushatta,LA,71019,5,318-932-5626,W,F,D,235,12/31/2012,1/1/2009,Ms. Craig +Coroner ,,P.O. Box 152,,Coushatta,LA,71019,318-932-6903,RED RIVER,Wyche Coleman,Rt. 5 Box 13215,,Coushatta,LA,71019,5,318-932-9980,W,M,D,240,3/25/2012,3/24/2008,Mr. Coleman +Police Juror,District 1,P.O. Drawer 709,,Coushatta,LA,71019,318-932-5719,RED RIVER,William Brown,"Rt. 3, Box 297",,Coushatta,LA,71019,5,318-932-3675,W,M,D,245,1/8/2012,1/14/2008,Mr. Brown +Police Juror ,District 2 ,P.O. Drawer 709,,Coushatta,LA,71019,318-932-5719,RED RIVER,Reggie Green,"Rt. 2, Box 299",,Coushatta,LA,71019,5,318-932-6901,W,M,D,245,1/8/2012,1/14/2008,Mr. Green +Police Juror ,District 3 ,P.O. Drawer 709,,Coushatta,LA,71019,318-932-5719,RED RIVER,Billy Gay,"Rt. 1, Box 234B",,Coushatta,LA,71019,5,318-932-4729,W,M,D,245,1/8/2012,1/14/2008,Mr. Gay +Police Juror ,District 4 ,P.O. Drawer 709,,Coushatta,LA,71019,318-932-5719,RED RIVER,Jessie Davis,"Rt. 1, Box 355",,Shreveport,LA,71115,5,318-797-0827,B,M,D,245,1/8/2012,1/14/2008,Mr. Davis +Police Juror ,District 5 ,P.O. Drawer 709,,Coushatta,LA,71019,318-932-5719,RED RIVER,"John ""June Bug"" Moore","Rt. 4, Box 196",,Coushatta,LA,71019,5,318-932-6126,B,M,D,245,1/8/2012,1/14/2008,Mr. Moore +Police Juror ,District 6 ,P.O. Drawer 709,,Coushatta,LA,71019,318-932-5719,RED RIVER,"""Ben"" Taylor",P.O. Box 1027,,Coushatta,LA,71019,5,318-932-7162,B,M,D,245,1/8/2012,1/14/2008,Mr. Taylor +Police Juror ,District 7 ,P.O. Drawer 709,,Coushatta,LA,71019,318-932-5719,RED RIVER,Sammy Sledge,"Rt. 5, Box 119",,Coushatta,LA,71019,5,318-932-6212,W,M,D,245,1/8/2012,1/14/2008,Mr. Sledge +Member of School Board ,District 1 ,P. O. Box 1369,,Coushatta,LA,,318-932-4081,RED RIVER,Gene Longino,"Rt. 3, Box 316",,Coushatta,LA,71019,5,318-932-3297,W,M,D,255,12/31/2010,1/1/2007,Mr. Longino +Member of School Board ,District 2 ,P. O. Box 1369,,Coushatta,LA,71019,318-932-4081,RED RIVER,"""Ricky"" Cannon",P.O. Box 1269,,Coushatta,LA,71019,5,318-932-5451,W,M,D,255,12/31/2010,1/1/2007,Mr. Cannon +Member of School Board ,District 3 ,P. O. Box 1369,,Coushatta,LA,71019,318-932-4081,RED RIVER,Karen S. Womack,"Rt. 3, Box 529",,Ringgold,LA,71068,5,318-932-5832,W,F,R,255,12/31/2010,1/1/2007,Ms. Womack +Member of School Board ,District 4 ,P. O. Box 1369,,Coushatta,LA,71019,318-932-4081,RED RIVER,Cleve Miller,P.O. Box 1097,,Coushatta,LA,71019,5,318-932-5163,B,M,D,255,12/31/2010,1/1/2007,Mr. Miller +Member of School Board ,District 5 ,P. O. Box 1369,,Coushatta,LA,71019,318-932-4081,RED RIVER,Kasandria Wells White,P.O.Box 1224,,Coushatta,LA,71019,5,318-932-8760,B,F,D,255,12/31/2010,1/1/2007,Ms. White +Member of School Board ,District 6 ,P. O. Box 1369,,Coushatta,LA,71019,318-932-4081,RED RIVER,Valerie Cox,P.O. Box 1292,,Coushatta,LA,71019,5,318-932-9606,B,F,D,255,12/31/2010,1/1/2007,Ms. Cox +Member of School Board ,District 7 ,P. O. Box 1369,,Coushatta,LA,71019,318-932-4081,RED RIVER,"""J. B."" McElwee",904 Maple St.,,Coushatta,LA,71019,5,318-932-5440,W,M,D,255,12/31/2010,1/1/2007,Mr. McElwee +Justice of the Peace ,Justice of the Peace District A ,315 Church St.,,Coushatta,LA,71019,318-932-4539,RED RIVER,"William ""Bill"" Shelton",315 Church St.,,Coushatta,LA,71019,5,318-932-4539,W,M,R,265,12/31/2014,1/1/2009,Mr. Shelton +Justice of the Peace ,Justice of the Peace District B ,Rt.2 Box 1909,,Coushatta,LA,71019,318-932-4485,RED RIVER,"Randy Thomas, Jr.",Rt. 2 Box 1912,,Coushatta,LA,71019,5,318-932-4485,W,M,,265,12/31/2014,1/1/2009,Mr. Thomas +Justice of the Peace ,Justice of the Peace District C ,Rt.4 Box 278,,Coushatta,LA,71019,318-932-5984,RED RIVER,Robert Perkins,"Rt. 4, Box 278",,Coushatta,LA,71019,5,318-932-5984,B,M,D,265,12/31/2014,1/1/2009,Mr. Perkins +Constable ,Justice of the Peace District A ,1913 Spring St.,,Coushatta,LA,71019,318-932-6553,RED RIVER,Earl Webb,180 Smith Rd.,,Coushatta,LA,71019,5,318-932-4832,B,M,D,267,12/31/2014,1/1/2009,Mr. Webb +Constable ,Justice of the Peace District B ,"Rt. 2, Box 1909",,Coushatta,LA,71019,318-932-9998,RED RIVER,Randy Thomas,"Rt. 2, Box 1909",,Coushatta,LA,71019,5,318-932-9998,W,M,,267,12/31/2014,1/1/2009,Mr. Thomas +Constable ,Justice of the Peace District C ,"Rt. 4, Box 196",,Coushatta,LA,71019,318-932-5962,RED RIVER,"John ""Chuck"" Moore","Rt. 4, Box 196",,Coushatta,LA,71019,5,318-932-5962,B,M,D,267,12/31/2014,1/1/2009,Mr. Moore +Mayor ,Town of Coushatta ,P. O. Box 531,,Coushatta,LA,,318-932-4312,RED RIVER,Rose Byrd,100 E Riddle St. Apt. 6B,,Coushatta,LA,71019,5,318-932-3041,B,F,D,300,12/31/2012,1/1/2009,Mayor Byrd +Mayor ,Village of Edgefield ,P. O. Box 397,,Coushatta,LA,,318-932-0430,RED RIVER,Jimmy R. Stothart,422 Highway 371,,Coushatta,LA,71019,5,318-932-5268,W,M,R,300,12/31/2012,1/1/2009,Mayor Stothart +Mayor ,Village of Hall Summit ,P. O. Box 98,,Hall Summit,LA,,318-932-5355,RED RIVER,Lary Wimberly,P.O. Box 145,,Hall Summit,LA,71034,5,318-932-6424,W,M,D,300,12/31/2010,1/1/2007,Mr. Wimberly +Mayor ,Village of Martin ,"Rt. 2, Box 201",,Martin,LA,,318-932-4509,RED RIVER,Cody Hillman,P.O. Box 201,,Coushatta,LA,71019,5,318-932-9162,W,M,R,300,6/30/2012,7/1/2008,Mayor Hillman +Chief of Police ,Village of Edgefield ,P. O. Box 397,,Coushatta,LA,71019,318-932-0430,RED RIVER,James P. Murray,P.O. Box 371,,Coushatta,LA,71019,5,318-932-6263,W,M,R,305,12/31/2012,1/1/2009,Cheif Murray +Chief of Police ,Village of Hall Summit ,P. O. Box 98,,Hall Summit,LA,71034,318-932-5355,RED RIVER,"Charles Loftin, Jr.",P.O. Box 117,,Hall Summit,LA,71034,5,318-932-5034,W,M,D,305,12/31/2010,1/1/2007,Mr. Loftin +Chief of Police ,Village of Martin ,"Rt. 2, Box 201",,Martin,LA,71019,318-932-4509,RED RIVER,John B. Youngblood,"Rt. 2, Box 273 B",,Coushatta,LA,71019,5,318-932-4838,W,M,D,305,6/30/2012,7/1/2008,Chief Youngblood +Alderman ,Village of Edgefield ,,,,LA,,,RED RIVER,Vince Almond,107 Park Lane Dr.,,Coushatta,LA,71019,5,318-932-8812,W,M,R,310,12/31/2012,1/1/2009,Mr. Almond +Alderman ,Village of Edgefield ,,,,LA,,,RED RIVER,"""Trish"" Gamble",901 Maple St.,,Coushatta,LA,71019,5,318-932-3774,W,F,D,310,12/31/2012,1/1/2009,Ms. Gamble +Alderman ,Village of Edgefield ,,,,LA,,,RED RIVER,Clyde Stovall,P.O. Box 542,,Coushatta,LA,71019,5,318-932-5996,W,M,D,310,12/31/2012,1/1/2009,Mr. Stovall +Alderman ,Village of Hall Summit ,P. O. Box 98,,Hall Summit,LA,71034,318-932-5355,RED RIVER,Barbara A. Moore,P.O. Box 235,,Hall Summit,LA,71034,5,318-932-6790,W,F,D,310,12/31/2010,1/1/2007,Ms. Moore +Alderman ,Village of Hall Summit ,P. O. Box 98,,Hall Summit,LA,71034,318-932-5355,RED RIVER,Kathy Jordan Quick,Rt. 1 Box 2317,,Coushatta,LA,71019,5,318-932-8732,W,F,D,310,12/31/2010,1/1/2007,Ms. Quick +Alderman ,Village of Hall Summit ,P. O. Box 98,,Hall Summit,LA,71034,318-932-5355,RED RIVER,Antony Thomas,P.O. Box 233,,Hall Summit,LA,71034,5,318-932-3844,W,M,,310,12/31/2010,1/1/2007,Mr. Thomas +Alderman ,Village of Martin ,"Rt. 2, Box 201",,Martin,LA,71019,318-932-4509,RED RIVER,Dan Dupree,Rt 2 Box 261A,,,LA,71019,5,318-932-6476,W,M,R,310,6/30/2012,7/1/2008,Mr. Dupree +Alderman ,Village of Martin ,"Rt. 2, Box 201",,Martin,LA,71019,318-932-4509,RED RIVER,Tom Mangham,Rt 2 Box 2015,,,LA,71019,5,318-932-5299,W,M,R,310,6/30/2012,7/1/2008,Mr. Mangham +Alderman ,Village of Martin ,"Rt. 2, Box 201",,Martin,LA,71019,318-932-4509,RED RIVER,Myra F. Woodard,"Rt, 2 Box 244 A",,Coushatta,LA,71019,5,318-932-5669,W,F,R,310,6/30/2012,7/1/2008,Ms. Woodard +Councilman ,Town of Coushatta ,P. O. Box 531,,Coushatta,LA,71019,318-932-4312,RED RIVER,Virginia B. Calhoun,1714 Brittian St.,,Coushatta,LA,71019,5,318-932-9743,B,F,D,310,12/31/2012,1/1/2009,Ms. Calhoun +Councilman ,Town of Coushatta ,P. O. Box 531,,Coushatta,LA,71019,318-932-4312,RED RIVER,John D. Henry,P.O. Box 80,,Coushatta,LA,71019,5,318-932-3747,B,M,D,310,12/31/2012,1/1/2009,Mr. Henry +Councilman ,Town of Coushatta ,P. O. Box 531,,Coushatta,LA,71019,318-932-4312,RED RIVER,"Mallory ""Mack"" Parson",404 Circle Dr.,,Coushatta,LA,71019,5,318-932-8530,B,M,D,310,12/31/2012,1/1/2009,Mr. Parson +Councilman ,Town of Coushatta ,P. O. Box 531,,Coushatta,LA,71019,318-932-4312,RED RIVER,Edna M. Webb,P.O. Box 1245,,Coushatta,LA,71019,5,318-932-4445,B,F,D,310,12/31/2012,1/1/2009,Ms. Webb +Councilman ,Town of Coushatta ,P. O. Box 531,,Coushatta,LA,71019,318-932-4312,RED RIVER,Rosetta Wilson,1705 Brittian St.,,Coushatta,LA,71019,5,318-932-4373,B,F,D,310,12/31/2012,1/1/2009,Ms. Wilson +DPEC Member ,at Large ,,,,LA,,,RICHLAND,Tamarlon T. Carter,613 Third St.,,Delhi,LA,71232,5,318-557-1247,B,M,D,54,2/20/2012,2/20/2008,Mr. Carter +DPEC Member ,at Large ,,,,LA,,,RICHLAND,"George B. Tennant, Sr.",P.O. Box 959 .,,Rayville,LA,71269,5,318-728-5808,B,M,D,54,2/20/2012,2/20/2008,Mr. Tennant +DPEC Member ,District 1 ,,,,LA,,,RICHLAND,,,,,,,0,,,,,56,,, +DPEC Member ,District 2 ,,,,LA,,,RICHLAND,,,,,,,0,,,,,56,,, +DPEC Member ,District 3 ,,,,LA,,,RICHLAND,Valerie Allen,104 Russell St.,,Rayville,LA,71269,5,318-728-4562,B,F,D,56,2/20/2012,2/20/2008,Ms. Allen +DPEC Member ,District 4 ,,,,LA,,,RICHLAND,"Gerald ""Vincent"" Thomas",2039 Hwy. 583,,Rayville,LA,71269,5,318-728-5798,B,M,D,56,2/20/2012,2/20/2008,Mr. Thomas +DPEC Member ,District 5 ,,,,LA,,,RICHLAND,,,,,,,0,,,,,56,,, +DPEC Member ,District 6 ,,,,LA,,,RICHLAND,"Timothy ""Tim"" Tennant",514 Martin Luther King Dr.,,Rayville,LA,71269,5,318-728-6133,B,M,D,56,2/20/2012,2/20/2008,Mr. Tennant +DPEC Member ,District 7 ,,,,LA,,,RICHLAND,,,,,,,0,,,,,56,,, +DPEC Member ,District 8 ,,,,LA,,,RICHLAND,,,,,,,0,,,,,56,,, +DPEC Member ,District 9 ,,,,LA,,,RICHLAND,,,,,,,0,,,,,56,,, +RPEC Member ,at Large ,,,,LA,,,RICHLAND,Gaylon Tanner,1433 Hwy. 854,,Delhi,LA,71232,5,318-878-2505,W,M,R,64,2/20/2012,2/20/2008,Mr. Tanner +RPEC Member ,District 1 ,,,,LA,,,RICHLAND,,,,,,,0,,,,,66,,, +RPEC Member ,District 2 ,,,,LA,,,RICHLAND,,,,,,,0,,,,,66,,, +RPEC Member ,District 3 ,,,,LA,,,RICHLAND,,,,,,,0,,,,,66,,, +RPEC Member ,District 4 ,,,,LA,,,RICHLAND,,,,,,,0,,,,,66,,, +RPEC Member ,District 5 ,,,,LA,,,RICHLAND,,,,,,,0,,,,,66,,, +RPEC Member ,District 6 ,,,,LA,,,RICHLAND,,,,,,,0,,,,,66,,, +RPEC Member ,District 7 ,,,,LA,,,RICHLAND,,,,,,,0,,,,,66,,, +RPEC Member ,District 8 ,,,,LA,,,RICHLAND,,,,,,,0,,,,,66,,, +RPEC Member ,District 9 ,,,,LA,,,RICHLAND,,,,,,,0,,,,,66,,, +Sheriff ,,"708 Julia St., Ste. 113",,Rayville,LA,71269,318-728-2071,RICHLAND,Charles M. McDonald,"708 Julia St., Ste. 113",,Rayville,LA,71269,5,318-248-2642,W,M,D,225,6/30/2012,7/1/2008,Sheriff McDonald +Clerk of Court ,,P. O. Box 199,,Rayville,LA,71269,318-728-4171,RICHLAND,Ramona N. Haire,P. O. Box 199,,Rayville,LA,71269,5,318-728-5476,W,F,D,230,6/30/2012,7/1/2008,Ms. Haire +Assessor ,,708 Julia St.,,Rayville,LA,71269,318-728-4491,RICHLAND,"Emmett ""Lee"" Brown, III",412 Hwy. 135,,Rayville,LA,71269,5,318-728-3955,W,M,D,235,12/31/2012,1/1/2009,Mr. Brown +Coroner ,,107 Lela St.,,Mangham,LA,71259,318-728-2046,RICHLAND,W. David Thompson,1012 Louisa St.,,Rayville,LA,71269,5,318-728-2046,W,M,O,240,3/25/2012,3/24/2008,Mr. Thompson +Police Juror ,District 1 ,P. O. Box 668,,Rayville,LA,,318-728-2061,RICHLAND,"W. A. ""Bill"" Tatum",303 Little John Ln.,,Delhi,LA,71232,5,318-878-9386,W,M,D,245,1/8/2012,1/14/2008,Mr. Tatum +Police Juror ,District 2 ,P. O. Box 668,,Rayville,LA,71269,318-728-2061,RICHLAND,Jesse Washington,112 Valley St.,,Delhi,LA,71232,5,318-878-2178,B,M,D,245,1/8/2012,1/14/2008,Mr. Washington +Police Juror ,District 3 ,P. O. Box 668,,Rayville,LA,71269,318-728-2061,RICHLAND,Sharon Kelley Gee,34 Lewis Rd.,,Rayville,LA,71269,5,318-728-7777,B,F,D,245,1/8/2012,1/14/2008,Ms. Gee +Police Juror ,District 4 ,P. O. Box 668,,Rayville,LA,71269,318-728-2061,RICHLAND,"""Steve"" Lofton",1389 Hwy. 183,,Rayville,LA,71269,5,318-728-3732,W,M,R,245,1/8/2012,1/14/2008,Mr. Lofton +Police Juror ,District 5 ,P. O. Box 668,,Rayville,LA,71269,318-728-2061,RICHLAND,Judy Green,125 Zebedee Ln.,,Rayville,LA,71269,5,318-728-6966,W,F,R,245,1/8/2012,1/14/2008,Ms. Green +Police Juror ,District 6 ,P. O. Box 668,,Rayville,LA,71269,318-728-2061,RICHLAND,Althan Smith,302 Britton St.,,Rayville,LA,71269,5,318-728-6757,B,M,D,245,1/8/2012,1/14/2008,Mr. Smith +Police Juror ,District 7 ,P. O. Box 668,,Rayville,LA,71269,318-728-2061,RICHLAND,Kenneth M. McKay,P.O. Box 1,,Archibald,LA,71259,5,318-248-3609,W,M,D,245,1/8/2012,1/14/2008,Mr. McKay +Police Juror ,District 8 ,P. O. Box 668,,Rayville,LA,71269,318-728-2061,RICHLAND,"William T. ""Bubba"" Moore",96 Bayou Rd.,,Rayville,LA,71269,5,318-728-4859,W,M,R,245,1/8/2012,1/14/2008,Mr. Moore +Police Juror ,District 9 ,P. O. Box 668,,Rayville,LA,71269,318-728-2061,RICHLAND,"""Ronnie"" Gilley",3466 Hwy. 135,,Mangham,LA,71259,5,318-248-3197,W,M,D,245,1/8/2012,1/14/2008,Mr. Gilley +Member of School Board ,District 1 ,P. O. Box 599,,Rayville,LA,71269,318-728-4956,RICHLAND,"""Billy"" Calvert",214 Little John,,Delhi,LA,71232,5,318-878-2502,W,M,D,255,12/31/2010,1/1/2007,Mr. Calvert +Member of School Board ,District 2 ,P. O. Box 599,,Rayville,LA,71269,318-728-4956,RICHLAND,"Leonard Guine, Jr.",443 Church St.,,Delhi,LA,71232,5,318-878-5811,B,M,D,255,12/31/2010,1/1/2007,Mr. Guine +Member of School Board ,District 3 ,P. O. Box 599,,Rayville,LA,71269,318-728-4956,RICHLAND,Sharon B. Jones,P.O.Box 575,,Rayville,LA,71269,5,318-728-4532,B,F,D,255,12/31/2010,1/1/2007,Ms. Jone +Member of School Board ,District 4 ,P. O. Box 599,,Rayville,LA,71269,318-728-4956,RICHLAND,Danny Whitstine,117 Hwy. 585,,Rayville,LA,71269,5,318-728-2180,W,M,R,255,12/31/2010,1/1/2007,Mr. Whitstine +Member of School Board ,District 5 ,P. O. Box 599,,Rayville,LA,71269,318-728-4956,RICHLAND,"Robert ""Bob"" Adams",127 Ashley Ave.,,Rayville,LA,71269,5,318-728-2108,W,M,D,255,12/31/2010,1/1/2007,Mr. Adams +Member of School Board ,District 6 ,P. O. Box 599,,Rayville,LA,71269,318-728-4956,RICHLAND,Marie Lewis,312 Mansfield St.,,Rayville,LA,71269,5,318-728-4024,B,F,D,255,12/31/2010,1/1/2007,Ms. Lewis +Member of School Board ,District 7 ,P. O. Box 599,,Rayville,LA,71269,318-728-4956,RICHLAND,Patricia R. Jordan,128 Rushing Rd.,,Rayville,LA,71269,5,318-248-2778,W,F,R,255,12/31/2010,1/1/2007,Ms. Jordan +Member of School Board ,District 8 ,P. O. Box 599,,Rayville,LA,71269,318-728-4956,RICHLAND,Kevin Eppinette,103 Sullivan Loop,,Rayville,LA,71269,5,318-728-0469,W,M,O,255,12/31/2010,1/1/2007,Mr. Eppinette +Member of School Board ,District 9 ,P. O. Box 599,,Rayville,LA,71269,318-728-4956,RICHLAND,Todd Weed,1769 Hwy. 132,,Mangham,LA,71259,5,318-248-2436,W,M,R,255,12/31/2010,1/1/2007,Mr. Weed +Justice of the Peace ,Justice of the Peace Ward 1 ,811 Main St.,,Delhi,LA,71232,318-878-8217,RICHLAND,"Randol ""Mack"" McKinney",811 Main St.,,Delhi,LA,71232,5,318-878-8217,W,M,R,265,12/31/2014,1/1/2009,Mr. McKinney +Justice of the Peace ,Justice of the Peace Ward 2 ,P.O.Box 307,,Rayville,LA,71269,318-728-0806,RICHLAND,"""Joe"" Comeaux",3556 Hwy. 80 E.,,Rayville,LA,71269,5,318-728-4535,W,M,O,265,12/31/2014,1/1/2009,Mr. Comeaux +Justice of the Peace ,Justice of the Peace Ward 3 ,553 Charleston Dr.,,Oak Ridge,LA,71264,318-728-3872,RICHLAND,Inez Carroll,160 South Ridge Rd.,,Rayville,LA,71269,5,318-728-0527,W,F,,265,12/31/2014,1/1/2009,Ms. Carroll +Justice of the Peace ,Justice of the Peace Ward 4 ,P.O.Box 122,,Archibald,LA,71218,318-248-2300,RICHLAND,"""Jim"" Archibald",P.O. Box 122,,Archibald,LA,71218,5,318-237-0057,W,M,R,265,12/31/2014,1/1/2009,Mr. Archibald +Justice of the Peace ,Justice of the Peace Ward 5 ,146 Egypt St.,,Mangham,LA,71259,318-248-3669,RICHLAND,"William L. ""Bill"" Bruce",146 Egypt St.,,Mangham,LA,71259,5,318-248-3669,,,D,265,12/31/2014,1/1/2009,Mr. Bruce +Justice of the Peace ,Justice of the Peace Wards 6 & 7 ,1734 Hwy. 561,,Hebert,LA,71418,318-248-2780,RICHLAND,Brenda S. Daniels,1734 Hwy. 561,,Hebert,LA,71418,5,318-248-2780,W,F,R,265,12/31/2014,1/1/2009,Ms. Daniels +Constable ,Justice of the Peace Ward 1 ,116 McKinney St.,,Delhi,LA,71232,318-878-9418,RICHLAND,Linda McKinney,811 Main St.,,Delhi,LA,71232,5,318-878-8217,W,F,R,267,12/31/2014,1/1/2009,Ms. McKinney +Constable ,Justice of the Peace Ward 2 ,155 McKnight Rd.,,Rayville,LA,71269,318-728-3611,RICHLAND,Gordon Sorey,1062 Hwy. 425,,Rayville,LA,71269,5,318-728-4742,W,M,D,267,12/31/2014,1/1/2009,Mr. Sorey +Constable ,Justice of the Peace Ward 3 ,P.O. Box 45,,Start,LA,71279,318-728-4266,RICHLAND,Ray M. Trisler,13 Trisler Rd.,,Rayville,LA,71269,5,318-728-3692,W,M,R,267,12/31/2014,1/1/2009,Mr. Trisler +Constable ,Justice of the Peace Ward 4 ,P.O. Box 212,,Archibald,LA,71218,318-248-3582,RICHLAND,Terry L. Gwin,P. O. Box 94,,Archibald,LA,71218,5,318-248-3421,W,M,R,267,12/31/2014,1/2/2009,Mr. Gwin +Constable ,Justice of the Peace Ward 5 ,359 Hwy. 576,,Mangham,LA,71259,318-248-2205,RICHLAND,"""Jim"" Bruce",359 Hwy. 576,,Mangham,LA,71259,5,318-248-2205,W,M,D,267,12/31/2014,1/1/2009,Mr. Bruce +Constable ,Justice of the Peace Wards 6 & 7 ,2312 Hwy. 561,,Columbia,LA,71418,318-248-3185,RICHLAND,Donald E. Oliveaux,2312 Hwy. 561,,Columbia,LA,71418,5,318-248-2204,W,M,R,267,12/31/2014,1/1/2009,Mr. Oliveaux +Mayor ,Town of Delhi ,P. O. Box 277,,Delhi,LA,,318-878-3792,RICHLAND,"Lynn Lewis, ",P.O. Box 277,,Delhi,LA,71232-0277,10,318-878-3792,W,M,D,300,12/31/2010,1/1/2007,Mr. Lewis +Mayor ,Town of Mangham ,P. O. Box 94,,Mangham,LA,,318-248-2170,RICHLAND,Robert Neal Harwell,702 Horace St.,,Mangham,LA,71259,5,318-248-3291,W,M,D,300,12/31/2010,1/1/2007,Mr. Harwell +Mayor ,Town of Rayville ,P. O. Box 878,,Rayville,LA,,318-728-2011,RICHLAND,"Harry ""Kayo"" Lewis",312 Mansfield St.,,Rayville,LA,71269,5,318-728-4024,B,M,D,300,6/30/2010,7/1/2006,Mayor Lewis +Chief of Police ,Town of Delhi ,P. O. Box 277,,Delhi,LA,71232,318-878-3792,RICHLAND,Rufus L. Carter,P. O. Box 601,,Delhi,LA,71232,5,318-878-9968,B,M,D,305,12/31/2010,1/1/2007,Mr. Carter +Chief of Police ,Town of Mangham ,P. O. Box 94,,Mangham,LA,71259,318-248-2170,RICHLAND,"""Lennie"" Graham",P.O. Box 142,,Mangham,LA,71259,5,318-248-2548,W,M,D,305,12/31/2010,1/1/2007,Mr. Graham +Chief of Police ,Town of Rayville ,P. O. Box 878,,Rayville,LA,71269,318-728-2011,RICHLAND,"Willie Lee Robinson, Sr.",908 Madeline St.,,Rayville,LA,71269,5,318-728-4958,B,M,D,305,6/30/2010,7/1/2006,Chief Robinson +Alderman ,"District A, Town of Delhi ",P. O. Box 277,,Delhi,LA,71232,318-878-3792,RICHLAND,Shirley McDade,105 Rancher St.,,Delhi,LA,71232,5,318-878-5753,B,F,D,310,12/31/2010,1/1/2007,Mr. McDade +Alderman ,"District B, Town of Delhi ",P. O. Box 277,,Delhi,LA,71232,318-878-3792,RICHLAND,Bobby Benson,610 Third St.,,Delhi,LA,71232,5,318-878-9668,,,,310,12/31/2010,1/1/2007,Mr. Benson +Alderman ,"District C, Town of Delhi ",P. O. Box 277,,Delhi,LA,71232,337-685-4462,RICHLAND,J. C. Smith,119 Fifth St.,,Delhi,LA,71232,5,318-878-5726,B,M,D,310,12/31/2010,1/1/2007,Mr. Smith +Alderman ,"District D, Town of Delhi ",P. O. Box 277,,Delhi,LA,71232,318-878-3792,RICHLAND,Marvin D. Hamilton,901 Chicago St.,,Delhi,LA,71232,5,318-878-2781,B,M,D,310,12/31/2010,1/1/2007, +Alderman ,"District E, Town of Delhi ",P. O. Box 277,,Delhi,LA,71232,318-878-3792,RICHLAND,"W. B. ""Dub"" Sumner",703 Ky St.,,Delhi,LA,71232,5,318-878-2449,W,M,D,310,12/31/2010,1/1/2007,Mr. Sumner +Alderman ,Town of Mangham ,P. O. Box 94,,Mangham,LA,71259,318-248-2170,RICHLAND,"""Billy"" Bruce",P.O. Box 344,,Mangham,LA,71259,5,318-248-2723,W,M,R,310,12/31/2010,1/1/2007,Mr. Bruce +Alderman ,Town of Mangham ,P. O. Box 94,,Mangham,LA,71259,318-248-2170,RICHLAND,Perry Fleming,434 Hixson St.,,Mangham,LA,71259,5,318-248-2770,W,M,O,310,12/31/2010,1/1/2007,Mr. Fleming +Alderman ,Town of Mangham ,P. O. Box 94,,Mangham,LA,71259,318-248-2170,RICHLAND,Zona Morris McKay,221 McCormick St.,,Mangham,LA,71259,5,318-248-2363,W,F,O,310,12/31/2010,1/1/2007,Ms. McKay +Alderman ,Town of Mangham ,P. O. Box 94,,Mangham,LA,71259,318-248-2170,RICHLAND,Leslie Ann Mizell,205 Emma St.,,Mangham,LA,71259,5,318-248-4847,W,F,O,310,12/31/2010,2/23/2009,Ms. Mizell +Alderman ,Town of Mangham ,P. O. Box 94,,Mangham,LA,71259,318-248-2170,RICHLAND,Johnny L. Natt,479 Hixon St.,,Mangham,LA,71259,5,318-248-3848,B,M,,310,12/31/2010,1/1/2007,Mr. Natt +Alderman ,Town of Rayville ,P. O. Box 878,,Rayville,LA,71269,318-728-2011,RICHLAND,"James C. ""Jim"" Adams",1208 Julia St.,,Rayville,LA,71269,5,318-728-2238,W,M,D,310,6/30/2010,7/1/2006,Mr. Adams +Alderman ,Town of Rayville ,P. O. Box 878,,Rayville,LA,71269,318-728-2011,RICHLAND,Valerie W. Allen,104 Russell St.,,Rayville,LA,71269,5,318-728-4562,B,F,D,310,6/30/2010,7/1/2006,Ms. Allen +Alderman ,Town of Rayville ,P. O. Box 878,,Rayville,LA,71269,318-728-2011,RICHLAND,"Terry ""Coach"" Brown",313 Mansfield St.,,Rayville,LA,71269,5,318-728-2577,B,M,D,310,6/30/2010,7/1/2006,Mr. Brown +Alderman ,Town of Rayville ,P. O. Box 878,,Rayville,LA,71269,318-728-2011,RICHLAND,"Johnny ""Renael"" Jones",404 McCaa St.,,Rayville,LA,71269,5,318-728-4342,B,M,O,310,6/30/2010,7/1/2006,Mr. Jones +Alderman ,Town of Rayville ,P. O. Box 878,,Rayville,LA,71269,318-728-2011,RICHLAND,George B. Tennant,P.O. Box 959,,Rayville,LA,71269,5,318-728-3891,B,M,D,310,6/30/2010,7/1/2006,Mr. Tennant +DPEC Member ,at Large ,,,,LA,,,SABINE,,,,,,,0,,,,,54,,, +DPEC Member ,District 1 ,,,,LA,,,SABINE,,,,,,,0,,,,,56,,, +DPEC Member ,District 2 ,,,,LA,,,SABINE,,,,,,,0,,,,,56,,, +DPEC Member ,District 3 ,,,,LA,,,SABINE,,,,,,,0,,,,,56,,, +DPEC Member ,District 4 ,,,,LA,,,SABINE,,,,,,,0,,,,,56,,, +DPEC Member ,District 5 ,,,,LA,,,SABINE,,,,,,,0,,,,,56,,, +DPEC Member ,District 6 ,,,,LA,,,SABINE,,,,,,,0,,,,,56,,, +DPEC Member ,District 7 ,,,,LA,,,SABINE,,,,,,,0,,,,,56,,, +DPEC Member ,District 8 ,,,,LA,,,SABINE,,,,,,,0,,,,,56,,, +DPEC Member ,District 9 ,,,,LA,,,SABINE,,,,,,,0,,,,,56,,, +RPEC Member ,at Large ,,,,LA,,,SABINE,,,,,,,0,,,,,64,,, +RPEC Member ,District 1 ,,,,LA,,,SABINE,,,,,,,0,,,,,66,,, +RPEC Member ,District 2 ,,,,LA,,,SABINE,,,,,,,0,,,,,66,,, +RPEC Member ,District 3 ,,,,LA,,,SABINE,,,,,,,0,,,,,66,,, +RPEC Member ,District 4 ,,,,LA,,,SABINE,,,,,,,0,,,,,66,,, +RPEC Member ,District 5 ,,,,LA,,,SABINE,,,,,,,0,,,,,66,,, +RPEC Member ,District 6 ,,,,LA,,,SABINE,,,,,,,0,,,,,66,,, +RPEC Member ,District 7 ,,,,LA,,,SABINE,,,,,,,0,,,,,66,,, +RPEC Member ,District 8 ,,,,LA,,,SABINE,,,,,,,0,,,,,66,,, +RPEC Member ,District 9 ,,,,LA,,,SABINE,,,,,,,0,,,,,66,,, +Sheriff ,,P. O. Box 1440,,Many,LA,71449,318-256-9241,SABINE,Guffey Lynn Pattison,P.O. Box 1440,,Many,LA,71449,5,318-796-2555,W,M,D,225,6/30/2012,7/1/2008,Sheriff Pattison +Clerk of Court ,,P. O. Box 419,,Many,LA,71449,318-256-6223,SABINE,Tammy Foster,P.O. Box 419,,Many,LA,71449,5,318-565-4380,W,F,D,230,6/30/2012,7/1/2008,Ms. Foster +Assessor ,,"400 S. Capitol St., Rm. 106",,Many,LA,71449,318-256-3482,SABINE,Carroll D. Ellzey,4247 Plainview Rd.,,Florien,LA,71429,5,318-586-7670,W,M,D,235,12/31/2012,1/1/2009,Mr. Ellzey +Coroner ,,395 South Capitol Street,,Many,LA,71449,318-256-2000,SABINE,Warren L. Founds,395 S. Capitol St.,,Many,LA,71449,5,318-256-2000,W,M,R,240,3/25/2012,3/24/2008,Mr. Founds +Police Juror,District 1,"400 Capitol St., Rm. 101",,Many,LA,71449,318-256-5637,SABINE,Dennis Downs,391 Toro Church Rd.,,Florien,LA,71429,5,318-586-4507,W,M,D,245,1/8/2012,1/14/2008,Mr. Downs +Police Juror ,District 2 ,"400 Capitol St., Rm. 101",,Many,LA,71449,318-256-5637,SABINE,Kenneth Funderburk,90 Funderburk Rd.,,Florien,LA,71429,5,318-586-3340,W,M,D,245,1/8/2012,1/14/2008,Mr. Funderburk +Police Juror ,District 3 ,"400 Capitol St., Rm. 101",,Many,LA,71449,318-256-5637,SABINE,Rodney Hopkins,P.O. Box 1,,Many,LA,71449,5,318-256-5735,W,M,R,245,1/8/2012,1/14/2008,Mr. Hopkins +Police Juror ,District 4 ,"400 Capitol St., Rm. 101",,Many,LA,71449,318-256-5637,SABINE,William Ruffin,P. O. Box 534,,Many,LA,71449,5,318-256-3135,B,M,D,245,1/8/2012,1/14/2008,Mr. Ruffin +Police Juror ,District 5 ,"400 Capitol St., Rm. 101",,Many,LA,71449,318-256-5637,SABINE,"J. M. ""Bucky"" Slay",P.O. Box 37,,Fisher,LA,71426,5,318-256-5374,W,M,D,245,1/8/2012,1/14/2008,Mr. Slay +Police Juror ,District 6 ,"400 Capitol St., Rm. 101",,Many,LA,71449,318-256-5637,SABINE,Rebecca V. Procell,13 Cynthia Ln.,,Noble,LA,71462,5,318-645-6865,W,F,D,245,1/8/2012,8/24/2009,Ms. Procell +Police Juror ,District 7 ,"400 Capitol St., Rm. 101",,Many,LA,71449,318-256-5637,SABINE,Jerry W. McDonald,218 Gladys Ln.,,Converse,LA,71419,5,318-567-3182,W,M,D,245,1/8/2012,1/14/2008,Mr. McDonald +Police Juror ,District 8 ,"400 Capitol St., Rm. 101",,Many,LA,71449,318-256-5637,SABINE,Albert Ezernack,4222 Hwy. 120,,Zwolle,LA,71486,5,318-645-4307,W,M,D,245,1/8/2012,1/14/2008,Mr. Ezernack +Police Juror ,District 9 ,"400 Capitol St., Rm. 101",,Many,LA,71449,318-256-5637,SABINE,Nolan Patrick,P.O. Box 326,,Pleasant Hill,LA,71065,5,318-796-2982,W,M,R,245,1/8/2012,1/14/2008,Mr. Patrick +Member of School Board ,District 1 ,695 Peterson St.,,Many,LA,71449,318-256-9228,SABINE,Imon W. Jones,138 Wilson Ln.,,Florien,LA,71429,5,318-586-7853,W,M,D,255,12/31/2010,1/1/2007,Mr. Jones +Member of School Board ,District 2 ,695 Peterson St.,,Many,LA,71449,318-256-9228,SABINE,"James A. ""Buddy"" Veuleman",2340 Hwy. 476,,Many,LA,71449,5,318-256-5842,W,M,R,255,12/31/2010,1/1/2007,Mr. Veuleman +Member of School Board ,District 3 ,695 Peterson St.,,Many,LA,71449,318-256-9228,SABINE,"J. Randall ""Randy"" Veuleman",150 Zachary Taylor Rd.,,Many,LA,71449,5,318-256-6633,W,M,O,255,12/31/2010,1/1/2007,Mr. Veuleman +Member of School Board ,District 4 ,695 Peterson St.,,Many,LA,71449,318-256-9228,SABINE,Roderick Davis,210 Daniel St.,,Many,LA,71449,5,318-256-9023,B,M,D,255,12/31/2010,1/1/2007,Mr. Davis +Member of School Board ,District 5 ,695 Peterson St.,,Many,LA,71449,318-256-9228,SABINE,Denyse A. Williams,3697 Texas Hwy.,,Many,LA,71449,5,318-256-6597,W,F,R,255,12/31/2010,1/1/2007,Ms. Williams +Member of School Board ,District 6 ,695 Peterson St.,,Many,LA,71449,318-256-9228,SABINE,Harold L. Stewart,5960 Hwy. 482,,Noble,LA,71462,5,318-645-9329,W,M,D,255,12/31/2010,1/1/2007,Mr. Stewart +Member of School Board ,District 7 ,695 Peterson St.,,Many,LA,71449,318-256-9228,SABINE,"Donnie F. Sistrunk, Sr.",21660 Hwy. 174,,Converse,LA,71419,5,318-567-2524,W,M,D,255,12/31/2010,1/1/2007,Mr. Sistrunk +Member of School Board ,District 8 ,695 Peterson St.,,Many,LA,71449,318-256-9228,SABINE,"James W. ""Jim"" House",1364 Kane St.,,Zwolle,LA,71486,5,318-645-2033,W,M,R,255,12/31/2010,1/1/2007,Mr. House +Member of School Board ,District 9 ,695 Peterson St.,,Many,LA,71449,318-256-9228,SABINE,Jack H. Sanders,411 WPA Rd.,,Pleasant Hill,LA,71065,5,318-796-2828,W,M,D,255,12/31/2010,1/1/2007,Mr. Sanders +Justice of the Peace ,Justice of the Peace & Constable District 1 ,,,,LA,,,SABINE,Jean Sharp,12487 Hwy. 118,,Florien,LA,71429,5,318-586-3898,W,F,R,265,12/31/2014,1/1/2009,Ms. Sharp +Justice of the Peace ,Justice of the Peace & Constable District 2 ,200 Tarver Dr.,,Many,LA,71449,318-256-2182,SABINE,"""Mike"" Tarver",75 Tarver Dr.,,Many,LA,71449,5,318-256-2182,W,M,D,265,12/31/2014,1/1/2009,Mr. Tarver +Justice of the Peace ,Justice of the Peace & Constable District 3 ,9473 Brandon Rd.,,Many,LA,71449,318-645-9568,SABINE,Earl Brandon,9473 Brandon Rd.,,Many,LA,71449,5,318-645-9568,W,M,D,265,12/31/2014,1/1/2009,Mr. Brandon +Justice of the Peace ,Justice of the Peace & Constable District 4 ,3617 Ryals Rd.,,Converse,LA,71419,318-567-2210,SABINE,"Robert ""Bob"" Brumley",3617 Ryals Rd.,,Converse,LA,71419,5,318-567-2210,W,M,D,265,12/31/2014,1/1/2009,Mr. Brumley +Justice of the Peace ,Justice of the Peace & Constable District 5 ,55 Hwy. 175,,Pleasant Hill,LA,71065,318-796-2583,SABINE,LaJuana Williams Mosley,P.O. Box 308,,Pleasant Hill,LA,71065,5,318-315-1072,B,F,D,265,12/31/2014,1/1/2009,Ms. Mosley +Constable ,Justice of the Peace & Constable District 1 ,12487 Hwy. 118,,Florien,LA,71429,318-586-3898,SABINE,Richard Sharp,12487 Hwy 118,,Florien,LA,71429,5,318-586-3898,W,M,O,267,12/31/2014,1/1/2009,Mr. Sharp +Constable ,Justice of the Peace & Constable District 2 ,995 San Antonio Ave.,,Many,LA,71449,318-256-0275,SABINE,Jerry Johnson,111 Calvin Ln.,,Many,LA,71449,5,318-256-6691,W,M,D,267,12/31/2014,1/1/2009,Mr. Johnson +Constable ,Justice of the Peace & Constable District 3 ,101 Rock Hill Ln.,,Noble,LA,71462,318-645-9212,SABINE,Donald Garcie,101 Rock Hill Ln.,,Noble,LA,71462,5,318-645-9212,O,M,D,267,12/31/2014,1/1/2009,Mr. Garcie +Constable ,Justice of the Peace & Constable District 4 ,P.O. Box 202,,Converse,LA,71419,318-567-2254,SABINE,Harvey L. Nichols,P.O. Box 191,,Noble,LA,71462,5,318-567-9400,W,M,D,267,12/31/2014,1/1/2009,Mr. Nichols +Constable ,Justice of the Peace & Constable District 5 ,239 Haley Rd.,,Belmont,LA,71406,318-256-3232,SABINE,Lovell Knowles,P.O. Box 15,,Belmont,LA,71406,5,318-256-3232,W,M,D,267,12/31/2014,1/1/2009,Mr. Knowles +Mayor ,Town of Many ,P. O. Box 1330,,Many,LA,,318-256-3651,SABINE,"""Ken"" Freeman",1055 W. Alabama,,Many,LA,71449,5,318-256-5146,W,M,D,300,6/30/2013,7/1/2009,Mayor Freeman +Mayor ,Town of Zwolle ,P. O. Box 546,,Zwolle,LA,,318-645-6141,SABINE,Roger Lopez,1388 Aster St.,,Zwolle,LA,71486,5,318-645-6445,W,M,D,300,12/31/2010,1/1/2007,Mayor Lopez +Mayor ,Village of Converse ,P. O. Box 40,,Converse,LA,,318-567-3312,SABINE,Troy H. Terrell,P.O. Box 233,,Converse,LA,71419,5,318-567-3283,W,M,R,300,12/31/2012,1/1/2009,Mr. Terrell +Mayor ,Village of Fisher ,P. O. Box 7,,Fisher,LA,,318-256-2001,SABINE,Susan Slay,P.O. Box 37,,Fisher,LA,71426,5,318-256-5374,W,F,D,300,12/31/2012,1/1/2009,Mayor Slay +Mayor ,Village of Florien ,P. O. Box 68,,Florien,LA,,318-586-7286,SABINE,"Eddie Jones, Jr.",220 Pine Tree Ln.,,Florien,LA,71429,5,318-586-7972,W,M,D,300,6/30/2012,7/1/2008,Mayor Jones +Mayor ,Village of Noble ,P. O. Box 129,,Noble,LA,,318-645-6900,SABINE,Gary Mark Rivers,P.O. Box 177,,Noble,LA,71462,5,318-645-4189,O,M,D,300,12/31/2010,1/1/2007,Mr. Rivers +Mayor ,Village of Pleasant Hill ,P. O. Box 125,,Pleasant Hill,LA,,318-796-3680,SABINE,Betty Sue Thomas,P.O. Box 331,,Pleasant Hill,LA,71065,5,318-796-2081,B,F,D,300,12/31/2012,1/1/2009,Mayor Thomas +Chief of Police ,Town of Many ,P. O. Box 1330,,Many,LA,71449,318-256-3651,SABINE,Roger Freeman,1118 Andries St.,,Many,LA,71449,5,318-256-0439,W,M,,305,6/30/2013,7/1/2009,Chief Freeman +Chief of Police ,Town of Zwolle ,P.O. Box 546,,Zwolle,LA,71486,318-645-6141,SABINE,Marvin Frazier,P. O. Box 1146,,Zwolle,LA,71486,5,318-645-6723,B,M,D,305,12/31/2010,1/1/2007,Chief Frazier +Chief of Police ,Village of Converse ,P. O. Box 40,,Converse,LA,71419,318-567-3312,SABINE,John Brock,P. O. Box 37,,Converse,LA,71449,5,318-567-3459,W,M,D,305,12/31/2012,1/1/2009,Chief Brock +Chief of Police ,Village of Fisher ,P. O. Box 7,,Fisher,LA,71426,318-256-2001,SABINE,"Lamar Thomas, Jr.",P.O. Box 53,,Fisher,LA,71426,5,318-256-8882,B,M,D,305,12/31/2012,1/1/2009,Chief Thomas +Chief of Police ,Village of Florien ,P. O. Box 68,,Florien,LA,71429,318-586-7286,SABINE,Herman Love,P.O. Box 444,,Florien,LA,71429,5,318-586-3081,B,M,D,305,6/30/2012,7/1/2008,Chief Love +Chief of Police ,Village of Noble ,P. O. Box 129,,Noble,LA,71462-0129 ,318-645-6900,SABINE,Pat Ebarb,P.O. Box 186,,Noble,LA,71462,5,318-645-9449,W,M,D,305,12/31/2010,1/1/2007,Mr. Ebarb +Chief of Police ,Village of Pleasant Hill ,P. O. Box 125,,Pleasant Hill,LA,71065,318-796-3680,SABINE,Ray Williams,P.O. Box 254,,Pleasant Hill,LA,71065,5,318-796-3430,B,M,D,305,12/31/2012,1/1/2009,Chief Williams +Alderman at Large ,Town of Many ,P. O. Box 1330,,Many,LA,71449,318-256-3651,SABINE,Barbara Richardson Peterson,1050 Vandegaer,,Many,LA,71449,5,318-256-2123,W,F,D,308,6/30/2013,7/1/2009,Ms. Peterson +Alderman ,"District A, Town of Many ",P. O. Box 1330,,Many,LA,71449,318-256-3651,SABINE,James D. Kennedy,1335 Kenilworth St.,,Many,LA,71449,5,318-256-6579,B,M,D,310,6/30/2013,7/1/2009,Mr. Kennedy +Alderman ,"District B, Town of Many ",P. O. Box 1330,,Many,LA,71449,318-256-3651,SABINE,Jeanetta Dean,325 Caledonia St.,,Many,LA,71449,5,318-256-0335,B,F,D,310,6/30/2013,7/1/2009,Ms. Dean +Alderman ,"District C, Town of Many ",P. O. Box 1330,,Many,LA,71449,318-256-3651,SABINE,John Hoagland,260 Capitol St.,,Many,LA,71449,5,318-256-9616,W,M,D,310,6/30/2013,7/1/2009,Mr. Hoagland +Alderman ,"District D, Town of Many ",P. O. Box 1330,,Many,LA,71449,318-256-3651,SABINE,"I.D. ""Wayne"" Bostian",1015 N. Capital,,Many,LA,71449,5,318-256-2053,W,M,,310,6/30/2013,7/1/2009,Mr. Bostian +Alderman ,Village of Converse ,P. O. Box 40,,Converse,LA,71419,318-567-3312,SABINE,Rita Gale Anderson,713 Shaw St.,,Converse,LA,71429,5,318-567-2440,W,F,D,310,12/31/2012,1/1/2009,Ms. Anderson +Alderman ,Village of Converse ,P. O. Box 40,,Converse,LA,71419,318-567-3312,SABINE,Cade Brumley,P.O. Box 85,,Converse,LA,71419,5,318-567-9833,W,M,R,310,12/31/2012,1/1/2009,Mr. Brumley +Alderman ,Village of Converse ,P. O. Box 40,,Converse,LA,71419,318-567-3312,SABINE,"""Ken"" Norman",P.O. Box 65,,Converse,LA,71419,5,318-567-3755,W,M,O,310,12/31/2012,1/1/2009,Mr. Norman +Alderman ,Village of Fisher ,P. O. Box 7,,Fisher,LA,71426,318-256-2001,SABINE,Amy Johnson,P.O. Box 2,,Fisher,LA,71426,5,318-256-5583,W,F,R,310,12/31/2012,1/1/2009,Ms. Johnson +Alderman ,Village of Fisher ,P. O. Box 7,,Fisher,LA,71426,318-256-2001,SABINE,Johnnie Maxie,P.O. Box 34,,Fisher,LA,71426,5,318-590-0293,B,M,O,310,12/31/2012,1/1/2009,Mr. Maxie +Alderman ,Village of Fisher ,P. O. Box 7,,Fisher,LA,71426,318-256-2001,SABINE,Terry Pantalion,P.O. Box 172,,Fisher,LA,71426,5,318-256-2736,W,M,D,310,12/31/2012,1/1/2009,Mr. Pantalion +Alderman ,Village of Florien ,P. O. Box 68,,Florien,LA,71429,318-586-7286,SABINE,Georgia Jett,P.O. Box 303,,Florien,LA,71429,5,318-586-7185,W,F,R,310,6/30/2012,7/1/2008,Ms. Jett +Alderman ,Village of Florien ,P. O. Box 68,,Florien,LA,71429,318-586-7286,SABINE,Bradley Marr,P.O. Box 952,,Many,LA,71449,5,318-586-7212,W,M,,310,6/30/2012,7/1/2008,Mr. Marr +Alderman ,Village of Florien ,P. O. Box 68,,Florien,LA,71429,318-586-7286,SABINE,Suzanne Williams,215 W. Front St.,,Florien,LA,71429,5,318-586-4963,W,F,R,310,6/30/2012,7/1/2008,Ms. Williams +Alderman ,Village of Noble ,P. O. Box 129,,Noble,LA,71462-0129 ,318-645-6900,SABINE,Terry H. Ebarb,P.O. Box 156,,Noble,LA,71462,5,318-645-4600,W,M,D,310,12/31/2010,1/1/2007,Mr. Ebarb +Alderman ,Village of Noble ,P. O. Box 129,,Noble,LA,71462-0129 ,318-645-6900,SABINE,Amy E. Remedies,P.O. Box 131,,Noble,LA,71462,5,318-645-9594,O,F,,310,12/31/2010,1/1/2007,Mr. Remedies +Alderman ,Village of Noble ,P. O. Box 129,,Noble,LA,71462-0129 ,318-645-6900,SABINE,Janice C. Rike,P.O. Box 206,,Noble,LA,71462,5,318-645-9316,W,F,D,310,12/31/2010,1/1/2007,Ms. Rike +Alderman ,Village of Pleasant Hill ,P. O. Box 125,,Pleasant Hill,LA,71065,318-796-3680,SABINE,Glenn Arnold,P.O. Box 213,,Pleasant Hill,LA,71065,5,318-796-3758,W,M,D,310,12/31/2012,1/1/2009,Mr. Arnold +Alderman ,Village of Pleasant Hill ,P. O. Box 125,,Pleasant Hill,LA,71065,318-796-3680,SABINE,Walter Lee,8631 Stoddard St.,,Pleasant Hill,LA,71065,5,318-796-2202,W,M,D,310,12/31/2012,1/1/2009,Mr. Lee +Alderman ,Village of Pleasant Hill ,P. O. Box 125,,Pleasant Hill,LA,71065,318-796-3680,SABINE,Dorothy T. Spencer,P.O. Box 300,,Pleasant Hill,LA,71065,5,318-796-3618,B,F,D,310,12/31/2012,1/1/2009,Ms. Spencer +Councilman ,Town of Zwolle ,P. O. Box 546,,Zwolle,LA,71486,318-645-6141,SABINE,Carolyn Cutright,P. O. Box 430,,Zwolle,LA,71486,5,318-645-7674,B,F,D,310,12/31/2010,1/1/2007,Ms. Cutright +Councilman ,Town of Zwolle ,P. O. Box 546,,Zwolle,LA,71486,318-645-6141,SABINE,Martha Rivers Henderson,18585 Hwy. 191,,Zwolle,LA,71486,5,318-645-9573,W,F,D,310,12/31/2010,1/1/2007,Ms. Henderson +Councilman ,Town of Zwolle ,P. O. Box 546,,Zwolle,LA,71486,318-645-6141,SABINE,"Donald H. ""Hootie"" Remedies",P. O. Box 1239,,Zwolle,LA,71486,5,318-645-6093,W,M,D,310,12/31/2010,1/1/2007,Mr. Remedies +Councilman ,Town of Zwolle ,P. O. Box 546,,Zwolle,LA,71486,318-645-6141,SABINE,"""Rich"" Remedies",P.O. Box 876,,Zwolle,LA,71486,5,318-645-2742,O,M,D,310,12/31/2010,1/1/2007,Mr. Remedies +Councilman ,Town of Zwolle ,P. O. Box 546,,Zwolle,LA,71486,318-645-6141,SABINE,Allen Rivers,2830 Hwy. 120,,Zwolle,LA,71486,5,318-645-4300,W,M,D,310,12/31/2010,1/1/2007,Mr. Rivers +DPEC Member ,at Large ,,,,LA,,,ST. BERNARD,"Salvador Edward Gutierrez, Jr.",2137 Jackson Blvd.,,Chalmette,LA,70043,5,504-277-7755,W,M,D,54,2/20/2012,2/20/2008,Mr. Gutierrez +DPEC Member ,at Large ,,,,LA,,,ST. BERNARD,Petrina Ruiz Imbraguglio,3528 Corinne Ave.,,Chalmette,LA,70043,5,504-279-0765,W,F,D,54,2/20/2012,2/20/2008,Ms. Imbraguglio +DPEC Member ,at Large ,,,,LA,,,ST. BERNARD,Jo Ann Celino Lane,P.O. Box 168,,Chalmette,LA,70044,5,504-508-7668,W,F,D,54,2/20/2012,2/20/2008,Ms. Lane +DPEC Member ,at Large ,,,,LA,,,ST. BERNARD,Lena Torres Nunez,209 E. Urquhart St.,,Chalmette,LA,70043,5,504-491-5266,W,F,D,54,2/20/2012,2/20/2008,Ms. Nunez +DPEC Member ,at Large ,,,,LA,,,ST. BERNARD,James John Pohlmann,2232 Landry Ct.,,Meraux,LA,70075,5,504-583-3373,W,M,D,54,2/20/2012,2/20/2008,Mr. Pohlmann +DPEC Member at Large ,Eastern Division ,,,,LA,,,ST. BERNARD,Deborah Abram Geiser,3901 Ventura Dr.,,Chalmette,LA,70043,5,504-278-7608,W,F,D,54,2/20/2012,2/20/2008, +DPEC Member at Large ,Western Division ,,,,LA,,,ST. BERNARD,Mary Ann Hand,62 Carolyn Ct.,,Arabi,LA,70032,5,504-277-7755,W,F,D,54,2/20/2012,2/20/2008, +DPEC Member ,District A ,,,,LA,,,ST. BERNARD,Bryan Maloye Polk,2027 Sauvage Ave.,,Marrero,LA,70072-4734,10,504-347-9904,W,M,D,56,2/20/2012,2/20/2008,Mr. Polk +DPEC Member ,District B ,,,,LA,,,ST. BERNARD,Michael Aaron Gorbaty,2506 Pakenham Dr.,,Chalmette,LA,70043,5,504-442-2908,W,M,D,56,2/20/2012,2/20/2008,Mr. Gorbaty +DPEC Member ,District C ,,,,LA,,,ST. BERNARD,"Newell ""Suzy"" Andry",210 Lorelei Cir.,,Slidell,LA,70458,5,504-231-2237,W,F,D,56,2/20/2012,2/20/2008,Ms. Andry +DPEC Member ,District D ,,,,LA,,,ST. BERNARD,"Errol Louis Schultz, Jr.",2800 Meadow Dr.,,Violet,LA,70092,5,504-650-7787,W,M,D,56,2/20/2012,2/20/2008,Mr. Schultz +DPEC Member ,District E ,,,,LA,,,ST. BERNARD,"Marie Louise ""Weeshee"" Melerine",605 Delacroix Hwy.,,St. Bernard,LA,70085,5,504-457-1461,W,F,D,56,2/20/2012,2/20/2008,Ms. Melerine +RPEC Member ,at Large ,,,,LA,,,ST. BERNARD,Barry C. Bernadas,P.O. Box 28,,Chalmette,LA,70044,5,504-309-9464,W,M,R,64,2/20/2012,3/12/2008,Mr. Bernadas +RPEC Member ,at Large ,,,,LA,,,ST. BERNARD,"Anthony ""Tony"" LaNasa, III",205 Llama Dr.,,Arabi,LA,70032,5,504-452-0358,W,M,R,64,2/20/2012,2/20/2008,Mr. LaNasa +RPEC Member ,at Large ,,,,LA,,,ST. BERNARD,"""Tony"" Micheu",4001 Jean Lafitte Pky.,,Chalmette,LA,70043,5,504-309-6686,W,M,R,64,2/20/2012,2/20/2008,Mr. Micheu +RPEC Member ,at Large ,,,,LA,,,ST. BERNARD,"Joseph A. ""Joe"" Oster, Jr.",308 W. Urquhart St.,,Chalmette,LA,70043,5,504-228-2140,W,M,R,64,2/20/2012,2/20/2008,Mr. Oster +RPEC Member ,at Large ,,,,LA,,,ST. BERNARD,David Peralta,4408 Newport Dr.,,Meraux,LA,70075,5,504-220-7334,W,M,R,64,2/20/2012,2/20/2008,Mr.Peralta +RPEC Member at Large ,Western Division ,,,,LA,,,ST. BERNARD,Michael Bayham,P. O. Box 1866,,Chalmette,LA,,0,504-258-4467,W,M,R,64,2/20/2012,2/20/2008,Mr. Bayham +RPEC Member ,District A ,,,,LA,,,ST. BERNARD,"Ray Lauga, Jr.",725 LeBeau St.,,Arabi,LA,70032,5,504-271-8731,W,M,R,66,2/20/2012,2/20/2008,Mr. Lauga +RPEC Member ,District B ,,,,LA,,,ST. BERNARD,Gwen Baldo Burkhardt,3309 Park Blvd.,,Chalmette,LA,70043,5,504-271-7960,W,F,R,66,2/20/2012,2/20/2008,Ms. Burkhardt +RPEC Member ,District C ,,,,LA,,,ST. BERNARD,,,,,,,0,,,,,66,,, +RPEC Member ,District D ,,,,LA,,,ST. BERNARD,,,,,,,0,,,,,66,,, +RPEC Member ,District E ,,,,LA,,,ST. BERNARD,,,,,,,0,,,,,66,,, +Sheriff ,,P. O. Box 168,,Chalmette,LA,70044,504-271-2504,ST. BERNARD,Jack A. Stephens,"8301 W. Judge Perez Dr., Ste. 210",,Chalmette,LA,70043,5,504-676-1020,W,M,D,225,6/30/2012,7/1/2008,Sheriff Stevens +Clerk of Court ,,P. O. Box 1746,,Chalmette,LA,70044-1746,504-271-3434,ST. BERNARD,Lena R. Torres,P.O. Box 1746,,Chalmette,LA,70044-1746,10,504-279-6407,W,F,D,230,6/30/2012,7/1/2008,Ms. Torres +Assessor ,,"Chalmette Courthouse, Rm. 105",,Chalmette,LA,70043,504-279-6379,ST. BERNARD,Marlene M. Vinsanau,116 West St. Avide St.,,Chalmette,LA,70043,5,504-279-7922,W,F,D,235,12/31/2012,1/1/2009,Ms. Vinsanau +Coroner ,,"9000 Patricia St., Ste. 100",,Chalmette,LA,70043,504-277-8941,ST. BERNARD,Bryan Johnson Bertucci,3732 Corinne Ave.,,Chalmette,LA,70043,5,504-277-5156,W,M,D,240,3/25/2012,3/24/2008,Mr. Bertucci +Parish President ,,8201 W. Judge Perez Dr.,,Chalmette,LA,70043,504-278-4228,ST. BERNARD,"Craig P. Taffaro, Jr.",3225 Coulon Dr.,,Meraux,LA,70075,5,504-276-4656,W,M,R,243,1/9/2012,1/14/2008,Mr. Taffaro +Councilman at Large ,Eastern Division ,8201 W. Judge Perez Dr.,,Chalmette,LA,70043,504-278-4228,ST. BERNARD,Wayne J. Landry,2940 Bayou Rd.,,St. Bernard,LA,70085,5,504-272-0234,W,M,D,244,1/9/2012,10/14/2008,Mr. Landry +Councilman at Large ,Western Division ,8201 W. Judge Perez Dr.,,Chalmette,LA,70043,504-278-4228,ST. BERNARD,"Frank P. Auderer, Jr.",2120 Gallant Dr.,,Chalmette,LA,70043,5,504-324-8885,W,M,D,244,1/9/2012,1/14/2008,Mr. Auderer +Councilman ,District A ,8201 W. Judge Perez Dr.,,Chalmette,LA,,504-278-4228,ST. BERNARD,"Ray Lauga, Jr.",725 LeBeau St.,,Arabi,LA,70032,5,504-278-8977,W,M,R,245,1/9/2012,1/14/2008,Mr. Lauga +Councilman ,District B ,8201 W. Judge Perez Dr.,,Chalmette,LA,70043,504-278-4228,ST. BERNARD,George Cavignac,2825 Lloyds Ave.,,Chalmette,LA,70043,5,504-913-3279,W,M,R,245,1/9/2012,1/14/2008,Mr. Cavignac +Councilman ,District C ,8201 W. Judge Perez Dr.,,Chalmette,LA,70043,504-278-4228,ST. BERNARD,"Kenneth W. ""Kenny"" Henderson",3804 Palmisano Blvd.,,Chalmette,LA,70043,5,504-872-0322,W,M,R,245,1/9/2012,1/14/2008,Mr. Henderson +Councilman ,District D ,8201 W. Judge Perez Dr.,,Chalmette,LA,70043,504-278-4228,ST. BERNARD,"""Mike"" Ginart",2104 Olivia St.,,Meraux,LA,70075,5,504-373-6537,W,M,,245,1/9/2012,1/14/2008,Mr. Ginart +Councilman ,District E ,8201 W. Judge Perez Dr.,,Chalmette,LA,70043,504-278-4228,ST. BERNARD,"""Fred"" Everhardt, Jr.",2400 Gina Dr.,,St. Bernard,LA,70085,5,504-415-6809,W,M,D,245,1/9/2012,1/14/2008,Mr. Everhardt +Member of School Board ,District 1 ,200 East St. Bernard Hwy.,,Chalmette,LA,70043,504-301-2013,ST. BERNARD,"Herman J. Bonnette, Sr.",9361 Country Lake Dr.,,Baton Rouge,LA,70817,5,225-778-5907,W,M,D,255,12/31/2010,1/1/2007,Mr. Bonnette +Member of School Board ,District 2 ,200 East St. Bernard Hwy.,,Chalmette,LA,70043,504-301-2013,ST. BERNARD,William H. Egan,111 Berry Wood Ct.,,Slidell,LA,70461,5,504-342-2445,W,M,D,255,12/31/2010,1/1/2007,Mr. Egan +Member of School Board ,District 3 ,200 East St. Bernard Hwy.,,Chalmette,LA,70043,504-301-2013,ST. BERNARD,Lynette R. DiFatta,825 Terry Dr.,,Arabi,LA,70032,5,504-583-2132,W,F,R,255,12/31/2010,1/1/2007,Ms. DiFatta +Member of School Board ,District 4 ,200 East St. Bernard Hwy.,,Chalmette,LA,70043,504-301-2013,ST. BERNARD,Sharon Hanzo,461 Secluded Grove Loop,,Madisonville,LA,70447,5,985-966-8831,W,F,D,255,12/31/2010,1/1/2007,Ms. Hanzo +Member of School Board ,District 5 ,200 East St. Bernard Hwy.,,Chalmette,LA,70043,504-301-2013,ST. BERNARD,"Joseph V. ""Joe"" Long, Sr.",P.O. Box 765,,Chalmette,LA,70044,5,504-251-0495,W,M,R,255,12/31/2010,1/1/2007,Mr. Long +Member of School Board ,District 6 ,200 East St. Bernard Hwy.,,Chalmette,LA,70043,504-301-2013,ST. BERNARD,Hugh C. Craft,P.O. Box 530,,Chalmette,LA,70044,5,504-451-4248,W,M,D,255,12/31/2010,1/1/2007,Mr. Craft +Member of School Board ,District 7 ,200 East St. Bernard Hwy.,,Chalmette,LA,70043,504-301-2013,ST. BERNARD,Diana B. Dysart,3512 Corinne Ave.,,Chalmette,LA,70043,5,504-271-2450,W,F,O,255,12/31/2010,1/1/2007,Ms. Dysart +Member of School Board ,District 8 ,200 East St. Bernard Hwy.,,Chalmette,LA,70043,504-301-2013,ST. BERNARD,"""Cliff"" Englande",2813 Mayflower St.,,Meraux,LA,70075,5,504-439-5523,W,M,D,255,12/31/2010,1/1/2007,Mr. Englade +Member of School Board ,District 9 ,200 East St. Bernard Hwy.,,Chalmette,LA,70043,504-301-2013,ST. BERNARD,"Henderson Lewis, Jr.",P.O. Box 883,,Violet,LA,70092,5,504-931-0451,B,M,D,255,12/31/2010,1/1/2007,Mr. Lewis +Member of School Board ,District 10 ,200 East St. Bernard Hwy.,,Chalmette,LA,70043,504-301-2013,ST. BERNARD,Perry Nicosia,1019 W. Judge Perez Dr.,,Chalmette,LA,70043,5,504-279-1000,W,M,D,255,12/31/2010,1/1/2007,Mr. Nicosia +Member of School Board ,District 11 ,200 East St. Bernard Hwy.,,Chalmette,LA,70043,504-301-2013,ST. BERNARD,Donald D. Campbell,2121 Sylvia Blvd.,,St. Bernard,LA,70085,5,504-615-8867,W,M,R,255,12/31/2010,1/1/2007,Mr. Campbell +Justice of the Peace ,Justice of the Peace Ward A ,,,,LA,,,ST. BERNARD,Kevin J. Hoffman,601 Lebeau St.,,Arabi,LA,70032,5,504-202-1934,W,M,R,265,12/31/2014,1/1/2009, +Justice of the Peace ,Justice of the Peace Ward B ,901 Badger Dr.,,Arabi,LA,70032,504-277-6769,ST. BERNARD,George V. Wollfarth,901 Badger Dr.,,Arabi,LA,70032,5,504-982-1670,W,M,D,265,12/31/2014,1/1/2009,Mr. Wollfarth +Justice of the Peace ,Justice of the Peace Ward C ,91 W.Claiborne Sq.,,Chalmette,LA,70043,504-279-5681,ST. BERNARD,"""Tony"" Micheu",4001 Jean Lafitte Pkwy.,,Chalmette,LA,70043,5,504-913-5055,W,M,R,265,12/31/2014,1/1/2009,Mr. Micheu +Justice of the Peace ,Justice of the Peace Ward D ,2110 Packenham Dr.,,Chalmette,LA,70043,504-279-3303,ST. BERNARD,Debra B. Bouterie,2110 Packenham Dr.,,Chalmette,LA,70043,5,504-279-3303,W,F,R,265,12/31/2014,1/1/2009,Ms. Bouterie +Justice of the Peace ,Justice of the Peace Ward E ,3020 Paris Rd.,,Chalmette,LA,70043,504-279-3789,ST. BERNARD,Luann Landry,3020 Paris Rd.,,Chalmette,LA,70043,5,504-277-4256,W,F,R,265,12/31/2014,1/1/2009,Ms. Landry +Justice of the Peace ,Justice of the Peace Ward F ,2317 Gallo Dr.,,Chamette,LA,70043,504-271-5586,ST. BERNARD,Michael A. McNab,2003 Pelitere Dr.,,Chalmette,LA,70043,5,504-277-4955,W,M,D,265,12/31/2014,1/1/2009,Mr. McNab +Justice of the Peace ,Justice of the Peace Ward G ,3405 Karen Dr.,,Chamette,LA,70043,504-279-6631,ST. BERNARD,Howard Luna,3200 Karen Dr.,,Chalmette,LA,70043,5,504-271-1632,,,D,265,12/31/2014,1/1/2009,Mr. Luna +Justice of the Peace ,Justice of the Peace Ward H ,2704 Jacob Dr.,,Chalmette,LA,70043,504-276-0205,ST. BERNARD,Charles J. Licciardi,1929 Licciardi Dr.,,Chalmette,LA,70043,5,504-251-1903,W,M,,265,12/31/2014,1/1/2009,Mr. Licciardi +Justice of the Peace ,Justice of the Peace Ward I ,3001 Maureen Ln.,,Meraux,LA,70075,504-277-2261,ST. BERNARD,Glenn G. Landry,3001 Maureen Ln.,,Meraux,LA,70075,5,504-277-2261,W,M,D,265,12/31/2014,1/1/2009,Mr. Landry +Justice of the Peace ,Justice of the Peace Ward J ,2116 Repose St.,,Violet,LA,70092,504-682-3705,ST. BERNARD,Barbara Manuel,P.O. Box 1784,,Violet,LA,70092,5,504-858-1553,B,F,D,265,12/31/2014,1/1/2009,Ms. Manuel +Justice of the Peace ,Justice of the Peace Ward K ,2100 Nicosia Pl.,,St. Bernard,LA,70085,504-682-3010,ST. BERNARD,Bruce Jackson,2012 Kingfisher Dr.,,St. Bernard,LA,70085,5,504-682-8203,W,M,D,265,12/31/2014,1/1/2009,Mr. Jackson +Constable ,Justice of the Peace Ward A ,2217 Mehle Ave.,,Arabi,LA,70032,504-279-9763,ST. BERNARD,"""Mitch"" Perkins",6 Brittany Pl.,,Arabi,LA,70032,5,504-250-3683,W,M,D,267,12/31/2014,1/1/2009,Mr. Perkins +Constable ,Justice of the Peace Ward B ,1400 Perrin Dr.,,Arabi,LA,70032,504-279-3041,ST. BERNARD,"Anthony ""Tony"" La Nasa, III",205 Llama Dr.,,Arabi,LA,70032,5,504-452-0358,W,M,R,267,12/31/2014,1/1/2009,Mr. La Nasa +Constable ,Justice of the Peace Ward C ,8440 Creole Dr.,,Chalmette,LA,70043,504-279-9781,ST. BERNARD,"Henry H. Vandenborre, Jr.",P. O. Box 321,,Chalmette,LA,70044,5,504-277-4417,W,M,D,267,12/31/2014,1/1/2009,Mr. Vandenborre +Constable ,Justice of the Peace Ward D ,3318 Park Blvd.,,Chalmette,LA,70043,504-279-2027,ST. BERNARD,"William F. ""Billy"" Cure",3318 Park Blvd.,,Chalmette,LA,70043,5,504-583-9840,W,M,D,267,12/31/2014,1/1/2009, +Constable ,Justice of the Peace Ward E ,3009 Buffon St.,,Chalmette,LA,70043,504-271-3159,ST. BERNARD,"Henry J. Maitre, III",211 E. St. Jean Baptiste St.,,Chalmette,LA,70043,5,504-583-7730,W,M,R,267,12/31/2014,1/1/2009,Mr. Maitre +Constable ,Justice of the Peace Ward F ,2201 Riverland Dr.,,Chalmette,LA,70043,504-279-2516,ST. BERNARD,Hillary Tinney Miller,2201 Riverland Dr.,,Chalmette,LA,70043,5,504-279-2516,W,F,,267,12/31/2014,1/22/2009,Ms. Miller +Constable ,Justice of the Peace Ward G ,3916 Mumphrey Rd.,,Chalmette,LA,70043,504-279-4853,ST. BERNARD,Brian G. Reaney,3816 Palmisano Blvd.,,Chalmette,LA,70043,5,504-277-0524,W,M,R,267,12/31/2014,1/1/2009,Mr. Reaney +Constable ,Justice of the Peace Ward H ,2125 Despaux Dr.,,Chalmette,LA,70043,504-277-6078,ST. BERNARD,Craig Miller,2304 Lena Dr.,,Chalmette,LA,70043,5,504-430-7901,W,M,D,267,12/31/2014,1/1/2009,Mr. Miller +Constable ,Justice of the Peace Ward I ,2316 Aramis Dr.,,Meraux,LA,70075,504-301-1107,ST. BERNARD,John Nicholas Green,2716 Saint Marie St.,,Meraux,LA,70075,5,504-277-8754,W,M,R,267,12/31/2014,1/1/2009,Mr. Green +Constable ,Justice of the Peace Ward J ,P.O. Box 104,,Violet,LA,70092,504-682-2805,ST. BERNARD,"Benjamin P. ""Benny"" Ruiz",P.O. Box 104,,Violet,LA,70092,5,504-232-8749,W,M,D,267,12/31/2014,1/1/2009,Mr. Ruiz +Constable ,Justice of the Peace Ward K ,3005 Hopedale Hwy.,,St. Bernard,LA,70085,504-676-3948,ST. BERNARD,"Anthony ""Tony"" Guerra",1828 Russell Pl.,,St. Bernard,LA,70085,5,504-682-9722,W,M,D,267,12/31/2014,1/1/2009,Mr. Guerra +DPEC Member ,at Large ,,,,LA,,,ST. CHARLES,Adam Eitmann,240 Oak Ln.,,Luling,LA,70070,5,985-212-9982,W,M,D,54,2/20/2012,2/20/2008,Mr. Eitmann +DPEC Member at Large ,Division A ,,,,LA,,,ST. CHARLES,"Paul ""Joey"" Murray, III",13880 River Rd.,,Destrehan,LA,70047,5,985-764-7275,W,M,D,54,2/20/2012,2/20/2008,Mr. Murray +DPEC Member at Large ,Division B ,,,,LA,,,ST. CHARLES,Phillip Eitmann,240 Oak Ln.,,Luling,LA,70070,5,985-233-9649,W,M,D,54,2/20/2012,2/20/2008, +DPEC Member ,District 1 ,P.O. Box 424,,Hahnville,LA,70057,985-783-6632,ST. CHARLES,,,,,,,0,,,,,56,,, +DPEC Member ,District 2 ,,,,LA,,,ST. CHARLES,,,,,,,0,,,,,56,,, +DPEC Member ,District 3 ,,,,LA,,,ST. CHARLES,Chad Murray,P.O. Box 278,,Destrehan,LA,70047,5,985-764-2601,W,M,D,56,2/20/2012,2/20/2008,Mr. Murray +DPEC Member ,District 4 ,,,,LA,,,ST. CHARLES,,,,,,,0,,,,,56,,, +DPEC Member ,District 5 ,,,,LA,,,ST. CHARLES,,,,,,,0,,,,,56,,, +DPEC Member ,District 6 ,,,,LA,,,ST. CHARLES,Michael J. Tabb,124 St. Charles St.,,Norco,LA,70079,5,985-764-3158,W,M,D,56,2/20/2012,2/20/2008,Mr. Tabb +DPEC Member ,District 7 ,,,,LA,,,ST. CHARLES,,,,,,,0,,,,,56,,, +RPEC Member ,at Large ,,,,LA,,,ST. CHARLES,George J. Fischer,106 Beaupre Dr.,,Luling,LA,70070,5,985-785-2819,W,M,R,64,2/20/2012,2/20/2008,Mr. Fischer +RPEC Member ,at Large ,,,,LA,,,ST. CHARLES,Martha Turner Laque,239 Beaupre Dr.,,Luling,LA,70070,5,985-331-8598,W,F,R,64,2/20/2012,2/20/2008, +RPEC Member ,at Large ,,,,LA,,,ST. CHARLES,"Donald Lichenstein, III",P. O. Box 88,,Paradis,LA,70080,5,504-915-2111,W,M,R,64,2/20/2012,2/20/2008,Mr. Lichenstein +RPEC Member ,at Large ,,,,LA,,,ST. CHARLES,Lance Marino,660 Pine St.,,Norco,LA,70079,5,985-725-1594,W,M,R,64,2/20/2012,2/20/2008, +RPEC Member ,at Large ,,,,LA,,,ST. CHARLES,Philip Strother,545 Hwy. 306,,Paradis,LA,70080,5,985-758-7163,W,M,R,64,2/20/2012,2/20/2008,Mr. Strother +RPEC Member at Large ,Division A ,,,,LA,,,ST. CHARLES,Marilyn M. Richoux,4 Stanton Hall Dr.,,Destrehan,LA,70047,5,985-764-2698,W,F,R,64,2/20/2012,2/20/2008, +RPEC Member at Large ,Division B ,,,,LA,,,ST. CHARLES,Garrett Monti,105 First St.,,Luling,LA,70070,5,504-908-5432,W,M,R,64,2/20/2012,2/20/2008, +RPEC Member ,District 1 ,,,,LA,,,ST. CHARLES,Cory Faucheux,3726 Tara Dr.,,Destrehan,LA,70047,5,504-251-5726,W,M,R,66,2/20/2012,2/20/2008,Mr. Faucheux +RPEC Member ,District 2 ,,,,LA,,,ST. CHARLES,Louise Broach Fischer,106 Beaupre Dr.,,Luling,LA,70070,5,985-785-2819,W,F,R,66,2/20/2012,2/20/2008,Mr. Fischer +RPEC Member ,District 3 ,,,,LA,,,ST. CHARLES,Paul Barletta,17 Hermitage Dr.,,Destrehan,LA,70047,5,985-764-8267,W,M,R,66,2/20/2012,2/20/2008,Mr. Barletta +RPEC Member ,District 4 ,,,,LA,,,ST. CHARLES,"Richard Dufrene, Jr.",146 Pine St.,,Des Allemands,LA,70030,5,,W,M,R,66,2/20/2012,2/20/2008, +RPEC Member ,District 5 ,,,,LA,,,ST. CHARLES,,,,,,,0,,,,,66,,, +RPEC Member ,District 6 ,,,,LA,,,ST. CHARLES,Marcus M. Lambert,200 Edgewood Ln.,,Montz,LA,70068,5,985-652-2243,W,M,R,66,2/20/2012,2/20/2008,Mr. Lambert +RPEC Member ,District 7 ,,,,LA,,,ST. CHARLES,John D. Brady,P. O. Box 1513,,Luling,LA,70070,5,985-785-9940,W,M,R,66,2/20/2012,2/20/2008,Mr. Brady +Sheriff ,,P. O. Box 426,,Hahnville,LA,70057,985-783-6237,ST. CHARLES,"Gregory C. ""Greg"" Champagne",P.O. Box 426,,Hahnville,LA,70057,5,985-785-0688,W,M,R,225,6/30/2012,7/1/2008,Sheriff Champagne +Clerk of Court ,,P. O. Box 424,,Hahnville,LA,70057,985-783-6632,ST. CHARLES,"Charles ""Charlie"" Oubre, Jr.",P. O. Box 424,,Hahnville,LA,70057,5,985-783-2712,W,M,D,230,6/30/2012,7/1/2008,Mr. Oubre +Assessor ,,P. O. Box 303,,Hahnville,LA,70057,504-783-6281,ST. CHARLES,"Clyde A. ""Rock"" Gisclair",12625 River Rd.,,Luling,LA,70070,5,985-785-2230,W,M,R,235,12/31/2012,1/1/2009,Mr. Gisclair +Coroner ,,1057 Paul Millard Rd.,,Luling,LA,70070,985-785-3693,ST. CHARLES,Brian Brogle,50 Villere Pl.,,Destrehan,LA,70047,5,504-914-6008,W,M,R,240,3/25/2012,3/24/2008,Mr. Brogle +Parish President ,,P.O. Box 302,,Hahnville,LA,70057,985-783-5000,ST. CHARLES,"""V.J."" St. Pierre, Jr.",P.O. Box 33,,Destrehan,LA,70047,5,985-764-9383,W,M,D,243,1/9/2012,1/14/2008,Mr. St. Pierre +Councilman at Large ,Division A ,P.O. Box 302,,Hahnville,LA,70057,985-783-5000,ST. CHARLES,Carolyn K. Schexnaydre,269 Schexnaydre Ln.,,Destrehan,LA,70047,5,985-764-0064,W,F,D,244,1/9/2012,1/14/2008,Ms. Schexnaydre +Councilman at Large ,Division B ,P.O. Box 302,,Hahnville,LA,70057,985-783-5000,ST. CHARLES,Terry Authement,102 Angel Dr.,,Boutte,LA,70039,5,985-758-2509,W,M,D,244,1/9/2012,1/14/2008,Mr. Authement +Councilman ,District 1 ,P.O. Box 302,,Hahnville,LA,,985-783-5000,ST. CHARLES,"Billy Raymond, Sr.",520 Courthouse Ln.,,Hahnville,LA,70057,5,985-783-2612,B,M,D,245,1/9/2012,1/14/2008,Mr. Raymond +Councilman ,District 2 ,P.O. Box 302,,Hahnville,LA,70057,985-783-5000,ST. CHARLES,Shelley Tastet,11 Cathy Dr.,,Luling,LA,70070,5,985-785-9459,W,M,D,245,1/9/2012,1/14/2008,Mr. Tastet +Councilman ,District 3 ,P.O. Box 302,,Hahnville,LA,70057,985-783-5000,ST. CHARLES,Wendy Edler Benedetto,13 Ashland Dr.,,Destrehan,LA,70047,5,504-382-7492,W,F,R,245,1/9/2012,1/14/2008,"Ms, Benedetto " +Councilman ,District 4 ,P.O. Box 302,,Hahnville,LA,70057,985-783-5000,ST. CHARLES,Paul J. Hogan,P.O. Box 250,,Des Allemands,LA,70030,5,504-615-4862,W,M,R,245,1/9/2012,1/14/2008,Mr. Hogan +Councilman ,District 5 ,P.O. Box 302,,Hahnville,LA,70057,985-783-5000,ST. CHARLES,"""Larry"" Cochran",114 Oaklawn Rdge.,,St. Rose,LA,70087,5,504-305-6185,W,M,D,245,1/9/2012,1/14/2008,Mr. Cochran +Councilman ,District 6 ,P.O. Box 302,,Hahnville,LA,70057,985-783-5000,ST. CHARLES,Marcus M. Lambert,200 Edgewood Ln.,,Montz,LA,70068,5,985-652-2243,W,M,R,245,1/9/2012,1/14/2008,Mr. Lambert +Councilman ,District 7 ,P.O. Box 302,,Hahnville,LA,70057,985-783-5000,ST. CHARLES,Dennis Nuss,127 Braden Dr.,,Luling,LA,70070,5,985-785-6523,W,M,R,245,1/9/2012,1/14/2008,Mr. Nuss +Member of School Board ,District 1 ,13855 River Rd.,,Luling,LA,70070,985-785-6289,ST. CHARLES,Ellis Alexander,P.O. Box 87,,Hahnville,LA,70057,5,985-783-2641,B,M,,255,12/31/2010,1/1/2007,Mr. Alexander +Member of School Board ,District 2 ,13855 River Rd.,,Luling,LA,70070,985-785-6289,ST. CHARLES,Mary Bergeron,105 Laurel Ct.,,Luling,LA,70070,5,985-785-6680,W,F,R,255,12/31/2010,1/1/2007,Ms. Bergeron +Member of School Board ,District 3 ,13855 River Rd.,,Luling,LA,70070,985-785-6289,ST. CHARLES,Dennis Naquin,6 Stanton Hall Dr.,,Destrehan,LA,70047,5,985-764-0946,W,M,R,255,12/31/2010,1/1/2007,Mr. Naquin +Member of School Board ,District 4 ,13855 River Rd.,,Luling,LA,70070,985-785-6289,ST. CHARLES,"C. H. ""Sonny"" Savoie",P.O. Box 1550,,Paradis,LA,70080,5,985-758-2494,W,M,D,255,12/31/2010,1/1/2007,Mr. Savoie +Member of School Board ,District 5 ,13855 River Rd.,,Luling,LA,70070,985-785-6289,ST. CHARLES,John L. Smith,P.O. Box 238,,St. Rose,LA,70087,5,504-469-0167,B,M,D,255,12/31/2010,1/1/2007,Mr. Smith +Member of School Board ,District 6 ,13855 River Rd.,,Luling,LA,70070,985-785-6289,ST. CHARLES,"""Jay"" Robichaux",P. O. Box 184,,Norco,LA,70079,5,504-416-1571,W,M,,255,12/31/2010,1/1/2007,Mr. Robichaux +Member of School Board ,District 7 ,13855 River Rd.,,Luling,LA,70070,985-785-6289,ST. CHARLES,Steve Crovetto,P.O. Box 648,,Boutte,LA,70039,5,985-785-1143,W,M,D,255,12/31/2010,1/1/2007,Mr. Crovetto +Member of School Board ,District 8 ,13855 River Rd.,,Luling,LA,70070,985-785-6289,ST. CHARLES,"""Al"" Suffrin",241 Villere Dr.,,Destrehan,LA,70047,5,985-764-4288,W,M,R,255,12/31/2010,1/1/2007,Mr. Suffrin +Justice of the Peace ,Justice of the Peace District 1 ,P.O. Box 63,,Hahnville,LA,70057,985-783-6717,ST. CHARLES,Edna Campbell-Bridges,P.O. Box 237,,Hahnville,LA,70057,5,985-308-0166,B,F,D,265,12/31/2014,1/1/2009,Ms. Bridges +Justice of the Peace ,Justice of the Peace District 2 ,P.O. Box 242,,Luling,LA,70070,985-785-6630,ST. CHARLES,"Earl ""Pie"" Tastet",P.O. Box 242,,Luling,LA,70070,5,985-785-6630,W,M,D,265,12/31/2014,1/1/2009,Mr. Tastet +Justice of the Peace ,Justice of the Peace District 3 ,219 Ormond Oaks Dr.,,Destrehan,LA,70047,985-764-6796,ST. CHARLES,"Henry R. Miller, Jr.",219 Ormond Oak Dr.,,Destrehan,LA,70047,5,985-764-6796,W,M,D,265,12/31/2014,1/1/2009,Mr. Miller +Justice of the Peace ,Justice of the Peace District 4 ,152 Bayou Est. Dr.,,Des Allemands,LA,70030,985-758-2936,ST. CHARLES,"Lloyd ""L.J."" Frickey",152 Bayou Estates Dr.,,Des Allemands,LA,70030,5,985-758-2936,W,M,D,265,12/31/2014,1/1/2009,Mr. Frickey +Justice of the Peace ,Justice of the Peace District 5 ,18 Pinto Ln.,,St. Rose,LA,70087,504-467-1754,ST. CHARLES,Julie P. Carmouche,18 Pinto Ln.,,St. Rose,LA,70087,5,504-467-1754,W,F,R,265,12/31/2014,1/1/2009,Ms. Carmouche +Justice of the Peace ,Justice of the Peace District 6 ,526 W.Harding St.,,Destrehan,LA,70047,985-764-9425,ST. CHARLES,"John J. Marino, Jr.",526 W. Harding St.,,Destrehan,LA,70047,5,985-764-9425,W,M,O,265,12/31/2014,1/1/2009,Mr. Marino +Justice of the Peace ,Justice of the Peace District 7 ,442 MonSanto St.,,Luling,LA,70070,985-785-6658,ST. CHARLES,John D. Brady,101 Wade St.,,Luling,LA,70070,5,504-952-9740,W,M,R,265,12/31/2014,1/1/2009,Mr. Brady +Constable ,Justice of the Peace District 1 ,P.O. Box 442,,Hahnville,LA,70057,985-783-2087,ST. CHARLES,Rose P. LeGaux,P.O. Box 442,,Hahnville,LA,70057,5,985-783-2087,B,F,D,267,12/31/2014,1/2/2009,Ms. LeGaux +Constable ,Justice of the Peace District 2 ,107 Beaupre Dr.,,Luling,LA,70070,985-785-0181,ST. CHARLES,Craig P. Petit,107 Beaupre Dr.,,Luling,LA,70070,5,985-785-0181,W,M,D,267,12/31/2014,1/1/2009,Mr. Petit +Constable ,Justice of the Peace District 3 ,130 Ducayet Dr.,,Destrehan,LA,70047,985-764-9590,ST. CHARLES,"""Gil"" Schmidt",130 Ducayet Dr.,,Destrehan,LA,70047,5,985-764-9590,W,M,R,267,12/31/2014,1/1/2009,Mr. Schmidt +Constable ,Justice of the Peace District 4 ,P.O. Box 214,,Des Allemands,LA,70030,985-758-7778,ST. CHARLES,Donnie White,805 Fonda St.,,Paradis,LA,70080,5,504-508-1098,B,M,D,267,12/31/2014,1/1/2009,Mr. White +Constable ,Justice of the Peace District 5 ,14 Bridle Path Ln.,,St. Rose,LA,70087,504-467-8075,ST. CHARLES,Stephen Black,162 Oak Manor Ln.,,St. Rose,LA,70087,5,504-467-8075,W,M,D,267,12/31/2014,1/1/2009,Mr. Black +Constable ,Justice of the Peace District 6 ,402 Marino Dr.,,Norco,LA,70079,985-764-7742,ST. CHARLES,Milton L. Cambre,402 Marino,,Norco,LA,70079,5,985-764-7742,W,M,D,267,12/31/2014,1/1/2009,Mr. Cambre +Constable ,Justice of the Peace District 7 ,611 Gassen St.,,Luling,LA,70070,985-785-6560,ST. CHARLES,Gary L. Cazenave,611 Gassen St.,,Luling,LA,70070,5,985-785-6560,W,M,R,267,12/31/2014,1/1/2009,Mr. Cazenave +DPEC Member ,at Large ,,,,LA,,,ST. HELENA,Mark R. Harrell,178 Thornton Ln.,,Pine Grove,LA,70453,5,225-777-4143,W,M,D,54,2/20/2012,2/20/2008,Mr. Harrell +DPEC Member ,at Large ,,,,LA,,,ST. HELENA,Bonnie McMillan,234 Tiger Bend Ln.,,Kentwood,LA,70444,5,985-229-5009,W,F,D,54,2/20/2012,2/20/2008,Ms. McMillan +DPEC Member ,District 1 ,,,,LA,,,ST. HELENA,Linda Guy Phillips,192 Linda Carol Ln.,,Greensburg,LA,70441,5,985-517-6146,W,F,D,56,2/20/2012,2/20/2008,Ms. Phillips +DPEC Member ,District 2 ,,,,LA,,,ST. HELENA,,,,,,,0,,,,,56,,, +DPEC Member ,District 3 ,,,,LA,,,ST. HELENA,Michael R. Martin,P.O. Box 720,,Greensburg,LA,70441,5,225-222-4499,B,M,D,56,2/20/2012,2/20/2008,Mr. Martin +DPEC Member ,District 4 ,,,,LA,,,ST. HELENA,,,,,,,0,,,,,56,,, +DPEC Member ,District 5 ,,,,LA,,,ST. HELENA,Kenneth R. Miller,249 Braford Rd.,,Amite,LA,70422,5,985-748-7311,W,M,D,56,2/20/2012,2/20/2008,Mr. Miller +DPEC Member ,District 6 ,,,,LA,,,ST. HELENA,Myrtie N. Wofford,3770 Newman Rd.,,Kentwood,LA,70444,5,985-229-8215,W,F,D,56,2/20/2012,2/20/2008,Ms. Wofford +RPEC Member ,at Large ,,,,LA,,,ST. HELENA,Huey N. Davis,4520 Hwy. 441,,Amite,LA,70422,5,985-748-6154,W,M,R,64,2/20/2012,2/20/2008,Mr. Davis +RPEC Member ,District 1 ,,,,LA,,,ST. HELENA,,,,,,,0,,,,,66,,, +RPEC Member ,District 2 ,,,,LA,,,ST. HELENA,,,,,,,0,,,,,66,,, +RPEC Member ,District 3 ,,,,LA,,,ST. HELENA,,,,,,,0,,,,,66,,, +RPEC Member ,District 4 ,,,,LA,,,ST. HELENA,,,,,,,0,,,,,66,,, +RPEC Member ,District 5 ,,,,LA,,,ST. HELENA,,,,,,,0,,,,,66,,, +RPEC Member ,District 6 ,,,,LA,,,ST. HELENA,,,,,,,0,,,,,66,,, +Sheriff ,,P.O. Box 1205,,Greensburg,LA,70441,225-222-4413,ST. HELENA,"Nathaniel ""Nat"" Williams",P.O. Box 1205,,Greensburg,LA,70441,5,225-777-4786,B,M,D,225,6/30/2012,7/1/2008,Sheriff Williams +Clerk of Court ,,P. O. Box 308,,Greensburg,LA,70441,225-222-4514,ST. HELENA,Beverly A. Gordon,P.O. Box 308,,Greensburg,LA,70441,5,225-222-6539,B,F,D,230,6/30/2012,7/1/2008,Ms. Gordon +Assessor ,,P.O. Box 607,,Greensburg,LA,70441,225-222-4131,ST. HELENA,Wesley Blades,448 Tut Blades Rd.,,Kentwood,LA,70444,5,985-229-2415,W,M,D,235,12/31/2012,1/1/2009,Mr. Blades +Coroner ,,P.O. Box 1178,,Greensburg,LA,70441,225-222-3206,ST. HELENA,Jimmie W. Varnado,P.O. Box 1178,,Greensburg,LA,70441,5,225-222-3206,W,M,D,240,3/25/2012,3/24/2008,Mr. Varnado +Police Juror,District 1,P. O. Box 339,,Greensburg,LA,70441,225-222-4549,ST. HELENA,Jule Charles Wascom,145 Alton & Lucille Ln.,,Greensburg,LA,70441,5,225-222-3760,W,M,D,245,1/8/2012,1/14/2008,Mr. Wascom +Police Juror ,District 2 ,P. O. Box 339,,Greensburg,LA,70441,225-222-4549,ST. HELENA,Thomas J. Wicker,578 Wicker Ln.,,Greensburg,LA,70441,5,225-222-6357,B,M,D,245,1/8/2012,1/14/2008,Mr. Wicker +Police Juror ,District 3 ,P. O. Box 339,,Greensburg,LA,70441,225-222-4549,ST. HELENA,"Theodore McCray, Jr.",8915 Hwy. 43,,Amite,LA,70422,5,225-777-4614,B,M,D,245,1/8/2012,1/14/2008,mr. McCray +Police Juror ,District 4 ,P. O. Box 339,,Greensburg,LA,70441,225-222-4549,ST. HELENA,Frank E. Johnson,1537 Hwy. 63,,Pine Grove,LA,70453,5,225-777-4810,B,M,D,245,1/8/2012,1/14/2008,Mr. Johnson +Police Juror ,District 5 ,P. O. Box 339,,Greensburg,LA,70441,225-222-4549,ST. HELENA,Major Coleman,1094 McDaniel Rd.,,Amite,LA,70422,5,985-748-4925,B,M,D,245,1/8/2012,1/14/2008,Mr. Coleman +Police Juror ,District 6 ,P. O. Box 339,,Greensburg,LA,70441,225-222-4549,ST. HELENA,"""Doug"" Watson",17571 Hwy 441,,Kentwood,LA,70441,5,985-229-7517,W,M,R,245,1/8/2012,1/14/2008,Mr. Watson +Member of School Board ,District 1 ,P. O. Box 540,,Greensburg,LA,70441,225-222-4349,ST. HELENA,Wilson Hagan,201 W. H. Ln.,,Greensburg,LA,70441,5,225-222-6951,W,M,D,255,12/31/2010,1/1/2007,Mr. Hagan +Member of School Board ,District 2 ,P. O. Box 540,,Greensburg,LA,70441,225-222-4349,ST. HELENA,Brenda G. Hurst,23 Collins Chaney Ln.,,Greensburg,LA,70441,5,225-222-6088,B,F,D,255,12/31/2010,1/1/2007, +Member of School Board ,District 3 ,P. O. Box 540,,Greensburg,LA,70441,225-222-4349,ST. HELENA,"Elijah Harvey, Jr.",9971 Hwy. 449,,Greensburg,LA,70441,5,225-222-6369,B,M,D,255,12/31/2010,1/1/2007,Mr. Harvey +Member of School Board ,District 4 ,P. O. Box 540,,Greensburg,LA,70441,225-222-4349,ST. HELENA,Willie G. Lee,176 Dennis Lee Rd.,,Denham Springs,LA,70706,5,225-777-4354,B,M,D,255,12/31/2010,1/1/2007,Mr. Lee +Member of School Board ,District 5 ,P. O. Box 540,,Greensburg,LA,70441,225-222-4349,ST. HELENA,"James E. ""Bull"" Baker",936 McDaniel Rd.,,Amite,LA,70422,5,985-748-9119,B,M,D,255,12/31/2010,1/1/2007,Mr. Baker +Member of School Board ,District 6 ,P. O. Box 540,,Greensburg,LA,70441,225-222-4349,ST. HELENA,"Alton ""Al"" Travis, Jr.",5121 Hwy. 38,,Kentwood,LA,70444,5,985-229-8517,W,M,D,255,12/31/2010,1/1/2007,Mr. Travis +Justice of the Peace ,Justice of the Peace Ward 1 ,228 Red Bluff Church Rd.,,Greensburg,LA,70441,225-222-6235,ST. HELENA,James E. Chaney,P.O. Box 33,,Greensburg,LA,70441,5,225-603-7524,B,M,D,265,12/31/2014,1/1/2009,Mr. Chaney +Justice of the Peace ,Justice of the Peace Ward 2 ,P.O. Box 1137,,Greensburg,LA,70441,225-222-4930,ST. HELENA,Alfloyd Muse,120 Alonzo Jones Ln.,,Greensburg,LA,70441,5,225-222-6205,B,M,D,265,12/31/2014,1/1/2009,Mr. Muse +Justice of the Peace ,Justice of the Peace Ward 3 ,987 Amacker Rd.,,Greensburg,LA,70441,225-222-4595,ST. HELENA,Tundra D. Muse,75 Caston Ln.,,Greensburg,LA,70441,5,225-331-0363,B,F,D,265,12/31/2014,1/1/2009,Ms. Muse +Justice of the Peace ,Justice of the Peace Ward 4 ,219 Dennis Lee Rd.,,Denham Springs,LA,70726,225-777-4475,ST. HELENA,Joe L. Lee,219 Dennis Lee Rd.,,Denham Springs,LA,70706,5,225-777-4475,B,M,D,265,12/31/2014,1/1/2009,Mr. Lee +Justice of the Peace ,Justice of the Peace Ward 5 ,31906 Hwy.16,,Amite,LA,70422,985-748-6231,ST. HELENA,Larry Charles Freeman,31906 La. Hwy. 16,,Amite,LA,70422,5,985-974-5868,B,M,D,265,12/31/2014,1/1/2009,Mr. Freeman +Justice of the Peace ,Justice of the Peace Ward 6 ,583 McMillan Ln.,,Kentwood,LA,70444,985-229-3800,ST. HELENA,Spencer Lee McMillan,583 McMillan Ln.,,Kentwood,LA,70444,5,985-229-3800,W,M,D,265,12/31/2014,1/1/2009,Mr. McMillan +Constable ,Justice of the Peace Ward 1 ,33 Lloyd Collins Rd.,,Greensburg,LA,70441,225-222-3400,ST. HELENA,"Joseph ""Joby"" Wall",232 Floyd Ln.,,Greensburg,LA,70441,5,225-229-0382,W,M,D,267,12/31/2014,1/1/2009,Mr. Wall +Constable ,Justice of the Peace Ward 2 ,P.O. Box 155,,Greensburg,LA,70441,225-222-6761,ST. HELENA,"Kermit Brown, ",210 John Matthews Ln.,,Greensburg,LA,70441-4027,10,225-222-6408,B,M,D,267,,2/15/2010, +Constable ,Justice of the Peace Ward 2 ,P.O. Box 155,,Greensburg,LA,70441,225-222-6761,ST. HELENA,"Kermit L. Brown, ",210 John Matthews Ln.,,Greensburg,LA,70441,5,,,,,267,,1/4/2010,Mr. Brown +Constable ,Justice of the Peace Ward 3 ,P.O. Box 371,,Greensburg,LA,70441,225-222-4187,ST. HELENA,"Iola J. Martin, ",P.O. Box 577,,Greensburg,LA,70442,5,225-719-2452,,,,267,,12/28/2009,Ms. Martin +Constable ,Justice of the Peace Ward 3 ,P.O. Box 371,,Greensburg,LA,70441,225-222-4187,ST. HELENA,"Iona T. Pitts, ",P.O. Box 371,,Greensburg,LA,70441,5,225-222-4075,B,F,D,267,12/31/2014,1/1/2009,Ms. Pitts +Constable ,Justice of the Peace Ward 4 ,337 Dennis Lee Rd.,,Denham Springs,LA,70726,225-777-4029,ST. HELENA,Lawrence Hughes,337 Dennis Lee Rd.,,Denham Springs,LA,70706,5,225-777-4407,B,M,D,267,12/31/2014,1/1/2009,Mr. Hughes +Constable ,Justice of the Peace Ward 5 ,394 Sharkey Loop,,Amite,LA,70422,985-748-4798,ST. HELENA,Raymond Baker,1416 McDaniel Rd.,,Amite,LA,70422,5,985-748-8496,B,M,D,267,12/31/2014,1/1/2009,Mr. Baker +Constable ,Justice of the Peace Ward 6 ,5210 Newman Rd.,,Kentwood,LA,70444,985-229-3664,ST. HELENA,"Paul B. Alford, Sr.",64 Buddy Ln.,,Kentwood,LA,70444,5,985-229-7105,W,M,D,267,12/31/2014,1/1/2009,Mr. Alford +Mayor ,Town of Greensburg ,P. O. Box 160,,Greensburg,LA,,225-222-4312,ST. HELENA,Burke Jones,P.O. Box 82,,Greensburg,LA,70441,5,225-222-6049,W,M,D,300,11/30/2012,12/1/2008,Mr. Jones +Mayor ,Village of Montpelier ,36400 Hwy. 16,,Montpelier,LA,,225-777-4400,ST. HELENA,"Bryan Edward Dykes, Sr.",35651 3rd Ave.,,Montpelier,LA,70422,5,225-777-4346,W,M,D,300,12/31/2010,1/1/2007,Mr. Dykes +Chief of Police ,Village of Montpelier ,36400 Hwy. 16,,Montpelier,LA,70422,225-777-4700,ST. HELENA,Gerald O'Malley,5432 Hwy. 43,,Montpelier,LA,70422,5,225-777-4761,W,M,D,305,12/31/2010,1/1/2007,Mr. O'Malley +Alderman ,"Division A, Town of Greensburg ",P. O. Box 160,,Greensburg,LA,70441,225-222-4312,ST. HELENA,Jimmie L. Meadows,P. O. Box 279,,Greensburg,LA,70441,5,225-222-6467,W,M,D,310,11/30/2012,12/1/2008,Mr. Meadows +Alderman ,"Division B, Town of Greensburg ",P. O. Box 160,,Greensburg,LA,70441,225-222-4312,ST. HELENA,Hunter Carter,6432 Hwy. 10,,Greensburg,LA,70441,5,225-573-8121,W,M,R,310,11/30/2012,12/1/2008,Mr. Carter +Alderman ,"Division C, Town of Greensburg ",P. O. Box 160,,Greensburg,LA,70441,225-222-4312,ST. HELENA,Larry Carruth,P.O. Box 127,,Greensburg,LA,70441,5,225-222-6324,W,M,D,310,11/30/2012,12/1/2008,Mr. Carruth +Alderman ,"Division D, Town of Greensburg ",P. O. Box 160,,Greensburg,LA,70441,225-222-4312,ST. HELENA,"""Danny"" Carruth",857 Taylor Rd.,,Greensburg,LA,70441,5,225-747-0366,W,M,R,310,11/30/2012,12/1/2008,Mr. Carruth +Alderman ,"Division E, Town of Greensburg ",P. O. Box 160,,Greensburg,LA,70441,225-222-4312,ST. HELENA,Paula McNabb,725 Taylor St.,,Greensburg,LA,70441,5,225-222-3634,W,F,D,310,11/30/2012,12/1/2008,Ms. McNabb +Alderman ,Village of Montpelier ,36400 Hwy. 16,,Montpelier,LA,70422,225-777-4400,ST. HELENA,Jason Barber,2880 St. Helena Ave.,,Montpelier,LA,70422,5,225-777-4815,W,M,,310,12/31/2010,1/1/2007,Mr. Barber +Alderman ,Village of Montpelier ,36400 Hwy. 16,,Montpelier,LA,70422,225-777-4400,ST. HELENA,"""Brad"" Davis, Sr.",5490 Hwy. 43,,Montpelier,LA,70422,5,225-777-4717,W,M,R,310,12/31/2010,1/1/2007,Mr. Davis +Alderman ,Village of Montpelier ,36400 Hwy. 16,,Montpelier,LA,70422,225-777-4400,ST. HELENA,Kenneth G. Giardina,35999 Hwy. 16,,Montpelier,LA,70422,5,225-777-4785,W,M,D,310,12/31/2010,1/1/2007,Mr. Giardina +DPEC Member ,at Large ,,,,LA,,,ST. JAMES,"Dale Hymel, Jr.",P.O. Box 3,,Lutcher,LA,70071,5,225-869-3365,W,M,D,54,2/20/2012,2/20/2008,Mr. Hymel +DPEC Member ,at Large ,,,,LA,,,ST. JAMES,"Edmond E. Kinler, Jr.",P.O. Box 21,,Paulina,LA,70763,5,225-869-3653,W,M,D,54,2/20/2012,2/20/2008,Mr. Kinler +DPEC Member ,at Large ,,,,LA,,,ST. JAMES,"Willy J. Martin, Jr.",32077 Longview St.,,Paulina,LA,70763,5,225-869-4331,W,M,D,54,2/20/2012,2/20/2008,Mr. Martin +DPEC Member ,at Large ,,,,LA,,,ST. JAMES,03060J. Petit,P.O. Box 213,,Hester,LA,70743,5,225-869-5997,W,M,D,54,2/20/2012,2/20/2008,Mr. Petit +DPEC Member ,District 1 ,,,,LA,,,ST. JAMES,,,,,,,0,,,,,56,,, +DPEC Member ,District 2 ,,,,LA,,,ST. JAMES,Wilbur Reynaud,P.O. Drawer N,,Lutcher,LA,70071,5,225-869-3962,W,M,D,56,2/20/2012,2/20/2008,Mr. Reynaud +DPEC Member ,District 3 ,,,,LA,,,ST. JAMES,"030608o-Boy"" LeBlanc",P.O. Box 381,,Paulina,LA,70763,5,225-869-9232,W,M,D,56,2/20/2012,2/20/2008,Mr. LeBlanc +DPEC Member ,District 4 ,,,,LA,,,ST. JAMES,"Ralph Patin, Jr.",.,,,LA,,0,,,,,56,,3/6/2008,Mr. Patin +DPEC Member ,District 5 ,,,,LA,,,ST. JAMES,Rita M. Cooper,8171 Hwy. 18,,St. James,LA,70086,5,225-473-3572,,,,56,,3/6/2008,Ms. Cooper +DPEC Member ,District 6 ,,,,LA,,,ST. JAMES,Stanley Folse,21030 Hwy. 20 West,,Vacherie,LA,70090,5,225-265-4257,,,,56,,3/6/2008,Mr. Folse +DPEC Member ,District 7 ,,,,LA,,,ST. JAMES,Glenn Waguespack,13300 Maria Gravois Rd.,,Vacherie,LA,70090,5,225-265-3228,W,M,D,56,2/20/2012,2/20/2008,Mr. Waguespack +RPEC Member ,at Large ,,,,LA,,,ST. JAMES,Brad Steib,13881 Clifford St.,,Vacherie,LA,70090,5,225-265-2303,W,M,R,64,2/20/2012,2/20/2008,Mr. Steib +RPEC Member ,District 1 ,,,,LA,,,ST. JAMES,,,,,,,0,,,,,66,,, +RPEC Member ,District 2 ,,,,LA,,,ST. JAMES,,,,,,,0,,,,,66,,, +RPEC Member ,District 3 ,,,,LA,,,ST. JAMES,,,,,,,0,,,,,66,,, +RPEC Member ,District 4 ,,,,LA,,,ST. JAMES,,,,,,,0,,,,,66,,, +RPEC Member ,District 5 ,,,,LA,,,ST. JAMES,,,,,,,0,,,,,66,,, +RPEC Member ,District 6 ,,,,LA,,,ST. JAMES,,,,,,,0,,,,,66,,, +RPEC Member ,District 7 ,,,,LA,,,ST. JAMES,,,,,,,0,,,,,66,,, +Sheriff ,,P. O. Box 83,,Convent,LA,70723,225-562-2378,ST. JAMES,"Willy J. Martin, Jr.",P.O. Box 83,,Convent,LA,70723,5,225-869-4331,W,M,D,225,6/30/2012,7/1/2008,Sheriff Martin +Clerk of Court ,,P. O. Box 63,,Convent,LA,70723,225-562-2270,ST. JAMES,"Edmond E. Kinler, Jr.",P. O. Box 63,,Convent,LA,70723,5,225-869-3653,W,M,D,230,6/30/2012,7/1/2008,Mr. Kinler +Assessor ,,P.O. Box 55,,Convent,LA,70723,225-562-2251,ST. JAMES,Glenn Waguespack,13300 Maria Gravois Rd.,,Vacherie,LA,70090,5,225-265-3228,W,M,D,235,12/31/2012,1/1/2009,Mr. Waguespack +Coroner ,,P.O. Box 369,,Lutcher,LA,70071,225-869-3493,ST. JAMES,Randall C. Poche,P. O. Box 855,,Lutcher,LA,70071,5,225-869-9707,W,M,D,240,3/25/2012,3/24/2008,Mr. Poche +Parish President ,,P.O. Box 176,,Vacherie,LA,70090,225-562-2400,ST. JAMES,"Dale Hymel, Jr.",P.O. Box 3,,Lutcher,LA,70071,5,225-869-3365,W,M,D,243,1/9/2012,1/14/2008,Mr. Hymel +Councilman,District 1,P. O. Box 176,,Vacherie,LA,70090-0176,225-562-2400,ST. JAMES,Elwyn Bocz,P. O. Box 1530,,Gramercy,LA,70052,5,225-869-8132,W,M,D,245,1/9/2012,1/14/2008,Mr. Bocz +Councilman ,District 2 ,P. O. Box 176,,Vacherie,LA,70090,225-562-2400,ST. JAMES,Jason P. Amato,1168 Marquette Dr.,,Lutcher,LA,70071,5,225-869-8347,W,M,R,245,1/9/2012,1/14/2008,Mr. Amato +Councilman ,District 3 ,P. O. Box 176,,Vacherie,LA,70090,225-562-2400,ST. JAMES,"Wilson F. Malbrough, Jr.",3612 Kenmore Dr.,,Paulina,LA,70763,5,225-869-5954,W,M,D,245,1/9/2012,1/14/2008,Mr. Malbrough +Councilman ,District 4 ,P. O. Box 176,,Vacherie,LA,70090,225-562-2400,ST. JAMES,"Ralph A. Patin, Jr.",9224 La. Hwy. 44,,Convent,LA,70723,5,225-562-3602,B,M,D,245,1/9/2012,1/14/2008,Mr. Patin +Councilman ,District 5 ,P. O. Box 176,,Vacherie,LA,70090,225-562-2400,ST. JAMES,"Charles ""I Spy"" Ketchens",P.O. Box 421,,Vacherie,LA,70090,5,225-265-7661,B,M,D,245,1/9/2012,1/14/2008,Mr. Ketchens +Councilman ,District 6 ,P. O. Box 176,,Vacherie,LA,70090,225-562-2400,ST. JAMES,"""Ken"" Brass",2381 Armant St.,,Vacherie,LA,70090,5,225-265-8727,B,M,D,245,1/9/2012,1/14/2008,Mr. Brass +Councilman ,District 7 ,P. O. Box 176,,Vacherie,LA,70090,225-562-2400,ST. JAMES,"James ""Jimmy"" Brazan",13426 Redbud St.,,Vacherie,LA,70090,5,225-265-4632,W,M,D,245,1/9/2012,1/14/2008,Mr. Brazan +Member of School Board ,District 1 ,P. O. Box 338,,Lutcher,LA,70071,225-869-5375,ST. JAMES,Diana B. Cantillo,165 N. Pine Ave.,,Gramercy,LA,70052,5,225-869-7933,W,F,D,255,12/31/2010,1/1/2007,Ms. Cantillo +Member of School Board ,District 2 ,P. O. Box 338,,Lutcher,LA,70071,225-869-5375,ST. JAMES,Kenneth J. Foret,1176 Desoto Dr.,,Lutcher,LA,70071,5,225-869-5267,W,M,D,255,12/31/2010,1/1/2007,Mr. Foret +Member of School Board ,District 3 ,P. O. Box 338,,Lutcher,LA,70071,225-869-5375,ST. JAMES,Carol C. Lambert,3564 Geismar St.,,Paulina,LA,70763,5,225-869-5134,W,F,D,255,12/31/2010,1/1/2007,Ms. Lambert +Member of School Board ,District 4 ,P. O. Box 338,,Lutcher,LA,70071,225-869-5375,ST. JAMES,"George Nassar, Jr.",P. O. Box 17,,Convent,LA,70723,5,225-562-7528,W,M,D,255,12/31/2010,1/1/2007,Mr. Nassar +Member of School Board ,District 5 ,P. O. Box 338,,Lutcher,LA,70071,225-869-5375,ST. JAMES,"Patricia Heary ""Ducy"" Schexnayder",7176 Communi St.,,St.James,LA,70086,5,225-265-8357,B,F,D,255,12/31/2010,1/1/2007,Ms. Schexnayder +Member of School Board ,District 6 ,P. O. Box 338,,Lutcher,LA,70071,225-869-5375,ST. JAMES,"Charles T. ""Charlie"" Nailor",P.O. Box 1235,,Vacherie,LA,70090,5,225-265-3873,B,M,D,255,12/31/2010,1/1/2007,Mr. Nailor +Member of School Board ,District 7 ,P. O. Box 338,,Lutcher,LA,70071,225-869-5375,ST. JAMES,"Richard ""Ricky"" Reulet, Jr.",23185 Reulet Rd.,,Vacherie,LA,70090,5,225-265-2380,W,M,D,255,12/31/2010,1/1/2007,Mr. Reulet +Justice of the Peace ,Justice of the Peace District 1 ,P.O. Box 106,,Gramercy,LA,70052,225-869-3353,ST. JAMES,Mary Rodrigue Walker,277 North Magnolia Ave.,,Gramercy,LA,70052,5,225-869-8742,W,F,D,265,12/31/2014,8/24/2009,Ms. Walker +Justice of the Peace ,Justice of the Peace District 2 ,P.O. Box 273,,Lutcher,LA,70071,225-869-5118,ST. JAMES,"Milton ""Bud"" Lambert",P.O. Box 1318,,Gramercy,LA,70052,5,225-268-9743,W,M,D,265,12/31/2014,1/1/2009,Mr. Lambert +Justice of the Peace ,Justice of the Peace District 3 ,P.O. Box 272,,Paulina,LA,70763,225-869-4337,ST. JAMES,"Stephen ""Lukey"" Louque",P.O. Box 272,,Paulina,LA,70763,5,225-869-4337,W,M,D,265,12/31/2014,1/1/2009,Mr. Louque +Justice of the Peace ,Justice of the Peace District 4 ,8124 Pleasant Hill St.,,Convent,LA,70723,225-562-7192,ST. JAMES,"Lionel Felton, Sr.",8124 Pleasant Hill St.,,Convent,LA,70723,5,225-562-7192,B,M,D,265,12/31/2014,1/1/2009,Mr. Felton +Justice of the Peace ,Justice of the Peace District 5 ,8249 Hwy. 18,,St. James,LA,70086,225-473-1505,ST. JAMES,Trina Folse Moll,8249 Hwy 18,,St.James,LA,70086,5,225-473-9569,B,F,D,265,12/31/2014,1/1/2009,Ms. Moll +Justice of the Peace ,Justice of the Peace District 6 ,1228 Old Vacherie St.,,Vacherie,LA,70090,225-265-2158,ST. JAMES,Eileen R. Jasmin,1228 Old Vacherie St.,,Vacherie,LA,70090,5,225-265-8295,B,F,D,265,12/31/2014,1/1/2009,Ms. Jasmin +Justice of the Peace ,Justice of the Peace District 7 ,13542 Hwy 643,,Vacherie,LA,70090,225-265-2921,ST. JAMES,"Marie Laurent ""Maddy"" Lewis",13542 Hwy. 643,,Vacherie,LA,70090,5,225-265-2921,B,F,D,265,12/31/2014,1/1/2009,Ms. Lewis +Constable ,Justice of the Peace District 1 ,P.O. Box 891,,Gramercy,LA,70052,225-869-5608,ST. JAMES,"Ronald ""Shine"" Boudreaux",P.O. Box 891,,Gramercy,LA,70052,5,225-869-1785,B,M,D,267,12/31/2014,1/1/2009,Mr. Boudreaux +Constable ,Justice of the Peace District 2 ,2459 N. Central,,Lutcher,LA,70071,225-869-9849,ST. JAMES,"Arthur M. ""Coach"" Harper, Jr.",P.O. Box 665,,Lutcher,LA,70071,5,225-869-9849,B,M,D,267,12/31/2014,1/1/2009,Mr. Harper +Constable ,Justice of the Peace District 3 ,2246 LeBoukin,,Paulina,LA,70763,225-869-5966,ST. JAMES,"Timothy ""Droopy"" Bourgeois",2246 LeBouKin St.,,Paulina,LA,70763,5,225-869-5966,W,M,D,267,12/31/2014,1/1/2009,Mr. Bourgeois +Constable ,Justice of the Peace District 4 ,P.O. Box 4,,Convent,LA,70723,225-562-3376,ST. JAMES,Johnnie Shorty,6125 Haydel St.,,Convent,LA,70723,5,225-562-3376,B,M,D,267,12/31/2014,1/1/2009,Mr. Shorty +Constable ,Justice of the Peace District 5 ,P.O. Box 34,,St. James,LA,70086,225-265-2244,ST. JAMES,"Sylvester J. ""Syl"" Winchester, Sr.",P.O. Box 285,,St.James,LA,70086,5,225-265-3010,B,M,D,267,12/31/2014,1/1/2009,Mr. Winchester +Constable ,Justice of the Peace District 6 ,2147 Hwy. 20 W.,,Vacherie,LA,70090,,ST. JAMES,Vanessa James,2470 Church St.,,Vacherie,LA,70090,5,225-206-0127,B,F,D,267,12/31/2014,1/2/2009,Ms. James +Constable ,Justice of the Peace District 7 ,13881 Clifford St.,,Vacherie,LA,70090,225-265-2303,ST. JAMES,"""Brad"" Steib",13881 Clifford St.,,Vacherie,LA,70090,5,225-265-2303,W,M,R,267,12/31/2014,1/1/2009,Mr. Steib +Mayor ,Town of Gramercy ,P. O. Drawer 340,,Gramercy,LA,,225-869-4403,ST. JAMES,Herman Bourgeois,P.O. Box 698,,Gramercy,LA,70052,5,225-869-3812,W,M,D,300,12/31/2010,1/1/2007,Mr. Bourgeois +Mayor ,Town of Lutcher ,P. O. Box 456,,Lutcher,LA,,225-869-5823,ST. JAMES,Rowdy Kennard Scott,1596 Cabanose Ave.,,Lutcher,LA,70071,5,225-869-9672,B,M,D,300,12/31/2010,1/1/2007,Mayor Scott +Chief of Police ,Town of Gramercy ,P. O. Drawer 340,,Gramercy,LA,70052,225-869-4403,ST. JAMES,Brent H. Dicharry,P.O. Box 151,,Paulina,LA,70763,5,225-869-3873,W,M,D,305,12/31/2010,1/1/2007,Mr. Dicharry +Chief of Police ,Town of Lutcher ,P. O. Box 456,,Lutcher,LA,70071,225-869-5823,ST. JAMES,Dwan Bowser,P.O. Box 456,,Lutcher,LA,70071,5,225-869-5823,,,,305,,10/6/2009,Chief Bowser +Chief of Police ,Town of Lutcher ,P. O. Box 456,,Lutcher,LA,70071,225-869-5823,ST. JAMES,"Dwan B. Bowser, ",2344 N. Exchange Ally,,Lutcher,LA,70071,5,225-869-1873,B,M,D,305,,2/15/2010, +Alderman at Large ,"Seat One, Town of Lutcher ",P. O. Box 456,,Lutcher,LA,70071,225-869-5823,ST. JAMES,Otis J. Schexnayder,P.O. Box 51,,Lutcher,LA,70071,5,225-869-4847,W,M,D,308,12/31/2010,1/1/2007,Mr. Schexnayder +Alderman at Large ,Town of Gramercy ,P. O. Drawer 340,,Gramercy,LA,70052,225-869-4403,ST. JAMES,"""Kat"" Bocz",P.O. Box 1530,,Gramercy,LA,70052,5,225-869-8132,W,F,D,308,12/31/2010,1/1/2007,Ms. Bocz +Alderman at Large ,Town of Gramercy ,P. O. Drawer 340,,Gramercy,LA,70052,225-869-4403,ST. JAMES,Rubenstein Mitchell Clark,P.O. Box 662,,Gramercy,LA,70052,5,225-869-8746,W,F,D,308,12/31/2010,1/1/2007,Mr. Clark +Alderman ,"District 1, Division A, Town of Lutcher ",P. O. Box 456,,Lutcher,LA,70071,225-869-5823,ST. JAMES,"Floyd A. Marshall, Sr.",P.O. Box 861,,Lutcher,LA,70071,5,225-869-8482,B,M,D,310,12/31/2010,1/1/2007,Mr. Marshall +Alderman ,"District 1, Division B, Town of Lutcher ",P. O. Box 456,,Lutcher,LA,70071,225-869-5823,ST. JAMES,Keyojuan L. Gant,P.O. Box 835,,Gramercy,LA,70052,5,225-869-7525,B,F,D,310,12/31/2010,1/1/2007,Mr. Gant +Alderman ,"District 1, Town of Gramercy ",P. O. Drawer 340,,Gramercy,LA,70052,225-869-4403,ST. JAMES,Betty Cooper Coleman,P.O. Box 274,,Gramercy,LA,70052,5,225-869-5112,B,F,D,310,12/31/2010,1/1/2007,Ms. Coleman +Alderman ,"District 2, Division A, Town of Lutcher ",P. O. Box 456,,Lutcher,LA,70071,225-869-5823,ST. JAMES,Patrick P. St. Pierre,P.O. Box 1128,,Lutcher,LA,70071,5,225-869-1050,W,M,D,310,12/31/2010,1/1/2007,Mr. St. Pierre +Alderman ,"District 2, Division B, Town of Lutcher ",P. O. Box 456,,Lutcher,LA,70071,225-869-5823,ST. JAMES,"Dustin ""Chip"" Roussel",1330 Third St.,,Lutcher,LA,70071,5,225-258-4181,W,M,D,310,12/31/2010,2/20/2008,Mr. Roussel +Alderman ,"District 2, Town of Gramercy ",P. O. Drawer 340,,Gramercy,LA,70052,225-869-4403,ST. JAMES,John Doucet,443 N. Montz Ave.,,Gramercy,LA,70052,5,225-869-8575,W,M,D,310,12/31/2010,1/1/2007,Mr. Doucet +Alderman ,"District 3, Town of Gramercy ",P. O. Drawer 340,,Gramercy,LA,70052,225-869-4403,ST. JAMES,"Alvin ""Shark"" St. Pierre, Jr.",P.O. Box 1137,,Gramercy,LA,70052,5,225-869-4132,W,M,D,310,12/31/2010,1/1/2007,Mr. St.Pierre +DPEC Member ,at Large ,,,,LA,,,ST. JOHN THE BAPTIST,Tomy J. Acosta,P.O. Box 2587,,LaPlace,LA,70069,5,504-237-3532,W,M,D,54,2/20/2012,2/20/2008,Mr. Acosta +DPEC Member ,at Large ,,,,LA,,,ST. JOHN THE BAPTIST,"Carl ""Butch"" Baloney, Sr.",P.O. Box 117,,Garyville,LA,70051,5,985-210-1348,,M,D,54,2/20/2012,2/20/2008,Mr. Baloney +DPEC Member ,at Large ,,,,LA,,,ST. JOHN THE BAPTIST,Lynncal T. Bering,545 Esplanade Dr.,,LaPlace,LA,70068,5,225-892-2828,B,F,D,54,2/20/2012,2/20/2008,Ms. Bering +DPEC Member ,at Large ,,,,LA,,,ST. JOHN THE BAPTIST,"Olangee ""OJ"" Breech",2109 Colonial Dr.,,LaPlace,LA,70068,5,504-253-0208,B,F,D,54,2/20/2012,2/20/2008,Ms. Breech +DPEC Member ,at Large ,,,,LA,,,ST. JOHN THE BAPTIST,"Ferdinand Wallace, Jr.",164 East 20th St.,,Reserve,LA,70084,5,985-536-3533,B,M,D,54,2/20/2012,2/20/2008,Mr. Wallace +DPEC Member at Large ,Division A ,,,,LA,,,ST. JOHN THE BAPTIST,Elexia O. Henderson,257 Chestnut St.,,Mt. Airy,LA,70076,5,985-535-2832,B,F,D,54,2/20/2012,2/20/2008, +DPEC Member at Large ,Division B ,,,,LA,,,ST. JOHN THE BAPTIST,Maria Rowley,554 Welham Loop,,LaPlace,LA,70068,5,985-652-7361,O,F,D,54,2/20/2012,2/20/2008, +DPEC Member ,District 1 ,,,,LA,,,ST. JOHN THE BAPTIST,Clara Edwards,177 W. 8th St.,,Vacherie,LA,70090,5,225-265-2714,B,F,D,56,2/20/2012,2/20/2008,Ms. Edwards +DPEC Member ,District 2 ,,,,LA,,,ST. JOHN THE BAPTIST,Craig J. Mollere,P.O. Box 62,,Reserve,LA,70084,5,985-536-7855,W,M,D,56,2/20/2012,2/20/2008,Mr. Mollere +DPEC Member ,District 3 ,,,,LA,,,ST. JOHN THE BAPTIST,Allene Gregoire,201 East 26th St.,,Reserve,LA,70084,5,985-536-2744,B,F,D,56,2/20/2012,2/20/2008,Ms. Gregoire +DPEC Member ,District 4 ,,,,LA,,,ST. JOHN THE BAPTIST,E. Buddy Bailey,725 Fagot Loop,,LaPlace,LA,70068,5,985-652-9001,W,M,D,56,2/20/2012,2/20/2008,Mr. Bailey +DPEC Member ,District 5 ,,,,LA,,,ST. JOHN THE BAPTIST,Judy B. Songy,8 Windsor St.,,LaPlace,LA,70068,5,985-652-9840,W,F,D,56,2/20/2012,2/20/2008,Ms. Songy +DPEC Member ,District 6 ,,,,LA,,,ST. JOHN THE BAPTIST,Sherry W. McTopy,508 Chatsworth Dr.,,LaPlace,LA,70068,5,985-652-6817,W,F,D,56,2/20/2012,2/20/2008,Ms. McTopy +DPEC Member ,District 7 ,,,,LA,,,ST. JOHN THE BAPTIST,Randal Gaines,7 Turnberry Dr.,,LaPlace,LA,70068,5,504-487-9904,B,M,D,56,2/20/2012,2/20/2008,Mr. Gaines +RPEC Member ,at Large ,,,,LA,,,ST. JOHN THE BAPTIST,,,,,,,0,,,,,64,,, +RPEC Member at Large ,Division A ,,,,LA,,,ST. JOHN THE BAPTIST,,,,,,,0,,,,,64,,, +RPEC Member at Large ,Division B ,,,,LA,,,ST. JOHN THE BAPTIST,,,,,,,0,,,,,64,,, +RPEC Member ,District 1 ,,,,LA,,,ST. JOHN THE BAPTIST,,,,,,,0,,,,,66,,, +RPEC Member ,District 2 ,,,,LA,,,ST. JOHN THE BAPTIST,,,,,,,0,,,,,66,,, +RPEC Member ,District 3 ,,,,LA,,,ST. JOHN THE BAPTIST,,,,,,,0,,,,,66,,, +RPEC Member ,District 4 ,,,,LA,,,ST. JOHN THE BAPTIST,,,,,,,0,,,,,66,,, +RPEC Member ,District 5 ,,,,LA,,,ST. JOHN THE BAPTIST,,,,,,,0,,,,,66,,, +RPEC Member ,District 6 ,,,,LA,,,ST. JOHN THE BAPTIST,,,,,,,0,,,,,66,,, +RPEC Member ,District 7 ,,,,LA,,,ST. JOHN THE BAPTIST,,,,,,,0,,,,,66,,, +Sheriff ,,P.O. Box 1600,,LaPlace,LA,70069,985-652-9513,ST. JOHN THE BAPTIST,Wayne Jones,P.O. Box 1600,,LaPlace,LA,70069,5,985-652-2109,W,M,D,225,6/30/2012,7/1/2008,Sheriff Jones +Clerk of Court ,,P. O. Box 280,,Edgard,LA,70049,985-497-3331,ST. JOHN THE BAPTIST,Eliana Olivier DeFrancesch,P. O. Box 280,,Edgard,LA,70049,5,985-535-6797,W,F,D,230,6/30/2012,7/1/2008,Ms. DeFrancesch +Assessor ,,"1801 W. Airline Hwy., Rm. 103",,Laplace,LA,70068,985-652-5311,ST. JOHN THE BAPTIST,"Whitney Joseph, Jr.",P. O. Box 2290,,Reserve,LA,70084,5,985-536-3115,B,M,D,235,12/31/2012,1/1/2009,Mr. Joseph +Coroner ,,429 W. Airline Hwy. Ste. D.,,LaPlace,LA,70068,985-652-3344,ST. JOHN THE BAPTIST,Christy A. Montegut,51 Holly Dr.,,LaPlace,LA,70068,5,985-652-7185,W,M,D,240,3/25/2012,3/24/2008,Mr. Montegut +Parish President ,,1801 W. airline Hwy.,,LaPlace,LA,70068,985-652-1700,ST. JOHN THE BAPTIST,,,,,,,0,,,,,243,,, +Councilman at Large ,Division A ,1801 W. Airline Hwy.,,LaPlace,LA,70068,985-652-1702,ST. JOHN THE BAPTIST,"Richard Dale Wolfe, Sr.",P.O. Box 2289,,Reserve,LA,70084,5,985-536-2965,B,M,D,244,1/9/2012,1/14/2008,Mr. Wolfe +Councilman at Large ,Division B ,1801 W. Airline Hwy.,,LaPlace,LA,70068,985-652-1702,ST. JOHN THE BAPTIST,Steve Lee,38 Muirfield Dr.,,LaPlace,LA,70068,5,985-652-8202,W,M,R,244,1/9/2012,1/14/2008,Mr. Lee +Councilman ,District 1 ,1801 W. Airline Hwy.,,LaPlace,LA,,985-652-1702,ST. JOHN THE BAPTIST,"Haston ""Lipper"" Lewis, Sr.",117 Lewis Ct.,,Edgard,LA,70049,5,985-497-5528,B,M,D,245,1/9/2012,1/14/2008,Mr. lewis +Councilman ,District 2 ,1801 W. Airline Hwy.,,LaPlace,LA,70068,985-652-1702,ST. JOHN THE BAPTIST,Danny Millet,296 Annex Dr.,,Reserve,LA,70084,5,985-536-8000,W,M,D,245,1/9/2012,1/14/2008,Mr. Millet +Councilman ,District 3 ,1801 W. Airline Hwy.,,LaPlace,LA,70068,985-652-1702,ST. JOHN THE BAPTIST,Charles Julien,P.O. Box 2489,,Reserve,LA,70084,5,504-782-9291,B,M,D,245,1/9/2012,1/14/2008,Mr. Julien +Councilman ,District 4 ,1801 W. Airline Hwy.,,LaPlace,LA,70068,985-652-1702,ST. JOHN THE BAPTIST,Jaclyn Hotard,776 Madewood Drive,,LaPlace,LA,70068,5,504-228-1574,W,F,D,245,1/9/2012,1/14/2008,Ms. Hotard +Councilman ,District 5 ,1801 W. Airline Hwy.,,LaPlace,LA,70068,985-652-1702,ST. JOHN THE BAPTIST,Darnel Clement Usry,500 Palm St.,,LaPlace,LA,70068,5,985-652-3623,W,F,D,245,1/9/2012,1/14/2008,Ms. Usry +Councilman ,District 6 ,1801 W. Airline Hwy.,,LaPlace,LA,70068,985-652-1702,ST. JOHN THE BAPTIST,Ronnie S. Smith,2609 English Colony Dr.,,LaPlace,LA,70068,5,985-359-0226,B,M,D,245,1/9/2012,1/14/2008,Mr. Smith +Councilman ,District 7 ,1801 W. Airline Hwy.,,LaPlace,LA,70068,985-652-1702,ST. JOHN THE BAPTIST,Cheryl Millet,1925 Ridgefield Dr.,,LaPlace,LA,70068,5,985-652-7130,W,F,D,245,1/9/2012,1/14/2008,Ms. Millet +Member of School Board ,District 1 ,P. O. Drawer AL,,Reserve,LA,70084,985-536-1106,ST. JOHN THE BAPTIST,"Russell Jack, Jr.",P.O. Box 213,,Edgard,LA,70049,5,985-497-8395,B,M,D,255,12/31/2010,1/1/2007,Mr. Jack +Member of School Board ,District 2 ,P. O. Drawer AL,,Reserve,LA,70084,985-536-1106,ST. JOHN THE BAPTIST,"Albert ""Ali"" Burl, III",P.O. Drawer AL,,Reserve,LA,70084,5,985-535-2969,B,M,D,255,12/31/2010,1/1/2007,Mr. Burl +Member of School Board ,District 3 ,P. O. Drawer AL,,Reserve,LA,70084,985-536-1106,ST. JOHN THE BAPTIST,Gerald J. Keller,P.O. Box 347,,Reserve,LA,70084,5,985-536-6570,W,M,D,255,12/31/2010,1/1/2007,Mr. Keller +Member of School Board ,District 4 ,P. O. Drawer AL,,Reserve,LA,70084,985-536-1106,ST. JOHN THE BAPTIST,Patrick H. Sanders,137 E. 31st. St.,,Reserve,LA,70084,5,985-536-4247,B,M,D,255,12/31/2010,1/1/2007,Mr. Sanders +Member of School Board ,District 5 ,P. O. Drawer AL,,Reserve,LA,70084,985-536-1106,ST. JOHN THE BAPTIST,"James R. ""Jimmy Ray"" Madere",7 Holly Dr.,,LaPlace,LA,70068,5,985-652-5555,W,M,D,255,12/31/2010,7/21/2008,Mr. Madere +Member of School Board ,District 6 ,P. O. Drawer AL,,Reserve,LA,70084,985-536-1106,ST. JOHN THE BAPTIST,Keith A. Jones,P.O. Box 952,,LaPlace,LA,70068,5,985-652-5170,B,M,D,255,12/31/2010,1/1/2007,Mr. Jones +Member of School Board ,District 7 ,P. O. Drawer AL,,Reserve,LA,70084,985-536-1106,ST. JOHN THE BAPTIST,Phillip Johnson,1117 Cinclair Loop,,LaPlace,LA,70068,5,985-651-4290,B,M,D,255,12/31/2010,1/1/2007,Mr. Johnson +Member of School Board ,District 8 ,P. O. Drawer AL,,Reserve,LA,70084,985-536-1106,ST. JOHN THE BAPTIST,"Russell E. ""Russ"" Wise",2131 Marion Dr.,,LaPlace,LA,70068,5,985-652-7211,W,M,,255,12/31/2010,1/1/2007,Mr. Wise +Member of School Board ,District 9 ,P. O. Drawer AL,,Reserve,LA,70084,985-536-1106,ST. JOHN THE BAPTIST,Lowell J. Bacas,517 Parlange Loop,,LaPlace,LA,70068,5,985-652-6882,W,M,R,255,12/31/2010,1/1/2007,Mr. Bacas +Member of School Board ,District 10 ,P. O. Drawer AL,,Reserve,LA,70084,985-536-1106,ST. JOHN THE BAPTIST,Matthew Ory,640 S. Golfview,,LaPlace,LA,70068,5,985-652-7312,W,M,D,255,12/31/2010,1/1/2007,Mr. Ory +Member of School Board ,District 11 ,P. O. Drawer AL,,Reserve,LA,70084,985-536-1106,ST. JOHN THE BAPTIST,Clarence G. Triche,1614 Main St.,,LaPlace,LA,70068,5,985-652-6193,W,M,D,255,12/31/2010,1/1/2007,Mr. Triche +Justice of the Peace ,Justice of the Peace District 1 ,P.O. Box 178,,Edgard,LA,70049,985-497-8690,ST. JOHN THE BAPTIST,,,,,,,0,,,,,265,,, +Justice of the Peace ,Justice of the Peace District 2 ,P.O. Box 699,,Garyville,LA,70051,985-535-1879,ST. JOHN THE BAPTIST,Cherry Burl Frank,P.O. Box 61,,Garyville,LA,70051,5,985-535-2516,B,F,D,265,12/31/2014,1/1/2009,Ms. Frank +Justice of the Peace ,Justice of the Peace District 3 ,143 E.25th St.,,Reserve,LA,70084,985-536-3428,ST. JOHN THE BAPTIST,Diane C. Jacob,143 East 25th St.,,Reserve,LA,70084,5,985-536-3428,W,F,D,265,12/31/2014,1/1/2009,Ms. Jacob +Justice of the Peace ,Justice of the Peace District 4 ,100 Lane A,,LaPlace,LA,70068,985-651-6882,ST. JOHN THE BAPTIST,Rosie Weber Monica,100 Lane A,,LaPlace,LA,70068,5,985-651-6882,W,F,D,265,12/31/2014,1/1/2009,Ms. Monica +Justice of the Peace ,Justice of the Peace District 5 ,520 Walnut St.,,LaPlace,LA,70068,985-652-6281,ST. JOHN THE BAPTIST,Karen J. Bailey,520 Walnut St.,,LaPlace,LA,70068,5,985-652-6281,W,F,D,265,12/31/2014,1/1/2009,Ms. Bailey +Justice of the Peace ,Justice of the Peace District 6 ,,,,LA,,,ST. JOHN THE BAPTIST,"Wilfred ""Coach"" Mitchell",2237 Williamsburg Dr.,,LaPlace,LA,70068,5,985-652-4660,B,M,D,265,12/31/2014,1/1/2009,Mr. Mitchell +Justice of the Peace ,Justice of the Peace District 7 ,366 Shadow Ln.,,LaPlace,LA,70068,985-651-7483,ST. JOHN THE BAPTIST,"Todd J. Clement, Sr.",366 Shadow Lane,,LaPlace,LA,70068,5,985-651-7483,W,M,D,265,12/31/2014,1/1/2009,Mr. Clement +Constable ,Justice of the Peace District 1 ,116 E. 13th St.,,Edgard,LA,70049,985-497-8661,ST. JOHN THE BAPTIST,Chyrall August,P.O. Box 331,,Edgard,LA,70049,5,504-621-6847,B,M,D,267,12/31/2014,1/1/2009, +Constable ,Justice of the Peace District 2 ,P.O. Box 593,,Garyville,LA,70051,,ST. JOHN THE BAPTIST,"Barry ""Mr.- B"" Ellis, Sr.",P.O. Box 199,,Garyville,LA,70051,5,985-535-6119,B,M,D,267,12/31/2014,1/1/2009,Mr. Ellis +Constable ,Justice of the Peace District 3 ,244 E. 15th St.,,Reserve,LA,70084,985-536-2408,ST. JOHN THE BAPTIST,"Anatole ""Touie"" Jacob",244 East 15th St.,,Reserve,LA,70084,5,985-536-2408,W,M,D,267,12/31/2014,1/1/2009,Mr. Jacob +Constable ,Justice of the Peace District 4 ,963 W. Fifth St.,,LaPlace,LA,70068,985-652-1603,ST. JOHN THE BAPTIST,Russel Landeche,963 West 5th St.,,LaPlace,LA,70068,5,985-652-1603,W,M,R,267,12/31/2014,1/1/2009,Mr. Landeche +Constable ,Justice of the Peace District 5 ,221 W. Fifth St.,,LaPlace,LA,70068,985-652-6248,ST. JOHN THE BAPTIST,"Donald ""Donoo"" Brady",221 West 5th St.,,LaPlace,LA,70068,5,985-652-6248,W,M,D,267,12/31/2014,1/1/2009, +Constable ,Justice of the Peace District 6 ,640 Fairway Dr.,,LaPlace,LA,70068,985-652-9659,ST. JOHN THE BAPTIST,Don D. Detillier,640 Fairway Dr.,,LaPlace,LA,70068,5,985-652-9659,W,M,D,267,12/31/2014,1/1/2009,Mr. Detillier +Constable ,Justice of the Peace District 7 ,377 Highland Dr.,,LaPlace,LA,70068,985-652-8756,ST. JOHN THE BAPTIST,"Keith M. ""Mike"" Bourgeois",377 Highland Drive,,LaPlace,LA,70068,5,985-652-8756,W,M,D,267,12/31/2014,1/1/2009,Mr. Bourgeois +DPEC Member ,at Large ,,,,LA,,,ST. LANDRY,"""Greg"" Ardoin",192 Grant Rd.,,Opelousas,LA,70570,5,337-948-6639,W,M,D,54,2/20/2012,2/20/2008,Mr. Ardoin +DPEC Member ,at Large ,,,,LA,,,ST. LANDRY,"Marshall Thibodeaux, ",410 Roosevelt St,,Eunice,LA,70535,5,,,,,54,,1/20/2010, +DPEC Member ,District 1 ,,,,LA,,,ST. LANDRY,"Alex Darjean, ",254 Darjean St,,Opelousas,LA,70570,5,,,,,56,,1/20/2010, +DPEC Member ,District 2 ,,,,LA,,,ST. LANDRY,"John K. Hadley, Jr.",587 Hwy 742,,Opelousas,LA,70570,5,337-407-2333,W,M,D,56,2/20/2012,2/20/2008,Mr. Hadley +DPEC Member ,District 3 ,,,,LA,,,ST. LANDRY,Gregory J. Doucet,631 N. Main St.,,Opelousas,LA,70570,5,337-948-3500,W,M,D,56,2/20/2012,2/20/2008,Mr. Doucet +DPEC Member ,District 4 ,,,,LA,,,ST. LANDRY,,,,,,,0,,,,,56,,, +DPEC Member ,District 5 ,,,,LA,,,ST. LANDRY,,,,,,,0,,,,,56,,, +DPEC Member ,District 6 ,,,,LA,,,ST. LANDRY,,,,,,,0,,,,,56,,, +DPEC Member ,District 7 ,,,,LA,,,ST. LANDRY,Jason Meche,448 Church Rd.,,Opelousas,LA,70570,5,337-879-1006,W,M,D,56,2/20/2012,2/20/2008,Mr. Meche +DPEC Member ,District 8 ,,,,LA,,,ST. LANDRY,"James Gates, ",P.O. Drawer 219,,Opelousas,LA,70571,5,,,,,56,,1/20/2010, +DPEC Member ,District 9 ,,,,LA,,,ST. LANDRY,"Wayne Ardoin, ",734 John Walter Dr.,,Opelousas,LA,70570,5,,,,,56,,1/20/2010, +DPEC Member ,District 10 ,,,,LA,,,ST. LANDRY,,,,,,,0,,,,,56,,, +DPEC Member ,District 11 ,,,,LA,,,ST. LANDRY,,,,,,,0,,,,,56,,, +DPEC Member ,District 12 ,,,,LA,,,ST. LANDRY,,,,,,,0,,,,,56,,, +DPEC Member ,District 13 ,,,,LA,,,ST. LANDRY,"George Fisher, ",541 Roosevelt St,,Eunice,LA,70535,5,,,,,56,,1/20/2010, +RPEC Member ,at Large ,,,,LA,,,ST. LANDRY,Willie J. Godchaux,P. O. Box 786,,Port Barre,LA,70577,5,337-585-0662,W,M,R,64,2/20/2012,2/20/2008,Mr. Goudchaux +RPEC Member ,at Large ,,,,LA,,,ST. LANDRY,James C. Lopez,159 Aspen Ln.,,Opelousas,LA,70570,5,337-948-6969,W,M,R,64,2/20/2012,2/20/2008,Mr. Lopez +RPEC Member ,at Large ,,,,LA,,,ST. LANDRY,"""Stan"" Muller",1599 Prayer House Rd.,,Opelousas,LA,70570,5,337-826-3250,W,M,R,64,2/20/2012,2/20/2008,Mr. Muller +RPEC Member ,at Large ,,,,LA,,,ST. LANDRY,Russell P. Pavich,330 South 9th St.,,Eunice,LA,70535,5,337-546-0494,W,M,R,64,2/20/2012,2/20/2008,Mr. Pavich +RPEC Member ,at Large ,,,,LA,,,ST. LANDRY,Joe Zeringue,225 E. Davis St.,,Opelousas,LA,70570,5,,,,,64,,8/6/2008,Mr. Zeringue +RPEC Member ,District 1 ,,,,LA,,,ST. LANDRY,Alyshia Boagni,410 S. Court St.,,Opelousas,LA,70570,5,,,,,66,,7/8/2008, +RPEC Member ,District 2 ,,,,LA,,,ST. LANDRY,JoAnn Caillouet,150 Crestview Dr.,,Opelousas,LA,70570,5,337-942-5494,,,,66,,7/8/2008,Ms. Caillouet +RPEC Member ,District 3 ,,,,LA,,,ST. LANDRY,Sancha Haysbert-Smith,904 Tensas,,Opelousas,LA,70570,5,,,,,66,,7/8/2008, +RPEC Member ,District 4 ,,,,LA,,,ST. LANDRY,,,,,,,0,,,,,66,,, +RPEC Member ,District 5 ,,,,LA,,,ST. LANDRY,"""Rick"" Ortego",134 Ortego Ln.,,Opelousas,LA,70570,5,337-942-1600,W,M,R,66,2/20/2012,2/20/2008,Mr. Ortego +RPEC Member ,District 6 ,,,,LA,,,ST. LANDRY,Grantt Guillory,2079 O G Track Rd.,,Port Barre,LA,70577,5,,,,,66,,8/6/2008,Mr. Guillory +RPEC Member ,District 7 ,,,,LA,,,ST. LANDRY,,,,,,,0,,,,,66,,, +RPEC Member ,District 8 ,,,,LA,,,ST. LANDRY,Anna M. Hammons,133 St. Ignatius Cir Cankton,,Sunset,LA,70584,5,337-739-0921,W,F,R,66,2/20/2012,2/20/2008,Ms. Hammons +RPEC Member ,District 9 ,,,,LA,,,ST. LANDRY,Betty Foret,7929 Hwy. 31,,Opelousas,LA,70570,5,,,,,66,,7/8/2008,Ms. Foret +RPEC Member ,District 10 ,,,,LA,,,ST. LANDRY,,,,,,,0,,,,,66,,, +RPEC Member ,District 11 ,,,,LA,,,ST. LANDRY,Anthony Guillory,134 Hwy. 367,,Eunice,LA,70535,5,,,,,66,,7/8/2008,Mr. Guillory +RPEC Member ,District 12 ,,,,LA,,,ST. LANDRY,Craig Shilow,461 Corn Ave.,,Eunice,LA,70535,5,,,,,66,,7/8/2008,Mr. Shilow +RPEC Member ,District 13 ,,,,LA,,,ST. LANDRY,Richard Paul Bertrand,1341 W. Park Blvd.,,Eunice,LA,70535,5,337-457-8062,W,M,R,66,2/20/2012,2/20/2008,Mr. Bertrand +Sheriff ,,P. O. Box 1029,,Opelousas,LA,70571-0390 ,318-948-6516,ST. LANDRY,Bobby J. Guidroz,P.O. Box 1029,,Opelousas,LA,70571-0390 ,11,337-585-6424,W,M,D,225,6/30/2012,7/1/2008,Mr. Guidroz +Clerk of Court ,,P. O. Box 750,,Opelousas,LA,70570,337-942-5606,ST. LANDRY,Charles Jagneaux,P. O. Box 750,,Opelousas,LA,70570,5,337-942-5606,W,M,D,230,6/30/2012,7/1/2008,Mr. Jagneaux +Assessor ,,118 S. Court St. Ste. 230,,Opelousas,LA,70570,337-942-3166,ST. LANDRY,Rhyn L. Duplechain,1821 Alonzo St.,,Opelousas,LA,70570,5,337-948-4653,W,M,D,235,12/31/2012,1/1/2009,Mr. Duplechain +Coroner ,,200 South 7th Street,,Eunice,LA,70535,337-457-1599,ST. LANDRY,Russell Pavich,330 S. Nineth St.,,Eunice,LA,70535,5,337-546-0494,W,M,R,240,3/25/2012,3/24/2008,Mr. Pavich +Parish President ,,,,,LA,,,ST. LANDRY,"Donald ""Don"" Menard",372 Credeur Rd.,,Cankton,LA,70584,5,337-668-4693,W,M,D,243,1/8/2012,1/14/2008,Mr. Menard +Council Member ,District 1 ,P. O. Drawer 1550,,Opelousas,LA,,337-948-3688,ST. LANDRY,"Jerry L. Red, Jr.",465 St. Paul Ave.,,Opelousas,LA,70570,5,337-543-1054,B,M,D,245,1/8/2012,1/14/2008,Mr. Red +Council Member ,District 2 ,P. O. Drawer 1550,,Opelousas,LA,70571-1550,337-948-3688,ST. LANDRY,Leon E. Robinson,P.O. Box 703,,Opelousas,LA,70571,5,337-948-1230,B,M,D,245,1/8/2012,1/14/2008,Mr. Robinson +Council Member ,District 3 ,P. O. Drawer 1550,,Opelousas,LA,70571-1550,337-948-3688,ST. LANDRY,Fekisha Miller,1349 Hwy. 749,,Opelousas,LA,70570,5,337-948-1013,B,F,D,245,1/8/2012,1/14/2008,Ms. Miller +Council Member ,District 4 ,P. O. Drawer 1550,,Opelousas,LA,70571-1550,337-948-3688,ST. LANDRY,Kenneth D. Vidrine,138 Wilson Bridge Rd.,,Washington,LA,70589,5,337-826-3802,W,M,,245,1/8/2012,1/14/2008,Mr. Vidrine +Council Member ,District 5 ,P. O. Drawer 1550,,Opelousas,LA,70571-1550,337-948-3688,ST. LANDRY,Ronald E. Buschel,5416 Hwy. 10,,Washington,LA,70589,5,337-826-3868,W,M,D,245,1/8/2012,1/14/2008,Mr. Buschel +Council Member ,District 6 ,P. O. Drawer 1550,,Opelousas,LA,70571-1550,337-948-3688,ST. LANDRY,Hurlin Dupre,P. O. Box 525,,Port Barre,LA,70577,5,337-585-6388,W,M,D,245,1/8/2012,1/14/2008,Mr. Dupre +Council Member ,District 7 ,P. O. Drawer 1550,,Opelousas,LA,70571-1550,337-948-3688,ST. LANDRY,Albert Hollier,160 Hollier Ln.,,Arnaudville,LA,70512,5,337-879-2378,W,M,D,245,1/8/2012,1/14/2008,Mr. Hollier +Council Member ,District 8 ,P. O. Drawer 1550,,Opelousas,LA,70571-1550,337-948-3688,ST. LANDRY,"""Pam"" Gautreau",453 Chretien Pt. Rd.,,Sunset,LA,70584,5,337-662-5176,W,F,D,245,1/8/2012,1/14/2008,Ms. Gautreau +Council Member ,District 9 ,P. O. Drawer 1550,,Opelousas,LA,70571-1550,337-948-3688,ST. LANDRY,"""Glenn"" Stout",5814 Hwy. 182,,Opelousas,LA,70570,5,337-942-9267,W,M,D,245,1/8/2012,1/14/2008,Mr. Stout +Council Member ,District 10 ,P. O. Drawer 1550,,Opelousas,LA,70571-1550,337-948-3688,ST. LANDRY,Dexter Q. Brown,263 Milton Brown Rd.,,Opelousas,LA,70570,5,337-407-0862,B,M,D,245,1/8/2012,1/14/2008,Mr. Brown +Council Member ,District 11 ,P. O. Drawer 1550,,Opelousas,LA,70571-1550,337-948-3688,ST. LANDRY,"Claude ""Jay"" Guidry",878 Hwy. 357,,Opelousas,LA,70570,5,337-948-1895,W,M,D,245,1/8/2012,1/14/2008,Mr. Guidry +Council Member ,District 12 ,P. O. Drawer 1550,,Opelousas,LA,70571-1550,337-948-3688,ST. LANDRY,Jimmie E. Edwards,810 Faris Ave.,,Eunice,LA,70535,5,337-457-8871,B,M,D,245,1/8/2012,1/14/2008,Mr. Edwards +Council Member ,District 13 ,P. O. Drawer 1550,,Opelousas,LA,70571-1550,337-948-3688,ST. LANDRY,Gary D. Courville,2030 Dudley St.,,Eunice,LA,70535,5,337-480-3809,W,M,D,245,1/8/2012,1/14/2008,Mr. Courville +City Judge ,"City Court, City of Opelousas ",P. O. Box 1999,,Opelousas,LA,70571-1999,337-948-2570,ST. LANDRY,Vanessa Harris,1015 N. Main St.,,Opelousas,LA,70570,5,337-948-3801,B,F,D,250,12/31/2014,1/1/2009,Judge Harris +City Marshal ,"City Court, City of Opelousas ",P. O. Box 1999,,Opelousas,LA,70571-1999,337-948-2577,ST. LANDRY,Paul Mouton,234 Anita Dr.,,Opelousas,LA,70570,5,337-945-7609,B,M,D,250,12/31/2014,1/1/2009,Marshal Mouton +Member of School Board ,District 1 ,P. O. Box 310,,Opelousas,LA,70571-0310 ,337-948-3657,ST. LANDRY,Anthony Standberry,277 Summner Rd.,,Opelousas,LA,70570,5,337-543-7582,B,M,D,255,12/31/2010,1/1/2007,Mr. Standbury +Member of School Board ,District 2 ,P. O. Box 310,,Opelousas,LA,70571-0310 ,337-948-3657,ST. LANDRY,Elinor Nacoste Eaglin,1055 Hwy. 742,,Opelousas,LA,70570,5,942-7098,B,F,D,255,12/31/2010,1/1/2007,Mr. Eaglin +Member of School Board ,District 3 ,P. O. Box 310,,Opelousas,LA,70571-0310 ,337-948-3657,ST. LANDRY,John Miller,1182 Hwy. 749,,Opelousas,LA,70570,5,337-948-1982,B,M,D,255,12/31/2010,1/1/2007,Mr. Miller +Member of School Board ,District 4 ,P. O. Box 310,,Opelousas,LA,70571-0310 ,337-948-3657,ST. LANDRY,"Dillard ""Butch"" Deville",4440 Grand Prairie Hwy.,,Washington,LA,70589,5,826-3367,W,M,D,255,12/31/2010,1/1/2007,Mr. Deville +Member of School Board ,District 5 ,P. O. Box 310,,Opelousas,LA,70571-0310 ,337-948-3657,ST. LANDRY,"Marx ""Sonny"" Budden",P.O. Box 137,,Palmetto,LA,71358,5,337-623-4782,W,M,D,255,12/31/2010,1/1/2007,Mr. Budden +Member of School Board ,District 6 ,P. O. Box 310,,Opelousas,LA,70571-0310 ,337-948-3657,ST. LANDRY,Ronald Carriere,P. O. 211,,Port Barre,LA,70577,5,337-585-6240,W,M,D,255,12/31/2010,1/1/2007,Mr. Carriere +Member of School Board ,District 7 ,P. O. Box 310,,Opelousas,LA,70571-0310 ,337-948-3657,ST. LANDRY,Huey J. Wyble,P.O. Box 446,,Arnaudville,LA,70512,5,754-5865,W,M,D,255,12/31/2010,1/1/2007,Mr. Wyble +Member of School Board ,District 8 ,P. O. Box 310,,Opelousas,LA,70571-0310 ,337-948-3657,ST. LANDRY,Kyle C. Boss,P.O. Box 301,,Sunset,LA,70584,5,337-668-4444,W,M,D,255,12/31/2010,1/1/2007,Mr. Boss +Member of School Board ,District 9 ,P. O. Box 310,,Opelousas,LA,70571-0310 ,337-948-3657,ST. LANDRY,Scott Richard,209 Harry Guilbeau Rd.,,Opelousas,LA,70570,5,337-948-5002,W,M,O,255,12/31/2010,1/1/2007,Mr. Richard +Member of School Board ,District 10 ,P. O. Box 310,,Opelousas,LA,70571-0310 ,337-948-3657,ST. LANDRY,Quincy Richard,180 Trinity Rd.,,Opelousas,LA,70570,5,337-942-4832,B,M,D,255,12/31/2010,1/1/2007,Qunicy Richard +Member of School Board ,District 11 ,P. O. Box 310,,Opelousas,LA,70571-0310 ,337-948-3657,ST. LANDRY,Roger Young,137 Rozas Rd.,,Eunice,LA,70535,5,337-457-5013,W,M,R,255,12/31/2010,1/1/2007,Mr. Young +Member of School Board ,District 12 ,P. O. Box 310,,Opelousas,LA,70571-0310 ,337-948-3657,ST. LANDRY,Josie Frank,651 Faris Ave.,,Eunice,LA,70535,5,337-457-5607,B,F,D,255,12/31/2010,1/1/2007,Mr. Frank +Member of School Board ,District 13 ,P. O. Box 310,,Opelousas,LA,70571-0310 ,337-948-3657,ST. LANDRY,Harry B. Fruge,1220 B & B Ave,,Eunice,LA,70535,5,337-457-5970,W,M,D,255,12/31/2010,1/1/2007,Mr. Fruge +Justice of the Peace ,Justice of the Peace District 4 ,P.O. Box 375,,Leonville,LA,70551,337-662-3902,ST. LANDRY,Robert E. Fruge,P.O. Box 375,,Grand Coteau,LA,70541,5,337-662-3902,W,M,,265,12/31/2014,1/1/2009,Mr. Fruge +Justice of the Peace ,Justice of the Peace District 5 ,476 Main St.,,Cankton,LA,70584,337-668-4310,ST. LANDRY,Scurdy Menard,476 Main St.,,Cankton,LA,70584,5,337-668-4310,W,M,D,265,12/31/2014,1/1/2009,Mr. Menard +Justice of the Peace ,Justice of the Peace District 7 ,P.O. Box 101,,Krotz Springs,LA,70750,337-566-3795,ST. LANDRY,"Geraldine ""Gerry"" Schexnayder",P.O. Box 101,,Krotz Springs,LA,70750,5,337-566-3795,W,F,D,265,12/31/2014,1/1/2009,Ms. Schexnayder +Justice of the Peace ,Justice of the Peace District 8 ,P.O. Box 461,,Port Barre,LA,70577,337-585-7466,ST. LANDRY,"""Liz"" Hutchins Ferguson",P.O. Box 1480,,Port Barre,LA,70577,5,337-351-0023,W,F,,265,12/31/2014,8/24/2009,Ms. Ferguson +Justice of the Peace ,Justice of the Peace District 9 ,8118 Hwy.71,,Washington,LA,70589,337-623-5903,ST. LANDRY,Geneva Motte Lemon,P.O. Box 172,,Lebeau,LA,71345,5,337-623-5909,B,F,D,265,12/31/2014,1/1/2009,Ms. Lemon +Justice of the Peace ,Justice of the Peace District 10 ,P.O. Box 132,,Lebeau,LA,71345,318-346-4116,ST. LANDRY,Ellis Peyton,P.O. Box 132,,Lebeau,LA,71345-0132 ,11,318-346-4116,W,M,D,265,12/31/2014,1/1/2009,Mr. Peyton +Justice of the Peace ,Justice of the Peace District 12 ,18065 Hwy.182,,Bunkie,LA,71322,318-838-2493,ST. LANDRY,Larry Lafleur,18065 Hwy. 182,,Bunkie,LA,71322,5,318-838-2493,W,M,R,265,12/31/2014,1/1/2009,Mr. Lafleur +Justice of the Peace ,Justice of the Peace District 13 ,913 Hwy.363,,Washington,LA,70589,337-826-8858,ST. LANDRY,Gloria D. Fontenot,913 Hwy. 363,,Washington,LA,70589,5,337-826-8858,W,F,O,265,12/31/2014,1/1/2009,Ms. Fontenot +Justice of the Peace ,Justice of the Peace District 18 ,705 Acadiana Rd.,,Opelousas,LA,70570,337-543-6787,ST. LANDRY,Clyde J. Fontenot,690 Patty St.,,Opelousas,LA,70570,5,337-543-6244,W,M,D,265,12/31/2014,1/1/2009,Mr. Fontenot +Justice of the Peace ,Justice of the Peace District 19 ,518 Bourque Rd.,,Church Point,LA,70525,337-948-7043,ST. LANDRY,Melissa F. Labbe,1410 Noel Rd.,,Church Point,LA,70525,5,337-684-5796,W,F,D,265,12/31/2014,1/1/2009,Ms. Labbe +Justice of the Peace(s) ,Justice of the Peace District 6 ,P.O. BOX 617,,Arnaudville,LA,70512,337-754-7190,ST. LANDRY,Tina Rivette LaGrange,P.O. Box 617,,Arnaudville,LA,70512,5,337-754-7190,W,F,D,265,12/31/2014,1/1/2009,Ms. LaGrange +Justice of the Peace(s) ,Justice of the Peace District 6 ,P.O. BOX 617,,Arnaudville,LA,70512,337-754-7190,ST. LANDRY,Linda Stelly,7420 Hwy. 93,,Arnaudville,LA,70512,5,337-662-3919,W,F,D,265,12/31/2014,1/1/2009,Ms. Stelly +Justice of the Peace(s) ,Justice of the Peace District 11 ,P.O. Box 357,,Washington,LA,70589,337-826-7429,ST. LANDRY,"Lou Dean O. Bordelon, ",P.O. Box 357,,Washington,LA,70589,5,337-826-7429,W,F,O,265,12/31/2014,1/1/2009,Ms. Bordelon +Justice of the Peace(s) ,Justice of the Peace District 11 ,P.O. Box 357,,Washington,LA,70589,337-826-7429,ST. LANDRY,Lee R. Darbonne,205 Flamingo Ln.,,Opelousas,LA,70570,5,337-826-7633,W,M,O,265,12/31/2014,1/1/2009,Mr. Darbonne +Constable ,Justice of the Peace District 4 ,103 Turf Ln.,,Carencro,LA,70520,337-662-5545,ST. LANDRY,Ronald Dugas,407 Pellerin Rd.,,Sunset,LA,70584,5,337-662-5042,W,M,D,267,12/31/2014,1/1/2009,Mr. Dugas +Constable ,Justice of the Peace District 5 ,3970 Osage Trail,,Church Point,LA,70525,337-668-4299,ST. LANDRY,Ricky J. Comeaux,3970 Osage Trail,,Church Point,LA,70525,5,337-668-4299,W,M,D,267,12/31/2014,1/1/2009,Mr. Comeaux +Constable ,Justice of the Peace District 7 ,P.O. Box 111,,Melville,LA,71353,337-623-3916,ST. LANDRY,"Jeffery ""Bodeen"" Rose",P.O. Box 50,,Melville,LA,71353,5,337-623-3723,B,M,D,267,12/31/2014,1/1/2009,Mr. Rose +Constable ,Justice of the Peace District 8 ,P.O. Box 1163,,Port Barre,LA,70577,337-585-6542,ST. LANDRY,Carl Hardy,P.O. Box 311,,Port Barre,LA,70577,5,337-347-2180,B,M,,267,12/31/2014,8/24/2009,Mr. Hardy +Constable ,Justice of the Peace District 9 ,209 Carmons Rd.,,Palmetto,LA,71358,337-585-7491,ST. LANDRY,"Larry O. Moore, Sr.",P.O. Box 26,,Palmetto,LA,71358,5,337-623-5538,B,M,D,267,12/31/2014,1/1/2009,Mr. Moore +Constable ,Justice of the Peace District 10 ,10629 Hwy. 71,,Bunkie,LA,71322,318-346-6124,ST. LANDRY,"Floyd J. Moran, Sr.",10629 Hwy. 71,,Bunkie,LA,71322,5,318-346-6124,W,M,D,267,12/31/2014,1/1/2009,Mr. Moran +Constable ,Justice of the Peace District 12 ,19771 Hwy. 182,,Bunkie,LA,71322,337-838-2443,ST. LANDRY,Joyce Stagg Whaley,850 Cotton Patch Rd.,,Bunkie,LA,71322-4928,10,337-826-7952,W,F,R,267,12/31/2014,1/1/2009,Ms. Whaley +Constable ,Justice of the Peace District 13 ,3360 Grand Prairie Hwy.,,Washington,LA,70589,337-826-7512,ST. LANDRY,Sherron Roberie,3360 Grand Prairie Hwy.,,Washington,LA,70589-4028,10,337-826-7512,W,M,O,267,12/31/2014,1/1/2009,Mr. Roberie +Constable ,Justice of the Peace District 18 ,868 Jesse B Rd.,,Church Point,LA,70525,337-543-6629,ST. LANDRY,"Eddie ""Chalk"" Thibodeaux",P.O. Box 159,,Lawtell,LA,70550-0159 ,11,337-543-5214,W,M,D,267,12/31/2014,1/1/2009,Mr. Thibodaux +Constable ,Justice of the Peace District 19 ,518 Bourque Rd.,,Church Point,LA,70525,337-948-7043,ST. LANDRY,Watson J. Champagne,518 Bourque Rd.,,Church Point,LA,70525,5,337-948-7043,W,M,D,267,12/31/2014,1/1/2009,Mr. Champagne +Constable(s) ,Justice of the Peace District 6 ,2864 Hwy. 31,,Arnaudville,LA,70512,337-879-2533,ST. LANDRY,Judy D. Meche,2864 Hwy. 31,,Arnaudville,LA,70512,5,337-879-2533,W,F,D,267,12/31/2014,1/1/2009,Ms. Meche +Constable(s) ,Justice of the Peace District 6 ,2864 Hwy. 31,,Arnaudville,LA,70512,337-879-2533,ST. LANDRY,"""Leo"" Meche",2864 Hwy. 31,,Arnaudville,LA,70512,5,337-879-2533,W,M,D,267,12/31/2014,1/1/2009,Mr. Meche +Constable(s) ,Justice of the Peace District 11 ,226 W. Hill St.,,Washington,LA,70589,337-942-7687,ST. LANDRY,"Charles R. ""Charlie Bill"" Soileau",P.O. Box 206,,Washington,LA,70589,5,337-692-3011,W,M,D,267,12/31/2014,1/1/2009,Mr. Soileau +Constable(s) ,Justice of the Peace District 11 ,226 W. Hill St.,,Washington,LA,70589,337-942-7687,ST. LANDRY,"James ""Jimmy"" Soileau",463 Deprimo Ln.,,Opelousas,LA,70570,5,337-942-7939,W,M,O,267,12/31/2014,1/1/2009,Mr. Soileau +Mayor ,City of Opelousas ,P. O. Box 1879,,Opelousas,LA,,337-948-2520,ST. LANDRY,"Donald ""Don"" Cravins, Sr.",P.O. Box 1879,,Opelousas,LA,70571,5,337-948-4287,B,M,D,300,12/31/2010,1/1/2007,Mr. Cravins +Mayor ,Town of Grand Coteau ,P. O. Drawer G,,Grand Coteau,LA,,337-662-5246,ST. LANDRY,"""Gail"" Lark",P.O. Box 462,,Grand Coteau,LA,70541,5,337-662-5826,W,F,D,300,12/31/2010,1/1/2007,Mayor Lark +Mayor ,Town of Krotz Springs ,P. O. Box 218,,Krotz Springs,LA,,337-566-2322,ST. LANDRY,Gary Soileau,P.O. Box 441,,Krotz Springs,LA,70750,5,337-566-2244,W,M,D,300,12/31/2010,1/1/2007,Mr. Soileau +Mayor ,Town of Leonville ,P. O. Box 57,,Leonville,LA,,337-879-2601,ST. LANDRY,"Joel Lanclos, Jr.",P.O. Box 116,,Leonville,LA,70551,5,337-879-2556,W,M,D,300,12/31/2010,1/1/2007,Mr. Lanclos +Mayor ,Town of Melville ,P. O. Box 268,,Melville,LA,,337-623-4226,ST. LANDRY,"""Pam"" Cannatella",P.O. Box 523,,Melville,LA,71353,5,337-623-4650,W,F,D,300,12/31/2010,1/1/2007,Ms. Cannatella +Mayor ,Town of Port Barre ,P. O. Box 219,,Port Barre,LA,,337-585-7646,ST. LANDRY,"""Gil"" Savoy, Jr.",P.O. Box 358,,Port Barre,LA,70577,5,337-585-7655,W,M,D,300,12/31/2010,1/1/2007,Mayor Savoy +Mayor ,Town of Sunset ,855 Napoleon Ave.,,Sunset,LA,,337-662-5296,ST. LANDRY,Cecil LaVergne,P.O. Box 417,,Sunset,LA,70584,5,337-523-6241,W,M,D,300,12/31/2010,1/1/2007,Mayor LaVergne +Mayor ,Town of Washington ,P. O. Box 218,,Washington,LA,,337-826-3626,ST. LANDRY,"Joseph ""Joe"" Pitre",P.O. Box 334,,Washington,LA,70589,5,,B,M,D,300,12/31/2010,1/1/2007,Mayor Pitre +Mayor ,Village of Cankton ,107 Dandurand St.,,Cankton,LA,,337-668-4456,ST. LANDRY,"""Susan"" Menard",372 Credeur Rd.,,Cankton,LA,70584,5,337-668-4693,W,F,D,300,12/31/2010,1/1/2007,Ms. Menard +Mayor ,Village of Palmetto ,P. O. Box 97,,Palmetto,LA,,337-623-4426,ST. LANDRY,"""Jeff"" Benhard, II",P.O. Box 212,,Palmetto,LA,71358,5,337-623-2067,W,M,R,300,12/31/2010,7/21/2008,Mayor Benhard +Chief of Police ,City of Opelousas ,P. O. Box 1879,,Opelousas,LA,70571,337-948-2520,ST. LANDRY,Perry Gallow,318 N. Court St.,,Opelousas,LA,70570,5,337-948-2500,B,M,D,305,12/31/2010,1/1/2007,Mr. Gallow +Chief of Police ,Town of Grand Coteau ,P. O. Drawer G,,Grand Coteau,LA,70541,337-662-5246,ST. LANDRY,Margaret R. Coco,P.O. Box 196,,Grand Coteau,LA,70541,5,337-662-3667,B,F,D,305,12/31/2010,1/1/2007,Ms. Coco +Chief of Police ,Town of Krotz Springs ,P. O. Box 218,,Krotz Springs,LA,70750,337-566-2322,ST. LANDRY,"Wanda ""Susie"" Lacassin",P.O. Box 571,,Krotz Springs,LA,70750,5,337-566-8863,W,F,D,305,12/31/2010,1/1/2007,Ms. Lacassin +Chief of Police ,Town of Leonville ,P. O. Box 57,,Leonville,LA,70551,337-879-2601,ST. LANDRY,"Dalton ""Pemo"" Brown",P.O. Box 359,,Leonville,LA,70551,5,337-879-2856,B,M,D,305,12/31/2010,1/1/2007,Mr. Brown +Chief of Police ,Town of Melville ,P. O. Box 268,,Melville,LA,71353,337-623-4226,ST. LANDRY,John McKeel,P.O. Box 572,,Melville,LA,71353,5,337-623-5806,B,M,D,305,12/31/2010,1/1/2007,Mr. McKell +Chief of Police ,Town of Port Barre ,P. O. Box 219,,Port Barre,LA,70577,337-585-7646,ST. LANDRY,Deon Boudreaux,P.O. Box 1318,,Port Barre,LA,70577,5,337-447-0499,W,M,,305,12/31/2010,2/20/2008,Chief Boudreaux +Chief of Police ,Town of Sunset ,855 Napoleon Ave.,,Sunset,LA,70584,337-662-5296,ST. LANDRY,Alexcie Guillory,P.O. Box 15,,Sunset,LA,70584,5,337-351-2082,B,M,D,305,12/31/2010,1/1/2007,Chief Guillory +Chief of Police ,Town of Washington ,P. O. Box 218,,Washington,LA,70589,337-826-3626,ST. LANDRY,John Offord,P.O. Box 332,,Washington,LA,70589,5,337-826-3954,B,M,D,305,12/31/2010,1/1/2007,Chief Offord +Chief of Police ,Village of Cankton ,107 Dandurand St.,,Cankton,LA,70584,337-668-4456,ST. LANDRY,Heath Treadway,448 Main St. Cankton #10,,Sunset,LA,70584,5,337-288-2345,W,M,R,305,12/31/2010,1/1/2007,Mr. Treadway +Chief of Police ,Village of Palmetto ,P. O. Box 97,,Palmetto,LA,71358,337-623-4426,ST. LANDRY,David Krull,P.O. Box 101,,Palmetto,LA,71358,5,337-945-8218,W,M,D,305,12/31/2010,8/24/2009,Chief Krull +Alderman at Large ,City of Opelousas ,,,,LA,,,ST. LANDRY,Harvey Darbonne,2506 Linwood Loop,,Opelousas,LA,70570,5,337-948-3900,B,M,D,308,12/31/2010,1/1/2007,Mr. Darbonne +Alderman at Large ,Town of Sunset ,,,,LA,,,ST. LANDRY,Bernice Richard Smith,P.O. Box 1421,,Sunset,LA,70584,5,337-662-3732,B,F,D,308,12/31/2010,1/1/2007,Ms. Smith +Alderman at Large ,Town of Washington ,P. O. Box 218,,Washington,LA,70589,337-826-3626,ST. LANDRY,Mona C. Wilson,P.O. Box 632,,Washington,LA,70589,5,337-212-1127,B,F,D,308,12/31/2010,1/1/2007,Ms. Wilson +Alderman ,"District 1, Town of Sunset ",855 Napoleon Ave.,,Sunset,LA,70584,337-662-5296,ST. LANDRY,Joseph Ewell Meche,133 B O St.,,Sunset,LA,70584,5,662-3084,B,M,D,310,12/31/2010,1/1/2007,Mr. Meche +Alderman ,"District 1, Town of Washington ",P. O. Box 218,,Washington,LA,70589,337-826-3626,ST. LANDRY,Gary J. Wilson,P.O. Box 293,,Washington,LA,70589,5,337-412-2061,W,M,D,310,12/31/2010,1/1/2007,Mr. Wilson +Alderman ,"District 2, Town of Sunset ",855 Napoleon Ave.,,Sunset,LA,70584,337-662-5296,ST. LANDRY,"Dalton ""Bulla"" Belson, Jr.",P.O. Box 136,,Sunset,LA,70584,5,337-662-3354,B,M,D,310,12/31/2010,1/1/2007,Mr. Belson +Alderman ,"District 2, Town of Washington ",P. O. Box 218,,Washington,LA,70589,337-826-3626,ST. LANDRY,Wilson Doomes,P.O. Box 551,,Washington,LA,70589,5,337-351-5623,B,M,D,310,12/31/2010,1/1/2007,Mr. Doomes +Alderman ,"District 3, Town of Sunset ",855 Napoleon Ave.,,Sunset,LA,70584,337-662-5296,ST. LANDRY,"Charles ""Cha-Cha"" James",590 Pershing Hwy.,,Sunset,LA,70584,5,337-662-3298,B,M,D,310,12/31/2010,1/1/2007,Mr. James +Alderman ,"District 3, Town of Washington ",P. O. Box 218,,Washington,LA,70589,337-826-3626,ST. LANDRY,Laura Budden Allegood,P.O. Box 744,,Washington,LA,70589,5,337-826-3274,W,F,D,310,12/31/2010,11/27/2007,Ms. Allegood +Alderman ,"District 4, Town of Sunset ",855 Napoleon Ave.,,Sunset,LA,70584,337-662-5296,ST. LANDRY,Melanie White,185 Hummingbird Ln.,,Sunset,LA,70584,5,337-662-3918,W,F,R,310,12/31/2010,1/1/2007,Mr. White +Alderman ,"District 4, Town of Washington ",P. O. Box 218,,Washington,LA,70589,337-826-3626,ST. LANDRY,"Wilbert ""Bobby"" Ledet",P.O. Box 241,,Washington,LA,70589,5,337-826-7265,B,M,D,310,12/31/2010,1/1/2007,Mr. Ledet +Alderman ,"District A, City of Opelousas ",P. O. Box 1879,,Opelousas,LA,70571,337-948-2520,ST. LANDRY,Julius Alsandor,P. O. Box 417,,Opelousas,LA,70571,5,337-278-9501,B,M,D,310,12/31/2010,5/12/2009,Mr. Alsandor +Alderman ,"District A, Town of Krotz Springs ",P. O. Box 218,,Krotz Springs,LA,70750,337-566-2322,ST. LANDRY,"""Keith"" Ardoin",P.O. Box 566,,Krotz Springs,LA,70750,5,337-566-8823,W,M,D,310,12/31/2010,1/1/2007,Mr. Ardoin +Alderman ,"District B, City of Opelousas ",P. O. Box 1879,,Opelousas,LA,70571,337-948-2520,ST. LANDRY,"Louis Butler, Jr.",404 W. Church St.,,Opelousas,LA,70570,5,337-942-8248,B,M,D,310,12/31/2010,1/1/2007,Mr. Butler +Alderman ,"District B, Town of Krotz Springs ",,,,LA,,,ST. LANDRY,"William ""Bill"" Bryson",P.O. Box 254,,Krotz Springs,LA,70750,5,337-566-2237,W,M,D,310,12/31/2010,1/1/2007,Mr. Bryson +Alderman ,"District C, City of Opelousas ",P. O. Box 1879,,Opelousas,LA,70571,337-948-2520,ST. LANDRY,"""Dale"" Pefferkorn",728 Abdalla Blvd.,,Opelousas,LA,70570,5,948-8433,W,M,D,310,12/31/2010,1/1/2007,Mr. Pefferkorn +Alderman ,"District C, Town of Krotz Springs ",,,,LA,,,ST. LANDRY,Tony Collette,P.O. Box 205,,Krotz Springs,LA,70750,5,337-566-3413,W,M,D,310,12/31/2010,1/1/2007,Mr. Collette +Alderman ,"District D, City of Opelousas ",P. O. Box 1879,,Opelousas,LA,70571,337-948-2520,ST. LANDRY,"Reginald ""Reggie"" Tatum",P. O. Box 1084,,Opelousas,LA,70571,5,337-331-4454,B,M,D,310,12/31/2010,11/14/2008,Mr. Tatum +Alderman ,"District D, Town of Krotz Springs ",,,,LA,,,ST. LANDRY,Mary Lou Lacassin,P.O. Box 394,,Krotz Springs,LA,70750,5,337-566-3463,W,F,D,310,12/31/2010,1/1/2007,Ms. Lacassin +Alderman ,"District E, City of Opelousas ",P. O. Box 1879,,Opelousas,LA,70571,337-948-2520,ST. LANDRY,Jacqueline M. Martin,1622 Evans St.,,Opelousas,LA,70570,5,942-8799,B,F,D,310,12/31/2010,1/1/2007,Ms. Martin +Alderman ,"District E, Town of Krotz Springs ",,,,LA,,,ST. LANDRY,Donald Williams,P.O. Box 318,,Krotz Springs,LA,70750,5,566-2243,W,M,D,310,12/31/2010,1/1/2007,Mr. Williams +Alderman ,Town of Grand Coteau ,P. O. Drawer G,,Grand Coteau,LA,70541,337-662-5246,ST. LANDRY,Pamela V. Barriere,P.O. Box 109,,Grand Coteau,LA,70541,5,337-258-2600,B,F,D,310,12/31/2010,1/1/2007,Ms. Barriere +Alderman ,Town of Grand Coteau ,P. O. Drawer G,,Grand Coteau,LA,70541,337-662-5246,ST. LANDRY,Wilton Guidry,P.O. Box 457,,Grand Coteau,LA,70541,5,337-662-3484,B,M,D,310,12/31/2010,1/1/2007,Mr. Guidry +Alderman ,Town of Grand Coteau ,P. O. Drawer G,,Grand Coteau,LA,70541,337-662-5246,ST. LANDRY,"Shaterral ""Terra"" Johnson",P.O. Box 392,,Sunset,LA,70584,5,337-255-5919,B,F,D,310,12/31/2010,1/1/2007,Ms. Johnson +Alderman ,Town of Grand Coteau ,P. O. Drawer G,,Grand Coteau,LA,70541,337-662-5246,ST. LANDRY,John Lewis,P.O. Box 265,,Grand Coteau,LA,70541,5,337-662-5156,B,M,D,310,12/31/2010,1/1/2007,Mr. Lewis +Alderman ,Town of Grand Coteau ,P. O. Drawer G,,Grand Coteau,LA,70541,337-662-5246,ST. LANDRY,"John ""T-John"" Slaughter",P.O. Box 131,,Grand Coteau,LA,70541,5,337-781-7912,W,M,D,310,12/31/2010,1/1/2007,Mr. Slaughter +Alderman ,Town of Port Barre ,P. O. Box 219,,Port Barre,LA,70577,337-585-7646,ST. LANDRY,Keith LeJeune,P.O. Box 614,,Port Barre,LA,70577,5,337-585-6471,W,M,R,310,12/31/2010,1/1/2007,Keith LeJeune +Alderman ,Town of Port Barre ,P. O. Box 219,,Port Barre,LA,70577,337-585-7646,ST. LANDRY,"Ken ""TUSI"" Marks",P.O. Box 692,,Port Barre,LA,70577,5,585-6441,W,M,D,310,12/31/2010,1/1/2007,Mr. Marks +Alderman ,Town of Port Barre ,P. O. Box 219,,Port Barre,LA,70577,337-585-7646,ST. LANDRY,Richard Mobile,P.O. Box 213,,Port Barre,LA,70577,5,337-351-2980,W,M,D,310,12/31/2010,1/1/2007,Mr. Mobile +Alderman ,Town of Port Barre ,P. O. Box 219,,Port Barre,LA,70577,337-585-7646,ST. LANDRY,Paula Roberts Sharkey,P.O. Box 58,,Port Barre,LA,70577,5,337-585-0392,W,M,,310,12/31/2010,1/1/2007,Ms. Sharkey +Alderman ,Town of Port Barre ,P. O. Box 219,,Port Barre,LA,70577,337-585-7646,ST. LANDRY,"""Bobby"" Soileau",P.O. Box 578,,Port Barre,LA,70577,5,585-6207,W,M,D,310,12/31/2010,1/1/2007,Mr. Soileau +Alderman ,Village of Cankton ,107 Dandurand St.,,Cankton,LA,70584,337-668-4456,ST. LANDRY,Kevin J. Colligan,"634 Savoie Rd., Cankton",,Sunset,LA,70584,5,337-224-1214,W,M,,310,12/31/2010,1/1/2007,Mr. Colligan +Alderman ,Village of Cankton ,107 Dandurand St.,,Cankton,LA,70584,337-668-4456,ST. LANDRY,"""Bart"" Daigle","680 Savoie Rd., Cankton",,Sunset,LA,70584,5,337-668-4594,W,M,D,310,12/31/2010,1/1/2007,Mr. Daigle +Alderman ,Village of Cankton ,107 Dandurand St.,,Cankton,LA,70584,337-668-4456,ST. LANDRY,"Camille ""Junior"" Menard","792 Main St., Cankton",,Sunset,LA,70584,5,337-668-4467,W,M,D,310,12/31/2010,1/1/2007,Mr. Menard +Alderman ,Village of Palmetto ,P. O. Box 97,,Palmetto,LA,71358,337-623-4426,ST. LANDRY,Debra Lynn Coulon,P.O. Box 163,,Palmetto,LA,71358,5,337-592-3605,W,F,,310,12/31/2010,8/24/2009,Ms. Coulon +Alderman ,Village of Palmetto ,P. O. Box 97,,Palmetto,LA,71358,337-623-4426,ST. LANDRY,Judy S. Dupre,P.O. Box 46,,Palmetto,LA,71358,5,337-623-4731,W,F,D,310,12/31/2010,1/1/2007,Ms. Dupre +Alderman ,Village of Palmetto ,P. O. Box 97,,Palmetto,LA,71358,337-623-4426,ST. LANDRY,Nelene Guidroz,P.O. Box 74,,Palmetto,LA,71358,5,337-945-1512,W,M,D,310,12/31/2010,1/1/2007,Ms. Guidroz +Council Member ,Town of Leonville ,P. O. Box 57,,Leonville,LA,70551,337-879-2601,ST. LANDRY,"""Nick"" Degueyter",P.O. Box 442,,Arnaudville,LA,70512,5,337-879-7026,W,M,R,310,12/31/2010,1/1/2007,Mr. Degueyter +Council Member ,Town of Leonville ,P. O. Box 57,,Leonville,LA,70551,337-879-2601,ST. LANDRY,"""Gayle"" Briley Falcon",211 Hummingbird Ln.,,Opelousas,LA,70570,5,337-879-0111,W,F,D,310,12/31/2010,1/1/2007,Ms. Falcon +Council Member ,Town of Leonville ,P. O. Box 57,,Leonville,LA,70551,337-879-2601,ST. LANDRY,Brandon Gil,P.O. Box 194,,Leonville,LA,70551,5,879-7295,W,M,D,310,12/31/2010,1/1/2007,Mr. Gil +Council Member ,Town of Leonville ,P. O. Box 57,,Leonville,LA,70551,337-879-2601,ST. LANDRY,Jason Meche,448 Church Rd.,,Opelousas,LA,70570,5,337-298-5705,W,M,D,310,12/31/2010,8/24/2009,Mr. Meche +Council Member ,Town of Leonville ,P. O. Box 57,,Leonville,LA,70551,337-879-2601,ST. LANDRY,Kerry J. Willingham,P.O. Box 118,,Leonville,LA,70551,5,945-2926,W,M,D,310,12/31/2010,1/1/2007,Mr. Willingham +Council Member ,Town of Melville ,P. O. Box 268,,Melville,LA,71353,337-623-4226,ST. LANDRY,Marshall Bertrand,P.O. Box 141,,Melville,LA,71353,5,337-623-0336,W,M,R,310,12/31/2010,1/1/2007,Mr. Bertrand +Council Member ,Town of Melville ,P. O. Box 268,,Melville,LA,71353,337-623-4226,ST. LANDRY,"Veronica ""Connie"" LeBlanc",P.O. Box 293,,Melville,LA,71353,5,337-623-9992,W,F,D,310,12/31/2010,1/1/2007,Ms. LeBlanc +Council Member ,Town of Melville ,P. O. Box 268,,Melville,LA,71353,337-623-4226,ST. LANDRY,Denise Oliney Rose,P.O. Box 357,,Melville,LA,71353,5,337-623-3723,B,F,D,310,12/31/2010,1/1/2007,Ms. Rose +Council Member ,Town of Melville ,P. O. Box 268,,Melville,LA,71353,337-623-4226,ST. LANDRY,"""Ed"" Triplett",P. O. Box 12,,Melville,LA,71353,5,337-623-4222,W,M,D,310,12/31/2010,11/14/2008,Mr. Triplett +Council Member ,Town of Melville ,P. O. Box 268,,Melville,LA,71353,337-623-4226,ST. LANDRY,Christine M. Vaughns,P.O. Box 454,,Melville,LA,71353,5,337-658-8566,B,F,D,310,12/31/2010,1/1/2007,Ms. Vaughns +DPEC Member ,at Large ,,,,LA,,,ST. MARTIN,Melissa Castille,P.O. Box 136,,St. Martinville,LA,70582,5,337-394-6181,W,F,D,54,2/20/2012,2/20/2008,Ms. Castille +DPEC Member ,at Large ,,,,LA,,,ST. MARTIN,Mardy J. Guidry,1021 Roma St.,,Breaux Bridge,LA,70517,5,337-212-4662,W,M,D,54,2/20/2012,2/20/2008,Mr. Guidry +DPEC Member ,at Large ,,,,LA,,,ST. MARTIN,Christy Hebert,1039 Conde Rd.,,St. Martinville,LA,70582,5,337-394-5598,W,F,D,54,2/20/2012,2/20/2008,Ms. Hebert +DPEC Member ,District 1 ,,,,LA,,,ST. MARTIN,Dolores L. Bourda,1004 Mustang Cir.,,St. Martinville,LA,70582,5,337-394-4487,B,F,D,56,2/20/2012,2/20/2008,Ms. Bourda +DPEC Member ,District 2 ,,,,LA,,,ST. MARTIN,Melba D. Braud,7134 Main Hwy.,,St. Martinville,LA,70582,5,337-394-3252,B,F,D,56,2/20/2012,2/20/2008,Ms. Braud +DPEC Member ,District 3 ,,,,LA,,,ST. MARTIN,Odell Trahan,1053 Big Apple Ln.,,St. Martinville,LA,70582,5,337-394-3302,B,M,D,56,2/20/2012,2/20/2008,Mr. Trahan +DPEC Member ,District 4 ,,,,LA,,,ST. MARTIN,Mary Kately Jones,1394 BBSH Rd.,,Breaux Bridge,LA,70517,5,337-845-4316,B,F,D,56,2/20/2012,2/20/2008,Ms. Jones +DPEC Member ,District 5 ,,,,LA,,,ST. MARTIN,,,,,,,0,,,,,56,,, +DPEC Member ,District 6 ,,,,LA,,,ST. MARTIN,,,,,,,0,,,,,56,,, +DPEC Member ,District 7 ,,,,LA,,,ST. MARTIN,,,,,,,0,,,,,56,,, +DPEC Member ,District 8 ,,,,LA,,,ST. MARTIN,,,,,,,0,,,,,56,,, +DPEC Member ,District 9 ,,,,LA,,,ST. MARTIN,,,,,,,0,,,,,56,,, +RPEC Member ,at Large ,,,,LA,,,ST. MARTIN,Lottie P. Beebe,525 Clause Dr.,,Breaux Bridge,LA,70517,5,337-442-6650,W,F,R,64,2/20/2012,2/20/2008,Ms. Lottie +RPEC Member ,at Large ,,,,LA,,,ST. MARTIN,Rose Knott,1094 Bushville Hwy.,,Arnaudville,LA,70512,5,337-754-9980,W,F,R,64,2/20/2012,2/20/2008,Ms. Knott +RPEC Member ,District 1 ,,,,LA,,,ST. MARTIN,,,,,,,0,,,,,66,,, +RPEC Member ,District 2 ,,,,LA,,,ST. MARTIN,,,,,,,0,,,,,66,,, +RPEC Member ,District 3 ,,,,LA,,,ST. MARTIN,,,,,,,0,,,,,66,,, +RPEC Member ,District 4 ,,,,LA,,,ST. MARTIN,,,,,,,0,,,,,66,,, +RPEC Member ,District 5 ,,,,LA,,,ST. MARTIN,,,,,,,0,,,,,66,,, +RPEC Member ,District 6 ,,,,LA,,,ST. MARTIN,,,,,,,0,,,,,66,,, +RPEC Member ,District 7 ,,,,LA,,,ST. MARTIN,,,,,,,0,,,,,66,,, +RPEC Member ,District 8 ,,,,LA,,,ST. MARTIN,,,,,,,0,,,,,66,,, +RPEC Member ,District 9 ,,,,LA,,,ST. MARTIN,,,,,,,0,,,,,66,,, +Sheriff ,,P. O. Box 247,,St. Martinville,LA,70582,318-394-3071,ST. MARTIN,"Ronald J. ""Ronny"" Theriot",P.O. Box 247,,St. Martinville,LA,70582,5,337-394-5259,W,M,O,225,6/30/2012,7/1/2008,Mr. Theriot +Clerk of Court ,,P. O. Box 308,,St. Martinville,LA,70582,337-394-2210,ST. MARTIN,"Allen Blanchard, Sr.",P. O. Box 308,,St. Martinville,LA,70582,5,337-845-4289,W,M,D,230,6/30/2012,7/1/2008,Mr. Blanchard +Assessor ,,"415 S. Main St., Ste. 103",,St. Martinville,LA,70582,337-394-2208,ST. MARTIN,Lawrence Patin,1511-A Nina Hwy.,,Breaux Bridge,LA,70517,5,337-228-2733,W,M,D,235,12/31/2012,1/1/2009,Mr. Patin +Coroner ,,"1117 North Main St., Suite B",,St. Martinville,LA,70582,337-394-7111,ST. MARTIN,Daniel Wiltz,"1117 North Main St., Ste. B",,St. Martinville,LA,70582,5,337-394-7111,B,M,D,240,3/25/2012,3/24/2008,Mr. Wiltz +Parish President ,,P.O. Box 9,,St. Martinville,LA,70582,337-394-2200,ST. MARTIN,Guy J. Cormier,P. O. Box 318,,St. Martinville,LA,70582,5,337-560-5237,W,M,D,243,1/9/2012,1/14/2008,Mr. Cormier +Council Member ,District 1 ,P. O. Box 9,,St. Martinville,LA,,337-394-2200,ST. MARTIN,"Carroll ""Coach"" Delahoussaye",1007 Wendy Dr.,,St. Martinville,LA,70582,5,337-394-9417,W,M,D,245,1/9/2012,1/14/2008,Mr. Delahoussaye +Council Member ,District 2 ,P. O. Box 9,,St. Martinville,LA,70582,337-394-2200,ST. MARTIN,Lisa Nelson,"720 S. Martin Luther King, Jr. Dr.",,St. Martinville,LA,70582,5,337-394-6396,B,F,D,245,1/9/2012,1/14/2008,Ms. Nelson +Council Member ,District 3 ,P. O. Box 9,,St. Martinville,LA,70582,337-394-2200,ST. MARTIN,Jason Willis,214 Stephanie Drive,,St. Martinville,LA,70582,5,337-394-7474,B,M,D,245,1/9/2012,1/14/2008,Mr. Willis +Council Member ,District 4 ,P. O. Box 9,,St. Martinville,LA,70582,337-394-2200,ST. MARTIN,Mike Huval,P.O. Box 2618,,Parks,LA,70582,5,337-845-5126,W,M,D,245,1/9/2012,1/14/2008,Mr. Huval +Council Member ,District 5 ,P. O. Box 9,,St. Martinville,LA,70582,337-394-2200,ST. MARTIN,"Lloyd ""Red"" Higginbotham",4695 Catahoula Hwy.,,St. Martinville,LA,70582,5,337-394-4391,W,M,D,245,1/9/2012,1/14/2008,Mr. Higginbotham +Council Member ,District 6 ,P. O. Box 9,,St. Martinville,LA,70582,337-394-2200,ST. MARTIN,Jill Hebert,715 South Main St.,,Breaux Bridge,LA,70517,5,337-332-5254,W,F,D,245,1/9/2012,1/14/2008,Ms. Hebert +Council Member ,District 7 ,P. O. Box 9,,St. Martinville,LA,70582,337-394-2200,ST. MARTIN,"""Pat"" Cluse",2630 Main Hwy.,,Breaux Bridge,LA,70517,5,337-667-7693,B,M,D,245,1/9/2012,1/14/2008,Mr. Cluse +Council Member ,District 8 ,P. O. Box 9,,St. Martinville,LA,70582,337-394-2200,ST. MARTIN,"James ""Jim"" Hebert",1900 Grand Anse Hwy.,,Breaux Bridge,LA,70517,5,337-667-6849,W,M,D,245,1/9/2012,1/14/2008,Mr. Hebert +Council Member ,District 9 ,P. O. Box 9,,St. Martinville,LA,70582,337-394-2200,ST. MARTIN,Dean Dore',1075 Oleste Tauzin Rd.,,Breaux Bridge,LA,70517,5,337-332-1850,W,M,D,245,1/9/2012,1/14/2008,Mr. Dore' +City Judge ,"City Court, City of Breaux Bridge ","101 Berard St., Ste. B",,Breaux Bridge,LA,70517,318-332-4117,ST. MARTIN,Randy P. Angelle,1039 Spanish Moss Ln.,,Breaux Bridge,LA,70517,5,337-332-5280,W,M,D,250,12/31/2014,1/1/2009,Judge Angelle +City Marshal ,"City Court, City of Breaux Bridge ","101 Berard St., Ste. B",,Breaux Bridge,LA,70517,337-332-4117,ST. MARTIN,Jerry Frederick,4410 Poydras Hwy.,,Breaux Bridge,LA,70517,5,337-332-2573,W,M,D,250,12/31/2014,1/1/2009,Marshal Frederick +Member of School Board ,District 1 ,305 Washington St.,,St. Martinville,LA,70582,337-394-6261,ST. MARTIN,Steve Fuselier,1059 Sonny Dr.,,St. Martinville,LA,70582,5,337-394-4436,W,M,D,255,12/31/2010,1/1/2007,Mr. Fuselier +Member of School Board ,District 2 ,305 Washington St.,,St. Martinville,LA,70582,337-394-6261,ST. MARTIN,Wanda Hypolite Babin,314 Elmer St.,,St. Martinville,LA,70582,5,,B,F,O,255,12/31/2010,1/1/2007,Ms. Babin +Member of School Board ,District 3 ,305 Washington St.,,St. Martinville,LA,70582,337-394-6261,ST. MARTIN,Aaron Flegeance,2532 Catahoula Hwy.,,St. Martinville,LA,70582,5,337-394-9296,B,M,D,255,12/31/2010,1/1/2007,Mr. Flegeance +Member of School Board ,District 4 ,305 Washington St.,,St. Martinville,LA,70582,337-394-6261,ST. MARTIN,"James ""Jimmy"" Blanchard",1213 South Main,,Breaux Bridge,LA,70517,5,,W,M,D,255,12/31/2010,1/1/2007,Mr. Blanchard +Member of School Board ,District 5 ,305 Washington St.,,St. Martinville,LA,70582,337-394-6261,ST. MARTIN,"Barbara ""T-Bob"" Latiolais",1007 L G Rd.,,St. Martinville,LA,70582,5,337-394-9515,W,F,R,255,12/31/2010,1/1/2007,Ms. Latiolais +Member of School Board ,District 6 ,305 Washington St.,,St. Martinville,LA,70582,337-394-6261,ST. MARTIN,Rodney J. Ledoux,404 Gaston Dr.,,Breaux Bridge,LA,70517,5,337-332-2347,W,M,D,255,12/31/2010,1/1/2007,Mr. Ledoux +Member of School Board ,District 7 ,305 Washington St.,,St. Martinville,LA,70582,337-394-6261,ST. MARTIN,Richard Potier,1057 Bill Clause Dr,,Breaux Bridge,LA,70517,5,337-332-5477,B,M,D,255,12/31/2010,1/1/2007,Mr. Potier +Member of School Board ,District 8 ,305 Washington St.,,St. Martinville,LA,70582,337-394-6261,ST. MARTIN,Frederic Stelly,1100 Carrier Rd.,,Breaux Bridge,LA,70517,5,337-228-2895,W,M,D,255,12/31/2010,1/1/2007,Mr. Stelly +Member of School Board ,District 9 ,305 Washington St.,,St. Martinville,LA,70582,337-394-6261,ST. MARTIN,"Floyd ""Y"" Knott",1094 Bushville Hwy.,,Arnaudville,LA,70512,5,337-754-9980,W,M,O,255,12/31/2010,1/1/2007,Mr. Knott +Member of School Board ,District 10 ,305 Washington St.,,St. Martinville,LA,70582,337-394-6261,ST. MARTIN,Mark Hebert,P.O. Box 10,,Cecilia,LA,70521,5,337-667-7161,W,M,D,255,12/31/2010,1/1/2007,Mr. Hebert +Justice of the Peace ,Justice of the Peace Ward 1 ,1182 Bayou Portage Rd.,,St. Martinville,LA,70582,337-394-9163,ST. MARTIN,"Thomas ""Tommy"" Boutte",1182 Bayou Portage Rd.,,St. Martinville,LA,70582,5,337-394-6621,W,M,D,265,12/31/2014,1/1/2009,Mr. Boutte +Justice of the Peace ,Justice of the Peace Ward 2 ,805 St.Ann St.,,St. Martinville,LA,70582,337-394-4768,ST. MARTIN,"Joseph ""Joe"" Mason",304 Governor Mouton St.,,St. Martinville,LA,70582,5,337-394-1202,B,M,D,265,12/31/2014,1/1/2009,Mr. Mason +Justice of the Peace ,Justice of the Peace Ward 3 ,1024 Joe Mouton Rd.,,St. Martinville,LA,70582,337-845-4144,ST. MARTIN,Charlene Champagne,1024 Joe Mouton Rd.,,St. Martinville,LA,70582,5,337-342-0306,W,F,D,265,12/31/2014,1/1/2009,Ms. Champagne +Justice of the Peace ,Justice of the Peace Ward 5 ,1168 Old Henderson Dr.,,Breaux Bridge,LA,70517,337-228-2453,ST. MARTIN,Gary J. LeBlanc,1050 Lucette Guidry Rd.,,Breaux Bridge,LA,70517,5,337-454-6332,W,M,D,265,12/31/2014,1/1/2009,Mr. LeBlanc +Justice of the Peace ,Justice of the Peace Ward 6 ,1066 Stephensville Rd.,,Morgan City,LA,70380,985-384-8720,ST. MARTIN,Shelia Landry,1018 Florence Ct.,,Morgan City,LA,70380,5,985-385-3840,W,F,D,265,12/31/2014,1/1/2009,Ms. Landry +Constable ,Justice of the Peace Ward 1 ,410 Gauthier St.,,St. Martinville,LA,70582,337-394-4731,ST. MARTIN,"Alvin ""Al"" Cormier",410 Gauthier St.,,St. Martinville,LA,70582,5,337-394-3738,W,M,D,267,12/31/2014,1/1/2009,Mr. Cormier +Constable ,Justice of the Peace Ward 2 ,203 Elmer St.,,St. Martinville,LA,70582,337-394-6457,ST. MARTIN,"Leander ""Cush"" Williams",P.O. Box 483,,St. Martinville,LA,70582,5,337-394-6457,B,M,D,267,12/31/2014,1/1/2009,Mr. Williams +Constable ,Justice of the Peace Ward 3 ,"1173 Paul Joseph Rd., #A",,St. Martinville,LA,70582,337-394-6320,ST. MARTIN,David R. Dugas,1004 Joseph St.,,St. Martinville,LA,70582,5,337-394-3656,W,M,O,267,12/31/2014,1/1/2009,Mr. Dugas +Constable ,Justice of the Peace Ward 5 ,1735 Grand Anse Hwy.,,Breaux Bridge,LA,70517,337-667-6012,ST. MARTIN,"Floyd ""Hal"" Scrantz",1735 Grand Anse Hwy.,,Breaux Bridge,LA,70517,5,337-667-6012,W,M,D,267,12/31/2014,1/1/2009,Mr. Scrantz +Constable ,Justice of the Peace Ward 6 ,1451 E. Stevensville Rd.,,Morgan City,LA,70380,985-384-0274,ST. MARTIN,Carol Martin,1451 East Stephensville Rd.,,Morgan City,LA,70380,5,985-384-0274,W,M,D,267,12/31/2014,1/1/2009,Mr. Martin +Mayor ,City of Breaux Bridge ,"101 Berard St., Suite A",,Breaux Bridge,LA,,337-332-2171,ST. MARTIN,Jack Dale Delhomme,243 Ledoux St.,,Breaux Bridge,LA,70517,5,337-332-8301,W,M,D,300,12/31/2010,1/1/2007,Mr. Delhomme +Mayor ,City of St. Martinville ,P. O. Box 379,,St. Martinville,LA,,337-394-2230,ST. MARTIN,Thomas Nelson,720 South Martin Luther King Dr.,,St. Martinville,LA,70582,5,337-394-3428,B,M,D,300,6/30/2010,7/1/2006,Mayor Nelson +Mayor ,Town of Henderson ,P.O. Box 595,,Henderson,LA,,337-228-7109,ST. MARTIN,Sherbin Collette,1021 Robin St.,,Henderson,LA,70517,5,337-228-2200,W,M,D,300,6/30/2012,7/1/2008,Mr. Collette +Mayor ,Village of Parks ,1010 Martin St.,,Parks,LA,,337-845-4139,ST. MARTIN,John Dugas,P.O. Box 2839,,Parks,LA,70582,5,337-845-4705,W,M,D,300,12/31/2010,1/1/2007,Mayor Dugas +Chief of Police ,City of Breaux Bridge ,"101 Berard St., Ste. A",,Breaux Bridge,LA,70517,337-332-2171,ST. MARTIN,Charles Thibodeaux,720 Main St.,,Breaux Bridge,LA,70517,5,337-332-2171,W,M,D,305,12/31/2010,1/1/2007,Mr. Thibodeaux +Chief of Police ,Town of Henderson ,P.O. Box 595,,Henderson,LA,70517,337-228-7109,ST. MARTIN,Leroy Guidry,1034 Dupuis St.,,Henderson,LA,70517,5,337-228-2432,W,M,O,305,6/30/2012,7/1/2008,Chief Guidry +Chief of Police ,Village of Parks ,P. O. Box 2867,,Parks,LA,70582,337-845-4139,ST. MARTIN,Ronald Solarie,5111 Bridge Street Hwy.,,St. Martinville,LA,70582,5,337-201-2168,B,M,D,305,12/31/2010,1/1/2007,Mr. Solarie +Alderman ,"District A, City of Breaux Bridge ",101 Berard St.,,Breaux Bridge,LA,70517,337-332-2171,ST. MARTIN,Terry P. Thibodeaux,478 Kent St.,,Breaux Bridge,LA,70517,5,337-332-5237,W,M,D,310,12/31/2010,1/1/2007,Mr. Thibodeaux +Alderman ,"District B, City of Breaux Bridge ",101 Berard St.,,Breaux Bridge,LA,70517,337-332-2171,ST. MARTIN,"Howard ""Doc"" Alexander",406 Nettie St.,,Breaux Bridge,LA,70517,5,337-201-3683,B,M,D,310,12/31/2010,1/1/2007,Mr. Alexander +Alderman ,"District C, City of Breaux Bridge ",101 Berard St.,,Breaux Bridge,LA,70517,337-332-2171,ST. MARTIN,"Albert ""Da Da"" Menard",866 Alva Dr.,,Breaux Bridge,LA,70517,5,337-739-9481,B,M,D,310,12/31/2010,1/1/2007,Mr. Menard +Alderman ,"District D, City of Breaux Bridge ",101 Berard St.,,Breaux Bridge,LA,70517,337-332-2171,ST. MARTIN,Glenn Michael Angelle,1107 South Main,,Breaux Bridge,LA,70517,5,337-332-3881,W,M,R,310,12/31/2010,1/1/2007,Mr. Angelle +Alderman ,"District E, City of Breaux Bridge ",101 Berard St.,,Breaux Bridge,LA,70517,337-332-2171,ST. MARTIN,"Gary ""Bimmie"" Champagne",P.O. Box 1444,,Breaux Bridge,LA,70517,5,337-332-3965,W,M,D,310,12/31/2010,1/1/2007,Mr. Champagne +Alderman ,Village of Parks ,P. O. Box 2867,,Parks,LA,70582,337-845-4139,ST. MARTIN,Charlotte Gary Gauthier,P.O. Box 2746,,Parks,LA,70582,5,337-845-9251,W,F,R,310,12/31/2010,1/1/2007,Mr. Gauthier +Alderman ,Village of Parks ,P. O. Box 2867,,Parks,LA,70582,337-845-4139,ST. MARTIN,Kevin J. Kately,P.O. Box 2550,,Parks,LA,70582,5,337-845-9147,B,M,D,310,12/31/2010,1/1/2007,Mr. Kately +Alderman ,Village of Parks ,P. O. Box 2867,,Parks,LA,70582,337-845-4139,ST. MARTIN,"Harold ""Kellogg"" Robertson",P.O. Box 2564,,Parks,LA,70582,5,337-845-4478,W,M,D,310,12/31/2010,1/1/2007,Mr. Robertson +Councilman,"District 1, City of St. Martinville",P. O. Box 379,,St. Martinville,LA,70582,337-394-2230,ST. MARTIN,"Michael ""Mike"" Fuselier",114 East Hamilton St.,,St. Martinville,LA,70582,5,337-394-5720,W,M,O,310,6/30/2010,7/1/2006,Mr. Fuselier +Councilman,"District 1, City of St. Martinville",P. O. Box 379,,St. Martinville,LA,70582,337-394-2230,ST. MARTIN,"Michael ""Mike"" Fuselier, ",114 E. Hamilton St.,,St. Martinville,LA,70582-4014,10,337-394-5720,W,M,O,310,,, +Councilman ,"District 2, City of St. Martinville ",P. O. Box 379,,St. Martinville,LA,70582,337-394-2230,ST. MARTIN,Craig Prosper,P.O. Box 213,,St. Martinville,LA,70582,5,337-394-7796,W,M,D,310,6/30/2010,7/1/2006,Mr. Prosper +Councilman ,"District 2, City of St. Martinville ",P. O. Box 379,,St. Martinville,LA,70582,337-394-2230,ST. MARTIN,"Craig Prosper, ",149 Teresa Dr.,,St. Martinville,LA,70582-4226,10,337-394-7796,W,M,D,310,,, +Councilman ,"District 3, City of St. Martinville ",P. O. Box 379,,St. Martinville,LA,70582,337-394-2230,ST. MARTIN,Dennis Paul Williams,402 West Port St.,,St. Martinville,LA,70582,5,337-394-9242,B,M,,310,6/30/2010,7/1/2006,Mr. Williams +Councilman ,"District 4, City of St. Martinville ",P. O. Box 379,,St. Martinville,LA,70582,337-394-2230,ST. MARTIN,Ronald J. Charles,625 Washington St.,,St. Martinville,LA,70582,5,337-394-5418,B,M,D,310,6/30/2010,7/1/2006,Mr. Charles +Councilman ,"District 5, City of St. Martinville ",P. O. Box 379,,St. Martinville,LA,70582,337-394-2230,ST. MARTIN,"Arthur Champ, Jr.",316 Elmer St.,,St. Martinville,LA,70582,5,337-394-4635,B,M,D,310,6/30/2010,7/1/2006,Mr. Champ +Councilman ,Town of Henderson ,P.O. Box 595,,Henderson,LA,70517,337-228-7109,ST. MARTIN,Samantha LeBlanc,1035 Talley St.,,Henderson,LA,70517,5,337-288-4163,W,F,D,310,6/30/2012,10/27/2009,Ms. LeBlanc +Councilman ,Town of Henderson ,P.O. Box 595,,Henderson,LA,70517,337-228-7109,ST. MARTIN,"""Don"" LeGrand",1006-B LeGrand St.,,Henderson,LA,70517,5,337-228-2367,W,M,D,310,6/30/2012,7/1/2008,Mr. LeGrand +Councilman ,Town of Henderson ,P.O. Box 595,,Henderson,LA,70517,337-228-7109,ST. MARTIN,Jody Meche,P.O. Box 694,,Henderson,LA,70517,5,337-228-2732,W,M,O,310,6/30/2012,7/1/2008,Mr. Meche +Councilman ,Town of Henderson ,P.O. Box 595,,Henderson,LA,70517,337-228-7109,ST. MARTIN,Ray Robin,P.O. Box 556,,Henderson,LA,70517,5,337-228-2958,W,M,D,310,6/30/2012,7/1/2008,Mr. Robin +Councilman ,Town of Henderson ,P.O. Box 595,,Henderson,LA,70517,337-228-7109,ST. MARTIN,Michael Theriot,1063 Huval St.,,Henderson,LA,70517,5,337-257-9026,W,M,D,310,6/30/2012,7/1/2008,Mr. Theriot +DPEC Member ,at Large ,,,,LA,,,ST. MARY,Sam Jones,1501 Sterling Rd.,,Franklin,LA,70538,5,337-828-1530,W,M,D,54,2/20/2012,2/20/2008,Mr. Jones +DPEC Member ,at Large ,,,,LA,,,ST. MARY,"Gary ""Doc"" Wiltz",710 1st St.,,Franklin,LA,70538,5,337-828-1274,B,M,D,54,2/20/2012,2/20/2008,Mr. Wiltz +DPEC Member ,District 1 ,,,,LA,,,ST. MARY,,,,,,,0,,,,,56,,, +DPEC Member ,District 2 ,,,,LA,,,ST. MARY,,,,,,,0,,,,,56,,, +DPEC Member ,District 3 ,,,,LA,,,ST. MARY,,,,,,,0,,,,,56,,, +DPEC Member ,District 4 ,,,,LA,,,ST. MARY,,,,,,,0,,,,,56,,, +DPEC Member ,District 5 ,,,,LA,,,ST. MARY,,,,,,,0,,,,,56,,, +DPEC Member ,District 6 ,,,,LA,,,ST. MARY,,,,,,,0,,,,,56,,, +DPEC Member ,District 7 ,,,,LA,,,ST. MARY,,,,,,,0,,,,,56,,, +DPEC Member ,District 8 ,,,,LA,,,ST. MARY,,,,,,,0,,,,,56,,, +DPEC Member ,District 9 ,,,,LA,,,ST. MARY,,,,,,,0,,,,,56,,, +DPEC Member ,District 10 ,,,,LA,,,ST. MARY,,,,,,,0,,,,,56,,, +DPEC Member ,District 11 ,,,,LA,,,ST. MARY,,,,,,,0,,,,,56,,, +RPEC Member ,at Large ,,,,LA,,,ST. MARY,Robert Arceneaux,P. O. Box 157,,Patterson,LA,70392,5,985-519-7252,W,M,R,64,2/20/2012,2/20/2008,Mr. Arceneaux +RPEC Member ,at Large ,,,,LA,,,ST. MARY,"Herbert A. Estay, Jr.",P. O. Box 1731,,Patterson,LA,70392,5,985-397-3223,W,M,R,64,2/20/2012,2/20/2008, +RPEC Member ,at Large ,,,,LA,,,ST. MARY,Christian Gil,P. O. Box 157,,Patterson,LA,70392,5,985-399-4412,W,M,R,64,2/20/2012,2/20/2008,Mr. Gill +RPEC Member ,at Large ,,,,LA,,,ST. MARY,Bill L. Moore,P.O. Box 261,,Franklin,LA,70538,5,337-828-4479,W,M,R,64,2/20/2012,2/20/2008,Mr. Moore +RPEC Member ,at Large ,,,,LA,,,ST. MARY,Glynn P. Pellerin,578 Parish Rd. 131,,Franklin,LA,70538,5,337-836-9647,W,M,R,64,2/20/2012,2/20/2008,Mr. Pellerin +RPEC Member ,District 1 ,,,,LA,,,ST. MARY,,,,,,,0,,,,,66,,, +RPEC Member ,District 2 ,,,,LA,,,ST. MARY,,,,,,,0,,,,,66,,, +RPEC Member ,District 3 ,,,,LA,,,ST. MARY,,,,,,,0,,,,,66,,, +RPEC Member ,District 4 ,,,,LA,,,ST. MARY,,,,,,,0,,,,,66,,, +RPEC Member ,District 5 ,,,,LA,,,ST. MARY,,,,,,,0,,,,,66,,, +RPEC Member ,District 6 ,,,,LA,,,ST. MARY,,,,,,,0,,,,,66,,, +RPEC Member ,District 7 ,,,,LA,,,ST. MARY,,,,,,,0,,,,,66,,, +RPEC Member ,District 8 ,,,,LA,,,ST. MARY,,,,,,,0,,,,,66,,, +RPEC Member ,District 9 ,,,,LA,,,ST. MARY,,,,,,,0,,,,,66,,, +RPEC Member ,District 10 ,,,,LA,,,ST. MARY,,,,,,,0,,,,,66,,, +RPEC Member ,District 11 ,,,,LA,,,ST. MARY,,,,,,,0,,,,,66,,, +Sheriff ,,P. O. Box 571,,Franklin,LA,70538,318-828-1960,ST. MARY,David A. Naquin,P.O. Box 571,,Franklin,LA,70538,5,337-828-2819,W,M,D,225,6/30/2012,7/1/2008,Mr. Naquin +Clerk of Court ,,P. O. Drawer 1231,,Franklin,LA,70538,337-828-4100,ST. MARY,Cliff Dressel,P. O. Drawer 1231,,Franklin,LA,70538-1231,10,337-828-4100,W,M,D,230,6/30/2012,7/1/2008,Mr. Dressel +Assessor ,,P.O. Box 264,,Franklin,LA,70538,337-828-4100,ST. MARY,Jarrod K. Longman,1029 Fig St.,,Morgan City,LA,70380-1014,10,985-397-0227,W,M,D,235,12/31/2012,1/1/2009,Mr. Longman +Coroner ,,P.O. Box 2266,,Morgan City,LA,70381,985-384-9964,ST. MARY,"F. H. Metz, Jr.",1933 Hwy. 182 E.,,Morgan City,LA,70380,5,985-395-9197,W,M,D,240,3/25/2012,3/24/2008,Mr. Metz +Parish President ,,"Fifth Floor, Courthouse",,Franklin,LA,70538,337-828-4100,ST. MARY,"Paul P. Naquin, Jr.",P. O. Box 371,,Baldwin,LA,70514-0371 ,11,337-923-7521,W,M,D,243,1/9/2012,1/14/2008,Mr. Naquin +Council Member ,District 1 ,Fifth Floor Courthouse,,Franklin,LA,,337-828-4100,ST. MARY,Craig A. Mathews,2208 Hwy. 318,,Jeanerette,LA,70544-8721,10,337-276-6697,B,M,D,245,1/9/2012,1/14/2008,Mr. Mathews +Council Member ,District 2 ,Fifth Floor Courthouse,,Franklin,LA,70538,337-828-4100,ST. MARY,"Charles ""Butch"" Middleton",404 Sixth St.,,Franklin,LA,70538-5906,10,337-828-2017,B,M,D,245,1/9/2012,1/14/2008,Mr. Middleton +Council Member ,District 3 ,Fifth Floor Courthouse,,Franklin,LA,70538,337-828-4100,ST. MARY,David Hanagriff,P.O. Box 172,,Centerville,LA,70522-0172 ,11,337-836-5154,W,M,D,245,1/9/2012,1/14/2008,Mr. Hanagriff +Council Member ,District 4 ,Fifth Floor Courthouse,,Franklin,LA,70538,337-828-4100,ST. MARY,Glen J. Hidalgo,1219 Columbus Ave.,,Morgan City,LA,70380-5907,10,985-395-3182,W,M,D,245,1/9/2012,1/14/2008,Mr. Hidalgo +Council Member ,District 5 ,Fifth Floor Courthouse,,Franklin,LA,70538,337-828-4100,ST. MARY,"""Ken"" Singleton",108 Catherine St.,,Patterson,LA,70392-5026,10,337-962-2625,W,M,R,245,1/9/2012,1/14/2008,Mr. Singleton +Council Member ,District 6 ,Fifth Floor Courthouse,,Franklin,LA,70538,337-828-4100,ST. MARY,"Logan J. Fromenthal, Jr.",1725 Dale St.,,Morgan City,LA,70380-1407,10,985-384-8860,W,M,D,245,1/9/2012,1/14/2008,Mr. Fromenthal +Council Member ,District 7 ,Fifth Floor Courthouse,,Franklin,LA,70538,337-828-4100,ST. MARY,Kevin J. Voisin,1202 Hickory St.,,Morgan City,LA,70380-1147,10,985-385-5007,W,M,D,245,1/9/2012,1/14/2008,Mr. Voisin +Council Member ,District 8 ,Fifth Floor Courthouse,,Franklin,LA,70538,337-828-4100,ST. MARY,"""Chuck"" Walters",P.O. Box 702,,Amelia,LA,70340-0702 ,11,985-631-0235,W,M,D,245,1/9/2012,1/14/2008,Mr. Walters +Council Member at Large ,District 9 ,Fifth Floor Courthouse,,Franklin,LA,70538,337-828-4100,ST. MARY,Albert Foulcard,700 Magnolia St.,,Franklin,LA,70538-5316,10,337-578-0392,B,M,D,245,1/9/2012,1/14/2008,Mr. Foulcard +Council Member at Large ,District 10 ,Fifth Floor Courthouse,,Franklin,LA,70538,337-828-4100,ST. MARY,Steve F. Bierhorst,119 Jones Dr.,,Patterson,LA,70392-5622,10,985-395-3930,W,M,D,245,1/9/2012,1/14/2008,Mr. Bierhorst +Council Member at Large ,District 11 ,Fifth Floor Courthouse,,Franklin,LA,70538,337-828-4100,ST. MARY,Gary Duhon,53 Marquis Mnr.,,Morgan City,LA,70380-1152,10,985-385-7848,W,M,D,245,1/9/2012,1/14/2008,Mr. Duhon +City Judge ,"City Court, City of Franklin ",P. O. Box 343,,Franklin,LA,70538,318-828-0454,ST. MARY,Terry Breaux,P.O. Box 766,,Franklin,LA,70538,5,338-578-1153,W,M,D,250,12/31/2014,1/1/2009,Judge Breaux +City Judge ,"City Court, City of Morgan City ",P. O. Box 1577,,Morgan City,LA,70381,985-384-2718,ST. MARY,Kim P. Stansbury,3112 Lake Palourde Dr.,,Morgan City,LA,70380,5,985-384-0381,W,M,D,250,12/31/2014,1/1/2009,Judge Stansbury +City Marshal ,"City Court, City of Franklin ",P. O. Box 343,,Franklin,LA,70538,337-828-3859,ST. MARY,"David J. McCoy, Jr.",222 Saint Joseph Ln.,,Franklin,LA,70538,5,985-397-1025,B,M,D,250,12/31/2014,1/1/2009,Marshal McCoy +City Marshal ,"City Court, City of Morgan City ",P. O. Box 1577,,Morgan City,LA,70381,985-384-2350,ST. MARY,Kenneth J. Duval,1204 S. Prescott Dr.,,Morgan City,LA,70380,5,985-385-5132,W,M,R,250,12/31/2014,1/1/2009,Marshal Duval +Member of School Board ,District 1 ,P. O. Box 170,,Centerville,LA,70522,337-836-9661,ST. MARY,"Joseph Foulcard, Jr.",1503 Walnut St.,,Franklin,LA,70538-5325,10,337-828-4454,B,M,D,255,12/31/2010,1/1/2007,Mr. Foulcard +Member of School Board ,District 2 ,P. O. Box 170,,Centerville,LA,70522,337-836-9661,ST. MARY,Mary Shannette Lockley,506 Hwy. 318,,Franklin,LA,70538-6924,10,337-276-4668,B,F,D,255,12/31/2010,1/1/2007,Ms. Lockley +Member of School Board ,District 3 ,P. O. Box 170,,Centerville,LA,70522,337-836-9661,ST. MARY,"Edward Payton, Jr.",P.O. Box 461,,Baldwin,LA,70514,5,337-923-7786,W,M,D,255,12/31/2010,1/1/2007,Mr. Payton +Member of School Board ,District 4 ,P. O. Box 170,,Centerville,LA,70522,337-836-9661,ST. MARY,Murphy Pontiff,3970 Irish Bend Rd.,,Franklin,LA,70538,5,337-828-3221,W,M,D,255,12/31/2010,1/1/2007,Mr. Pontiff +Member of School Board ,District 5 ,P. O. Box 170,,Centerville,LA,70522,337-836-9661,ST. MARY,Ginger Smith Griffin,145 Laura Dr.,,Patterson,LA,70392-5718,10,985-395-7832,W,F,R,255,12/31/2010,1/1/2007,Mr. Griffin +Member of School Board ,District 6 ,P. O. Box 170,,Centerville,LA,70522,337-836-9661,ST. MARY,Marilyn LaSalle,P. O. Box 1068,,Patterson,LA,70392-5301,10,985-395-3848,B,F,D,255,12/31/2010,1/1/2007,Ms. LaSalle +Member of School Board ,District 7 ,P. O. Box 170,,Centerville,LA,70522,337-836-9661,ST. MARY,Wayne J. Deslatte,P.O. Box 165,,Centerville,LA,70522-0165 ,11,337-836-5487,W,M,D,255,12/31/2010,1/1/2007,Mr. Deslatte +Member of School Board ,District 8 ,P. O. Box 170,,Centerville,LA,70522,337-836-9661,ST. MARY,"Michael E. ""Mike"" Taylor",P.O. Box 661,,Berwick,LA,70342,5,985-384-7205,W,M,D,255,12/31/2010,1/1/2007,Mr. Taylor +Member of School Board ,District 9 ,P. O. Box 170,,Centerville,LA,70522,337-836-9661,ST. MARY,"""Bill"" McCarty",1701 Cedar St.,,Morgan City,LA,70380-1711,10,985-384-2608,W,M,D,255,12/31/2010,1/1/2007,Mr. McCarty +Member of School Board ,District 10 ,P. O. Box 170,,Centerville,LA,70522,337-836-9661,ST. MARY,Anthony Streva,1013 Walnut St.,,Morgan City,LA,70380,5,985-385-0988,W,M,D,255,12/31/2010,1/1/2007,Mr. Streva +Member of School Board ,District 11 ,P. O. Box 170,,Centerville,LA,70522,337-836-9661,ST. MARY,Roland Herman Verret,907 Lake Palourde Rd.,,Morgan City,LA,70380-6407,10,985-631-2460,W,M,D,255,12/31/2010,1/1/2007,Mr. Verrett +Justice of the Peace ,Justice of the Peace Ward 1 ,P.O. Box 254,,Baldwin,LA,70514-1419,318-923-7554,ST. MARY,Benjamin Grimm,293 Eves St.,,Jeanerette,LA,70544,5,337-276-7092,B,M,D,265,12/31/2014,1/1/2009,Mr. Grimm +Justice of the Peace ,Justice of the Peace Ward 2 ,4683 La.Hwy 83,,Franklin,LA,70538-7502,337-271-0167,ST. MARY,Ray A. Manuel,4683 Hwy. 83,,Franklin,LA,70538,5,337-924-7635,B,M,D,265,12/31/2014,1/1/2009,Mr. Manuel +Justice of the Peace ,Justice of the Peace Ward 4 ,114 Verdun Ln.,,Franklin,LA,70538-7323,337-836-9617,ST. MARY,Shelby J. Bourgeois,114 Verdun Ln.,,Franklin,LA,70538,5,337-836-9617,B,M,D,265,12/31/2014,1/1/2009,Mr. Bourgeois +Justice of the Peace ,Justice of the Peace Ward 5 ,P.O. Box 279,,Patterson,LA,70392-0279 ,985-395-2445,ST. MARY,Frank J. Cali,P.O. Box 279,,Patterson,LA,70392,5,985-395-2445,W,M,D,265,12/31/2014,1/1/2009,Mr. Cali +Justice of the Peace ,Justice of the Peace Ward 7 ,223 Gibbs Rd.,,Franklin,LA,70538-6950,337-923-7880,ST. MARY,Nekesia J. Bowie,"223 Gibbs Dr., Lot 1",,Franklin,LA,70538,5,337-923-0677,B,F,D,265,12/31/2014,1/1/2009,Ms. Bowie +Justice of the Peace ,Justice of the Peace Ward 8 ,1451 River Rd.,,Berwick,LA,70342-3019,985-385-2937,ST. MARY,Marketia R. Arthur,567 Young St.,,Berwick,LA,70342,5,985-385-2991,W,F,D,265,12/31/2014,1/1/2009,Ms. Arthur +Justice of the Peace ,Justice of the Peace Ward 9 ,P.O.Box 629,,Amelia,LA,70340-0629 ,985-631-2589,ST. MARY,Tracy V. Duval,P.O. Box 629,,Amelia,LA,70340,5,985-631-2589,W,F,D,265,12/31/2014,1/1/2009,Ms. Duval +Justice of the Peace ,Justice of the Peace Ward 10 ,P.O. Box 681,,Baldwin,LA,70514,337-923-7502,ST. MARY,Benny J. Druilhet,P.O. Box 681,,Baldwin,LA,70514,5,337-923-7502,B,M,D,265,12/31/2014,1/1/2009,Mr. Druilhet +Constable ,Justice of the Peace Ward 1 ,P.O. Box 375,,Charenton,LA,70523,337-923-7362,ST. MARY,"Donald ""Sonny"" Compton",P.O. Box 375,,Charenton,LA,70523,5,337-923-7362,W,M,D,267,12/31/2014,1/1/2009,Mr. Compton +Constable ,Justice of the Peace Ward 2 ,239 Georgetown Rd.,,Franklin,LA,70538-7542,337-923-7713,ST. MARY,Steven Drexler,180 Georgetown Rd.,,Franklin,LA,70538,5,337-923-7483,B,M,D,267,12/31/2014,1/1/2009,Mr. Drexler +Constable ,Justice of the Peace Ward 4 ,P.O. Box 17,,Franklin,LA,70522-0017 ,337-836-9336,ST. MARY,David A. Comeaux,P.O. Box 17,,Centerville,LA,70522,5,337-836-9336,W,M,D,267,12/31/2014,1/1/2009,Mr. Comeaux +Constable ,Justice of the Peace Ward 5 ,P.O. Box 1161,,Patterson,LA,70392-4538,985-395-2235,ST. MARY,"""Ned"" Stephens",P.O. Box 1161,,Patterson,LA,70392,5,985-395-4091,W,M,D,267,12/31/2014,1/1/2009,Mr. Stephens +Constable ,Justice of the Peace Ward 7 ,1506 Hwy. 318,,Jeanerette,LA,70544-8540,337-276-9461,ST. MARY,"Edward ""June"" Patrick",1506 Hwy. 318,,Jeanerette,LA,70544,5,337-276-9461,B,M,D,267,12/31/2014,1/1/2009,Mr. Patrick +Constable ,Justice of the Peace Ward 8 ,567 Young St.,,Berwick,LA,70342-2341,985-384-7008,ST. MARY,"Jonathan ""J.P."" Henry",711 Toups St.,,Berwick,LA,70342,5,985-518-3364,W,M,R,267,12/31/2014,1/1/2009,Mr. Henry +Constable ,Justice of the Peace Ward 9 ,P.O. Box 69,,Morgan City,LA,70340-0069 ,985-631-0653,ST. MARY,John Arceneaux,1158 Lakeview Dr.,,Morgan City,LA,70380,5,985-312-1031,W,M,,267,12/31/2014,1/1/2009,Mr. Arceneaux +Constable ,Justice of the Peace Ward 10 ,P.O. Box 513,,Franklin,LA,70538,337-923-0001,ST. MARY,"Harry J. Smith, Jr.",P.O. Box 513,,Franklin,LA,70538,5,337-578-4049,B,M,D,267,12/31/2014,1/1/2009,Mr. Smith +Mayor ,City of Franklin ,P. O. Box 567,,Franklin,LA,,337-828-6303,ST. MARY,"Raymond Harris, Jr.",1526 Sterling Rd.,,Franklin,LA,70538-3860,10,337-828-2701,B,M,D,300,6/30/2010,7/1/2006,Mayor Harris +Mayor ,City of Morgan City ,P. O. Box 1218,,Morgan City,LA,70381,985-385-1770,ST. MARY,"Timothy I. ""Tim"" Matte",1624 Glenmont Dr.,,Morgan City,LA,70380,5,985-385-2442,W,M,D,300,1/13/2013,1/12/2009,Mayor Matte +Mayor ,City of Patterson ,P. O. Box 367,,Patterson,LA,,985-395-5205,ST. MARY,"""Mike"" Accardo",P.O. Box 1805,,Patterson,LA,70392-5611,10,985-518-8593,W,M,D,300,12/31/2010,1/1/2007,Mr. Accardo +Mayor ,Town of Baldwin ,P. O. Box 800,,Baldwin,LA,,337-923-7523,ST. MARY,Wayne J. Breaux,P.O. Box 213,,Baldwin,LA,,0,337-578-3835,W,M,D,300,12/31/2010,1/1/2007,Mr. Breaux +Mayor ,Town of Berwick ,P. O. Box 486,,Berwick,LA,,985-384-8858,ST. MARY,Louis A. Ratcliff,400 Nelson St.,,Berwick,LA,70342-2064,10,985-384-3794,W,M,,300,12/31/2010,1/1/2007,Mayor Ratcliff +Chief of Police ,City of Patterson ,P. O. Box 367,,Patterson,LA,70392,985-395-5205,ST. MARY,Patrick M. LaSalle,P.O. Box 534,,Patterson,LA,70392-5201,10,985-395-7800,B,M,D,305,12/31/2010,1/1/2007,Mr. LaSalle +Chief of Police ,Town of Baldwin ,P. O. Box 800,,Baldwin,LA,70514,337-923-7523,ST. MARY,Gerald Minor,P.O. Box 1175,,Franklin,LA,70538-1175,10,337-923-6182,W,M,D,305,12/31/2010,1/1/2007,Chief Minor +Council Member ,"at Large, City of Franklin ",P. O. Box 567,,Franklin,LA,70538,337-828-6303,ST. MARY,"Kenny P. Scelfo, Sr.",91 Lee St.,,Franklin,LA,70538-7037,10,337-828-2654,W,M,D,308,6/30/2010,7/1/2006,Mr. Scelfo +Alderman ,Town of Baldwin ,P. O. Box 800,,Baldwin,LA,70514,337-923-7523,ST. MARY,Mike J. Caesar,P.O. Box 365,,Baldwin,LA,70514,5,337-923-7376,B,M,D,310,12/31/2010,1/1/2007,Mr. Caesar +Alderman ,Town of Baldwin ,P. O. Box 800,,Baldwin,LA,70514,337-923-7523,ST. MARY,"Herbert E. Druilhet, Jr.",P.O. Box 267,,Baldwin,LA,70514,5,337-923-4498,B,M,D,310,12/31/2010,1/1/2007,Mr. Druilhet +Alderman ,Town of Baldwin ,P. O. Box 800,,Baldwin,LA,70514,337-923-7523,ST. MARY,H. Gene St. Germain,P.O. Box 212,,Baldwin,LA,70514-1430,10,337-923-7758,W,M,D,310,12/31/2010,1/1/2007,Mr. St. Germain +Alderman ,Town of Baldwin ,P. O. Box 800,,Baldwin,LA,70514,337-923-7523,ST. MARY,"""Mike"" Lancelin",P.O. Box 248,,Baldwin,LA,70514,5,337-924-7711,B,M,D,310,12/31/2010,1/1/2007,Mr. Lancelin +Alderman ,Town of Baldwin ,P. O. Box 800,,Baldwin,LA,70514,337-923-7523,ST. MARY,Clarence A. Vappie,P.O. Box 817,,Baldwin,LA,70514,5,337-923-4609,B,M,D,310,12/31/2010,1/1/2007,Mr. Vappie +Council Member ,City of Patterson ,P. O. Box 367,,Patterson,LA,70392,985-395-5205,ST. MARY,Rodney A. Grogan,P.O. Box 1133,,Patterson,LA,70392,5,985-399-6618,B,M,D,310,12/31/2010,1/1/2007,Mr. Green +Council Member ,City of Patterson ,P. O. Box 367,,Patterson,LA,70392,985-395-5205,ST. MARY,"L. L. ""Larry"" Mendoza, Jr.",140 McGee Dr.,,Patterson,LA,70392-5611,10,985-395-3768,W,M,D,310,12/31/2010,1/1/2007,Mr. Mendoza +Council Member ,City of Patterson ,P. O. Box 367,,Patterson,LA,70392,985-395-5205,ST. MARY,"""Peg"" M. Rentrop",P.O. Box 1410,,Patterson,LA,70392,5,985-395-2522,W,F,D,310,12/31/2010,1/1/2007,Ms. Rentrop +Council Member ,City of Patterson ,P. O. Box 367,,Patterson,LA,70392,985-395-5205,ST. MARY,"""Joe"" Russo, III",P.O. Box 188,,Patterson,LA,70392-4456,10,985-395-9584,W,M,D,310,12/31/2010,1/1/2007,Mr. Russo +Council Member ,City of Patterson ,P. O. Box 367,,Patterson,LA,70392,985-395-5205,ST. MARY,Claire D. Sawyer,P.O. Box 520,,Patterson,LA,70392-4409,10,985-395-3547,W,F,D,310,12/31/2010,1/1/2007,Ms. Sawyer +Council Member ,"District A, City of Franklin ",P. O. Box 567,,Franklin,LA,70538,,ST. MARY,Dale J. Rogers,404 Ida St.,,Franklin,LA,70538-3618,10,337-828-4650,W,M,D,310,6/30/2010,7/1/2006,Mr. Rogers +Council Member ,"District B, City of Franklin ",P. O. Box 567,,Franklin,LA,70538,,ST. MARY,Chuck D. Autin,306 Jackson St.,,Franklin,LA,70538,5,337-828-7927,W,M,,310,6/30/2010,7/1/2006,Mr. Autin +Council Member ,"District B, City of Franklin ",P. O. Box 567,,Franklin,LA,70538,,ST. MARY,"Chuck D. Autin, ",306 Jackson St.,,Franklin,LA,70538-5435,10,337-578-2559,W,M,N,310,,, +Council Member ,"District C, City of Franklin ",P. O. Box 567,,Franklin,LA,70538,,ST. MARY,Eugene P. Foulcard,203 Foster St.,,Franklin,LA,70538,5,337-828-5778,B,M,D,310,6/30/2010,7/1/2006,Mr. Foulcard +Council Member ,"District D, City of Franklin ",P. O. Box 567,,Franklin,LA,70538,,ST. MARY,"Joseph H. Garrison, Sr.",1016 B St.,,Franklin,LA,70538-4305,10,337-828-3423,B,M,D,310,6/30/2010,7/1/2006,Mr. Garrison +Councilman,"District 1, City of Morgan City",P. O. Box 1218,,Morgan City,LA,70381,985-385-1770,ST. MARY,"""Tim"" Hymel",1000 Hickory St.,,Morgan City,LA,70380,5,985-385-5504,W,M,D,310,1/13/2013,1/12/2009,Mr. Hymel +Councilman ,"District 2, City of Morgan City ",P. O. Box 1218,,Morgan City,LA,70381,985-385-1770,ST. MARY,Larry P. Bergeron,307 Brashear Ave.,,Morgan City,LA,70380,5,985-384-2672,W,M,D,310,1/13/2013,1/12/2009,Mr. Bergeron +Councilman ,"District 3, City of Morgan City ",P. O. Box 1218,,Morgan City,LA,70381,985-385-1770,ST. MARY,"""Ron"" Bias",1009 Florence St.,,Morgan City,LA,70380,5,985-385-6221,B,M,D,310,1/13/2013,1/12/2009,Mr. Bias +Councilman ,"District 4, City of Morgan City ",P. O. Box 1218,,Morgan City,LA,70381,985-385-1770,ST. MARY,Luke P. Manfre,P.O. Box 642,,Morgan City,LA,70381,5,985-312-4558,W,M,R,310,1/13/2013,1/12/2009,Mr. Manfre +Councilman ,"District 5, City of Morgan City ",P. O. Box 1218,,Morgan City,LA,70381,985-385-1770,ST. MARY,"Louis J. Tamporello, Jr.",31 Chennault St.,,Morgan City,LA,70380,5,985-384-8804,W,M,D,310,1/13/2013,1/12/2009,Mr. Tamporello +Councilmen ,Town of Berwick ,P. O. Box 486,,Berwick,LA,70342,985-384-8858,ST. MARY,"Duval H. Arthur, Jr.",567 Young St.,,Berwick,LA,70342-2341,10,985-384-7008,W,M,D,310,12/31/2010,1/1/2007,Mr. Arthur +Councilmen ,Town of Berwick ,P. O. Box 486,,Berwick,LA,70342,985-384-8858,ST. MARY,Penny Crappell,528 Whitworth St.,,Berwick,LA,70342-2072,10,985-385-6006,W,F,,310,12/31/2010,1/1/2007,Ms. Crappell +Councilmen ,Town of Berwick ,P. O. Box 486,,Berwick,LA,70342,985-384-8858,ST. MARY,Troy M. Lombardo,523 Crenshaw St.,,Berwick,LA,70342,5,985-384-3236,W,M,,310,12/31/2010,1/1/2007,Mr. Lombardo +Councilmen ,Town of Berwick ,P. O. Box 486,,Berwick,LA,70342,985-384-8858,ST. MARY,Damon Robison,405 Riverside Dr.,,Berwick,LA,70342-3221,10,985-385-0819,W,M,,310,12/31/2010,1/1/2007,Mr. Robinson +Councilmen ,Town of Berwick ,P. O. Box 486,,Berwick,LA,70342,985-384-8858,ST. MARY,"Edgar Thomas, Jr.",4309 Cantrell Dr.,,Berwick,LA,70342-2301,10,337-923-4981,W,M,R,310,12/31/2010,1/1/2007,Mr. Thomas +DPEC Member ,at Large ,,,,LA,,,ST. TAMMANY,Richard H. Boyd,327 Marigny Ave.,,Mandeville,LA,70448-5940,10,985-624-9604,W,M,D,54,2/20/2012,2/20/2008,Mr. Boyd +DPEC Member ,at Large ,,,,LA,,,ST. TAMMANY,Alicia Walker Breaux,74355 Hwy. 437 (Lee Rd.),,Covington,LA,70435,5,985-809-1006,W,F,D,54,2/20/2012,2/20/2008,Ms. Breaux +DPEC Member ,at Large ,,,,LA,,,ST. TAMMANY,"Kenneth ""Ken"" Burkhalter",P.O. Box 1489,,Slidell,LA,70459,5,985-649-6674,B,M,D,54,2/20/2012,2/20/2008,Mr. Burkhalter +DPEC Member ,at Large ,,,,LA,,,ST. TAMMANY,Donna Christopher,P. O. Box 489,,Pearl River,LA,70452-3236,10,985-863-1934,W,F,D,54,2/20/2012,2/20/2008,Ms. Christopher +DPEC Member ,at Large ,,,,LA,,,ST. TAMMANY,Donna L. Singletary,36144 Jessie Singletary Rd.,,Pearl River,LA,70452,5,985-863-5058,W,F,D,54,2/20/2012,2/20/2008,Ms. Singletary +DPEC Member ,District 1 ,,,,LA,,,ST. TAMMANY,"Keith Villere, ",110 E 7th Ave,,Covington,LA,70433,5,985-898-0270,,,,56,,9/21/2009,Mr. Villere +DPEC Member ,District 2 ,,,,LA,,,ST. TAMMANY,Della Rose Perkins,101 Gratitude Dr.,,Covington,LA,70433,5,,,,,56,,6/25/2008, +DPEC Member ,District 3 ,,,,LA,,,ST. TAMMANY,Ella Selmon,609 W. 28th Ave.,,Covington,LA,70433-2045,10,985-892-7802,,,D,56,2/20/2012,2/20/2008,Ms. Selmon +DPEC Member ,District 4 ,,,,LA,,,ST. TAMMANY,Joan Simon,154 Belle Terre Blvd.,,Covington,LA,70433,5,985-892-8474,,F,D,56,2/20/2012,2/20/2008,Ms. Simon +DPEC Member ,District 5 ,,,,LA,,,ST. TAMMANY,,,,,,,0,,,,,56,,, +DPEC Member ,District 6 ,,,,LA,,,ST. TAMMANY,Jane C. Christopher,P.O. Box 489,,Pearl River,LA,70452,5,985-863-1934,W,F,D,56,2/20/2012,2/20/2008,Ms. Christopher +DPEC Member ,District 7 ,,,,LA,,,ST. TAMMANY,Brenda F. Palmer,P.O. Box 1132,,Lacombe,LA,70445,5,985-290-0109,B,F,D,56,2/20/2012,2/20/2008,Ms. Palmer +DPEC Member ,District 8 ,,,,LA,,,ST. TAMMANY,Michael Goff,155 Lake Deste Dr.,,Slidell,LA,70461-3608,10,985-781-1680,W,M,D,56,2/20/2012,2/20/2008,Mr. Goff +DPEC Member ,District 9 ,,,,LA,,,ST. TAMMANY,,,,,,,0,,,,,56,,, +DPEC Member ,District 10 ,,,,LA,,,ST. TAMMANY,Zella B. Walker,326 Adair St.,,Mandeville,LA,70448-5702,10,985-626-3512,W,F,D,56,2/20/2012,2/20/2008,Ms. Walker +DPEC Member ,District 11 ,,,,LA,,,ST. TAMMANY,Shannon Davis,34399 Laurent Rd.,,Slidell,LA,70460-3555,10,985-641-6834,W,M,D,56,2/20/2012,2/20/2008,Ms. Davis +DPEC Member ,District 12 ,,,,LA,,,ST. TAMMANY,Lois Link Fallon,3678 Riviera Dr.,,Slidell,LA,70458,5,985-643-1291,W,F,D,56,2/20/2012,2/20/2008,Ms. Fallon +DPEC Member ,District 13 ,,,,LA,,,ST. TAMMANY,Gail Ledet,218 Moonraker Dr.,,Slidell,LA,70458-5523,10,985-645-8963,W,F,D,56,2/20/2012,2/20/2008,Ms. Ledet +DPEC Member ,District 14 ,,,,LA,,,ST. TAMMANY,Elsie Palmer Burkhalter,P.O. Box 1108,,Slidell,LA,70459,5,985-643-9822,B,F,D,56,2/20/2012,2/20/2008,Ms. Burkhalter +RPEC Member ,at Large ,,,,LA,,,ST. TAMMANY,Adam A. Ackel,P. O. Box 747,,Abita Springs,LA,70420,5,985-871-5171,W,M,R,64,2/20/2012,2/20/2008,Mr. Ackel +RPEC Member ,at Large ,,,,LA,,,ST. TAMMANY,Kelly Dabdoub,3018 Canaan Pl.,,Mandeville,LA,70448-6300,10,985-966-3392,W,M,R,64,2/20/2012,2/20/2008,Mr. Dabdoub +RPEC Member ,at Large ,,,,LA,,,ST. TAMMANY,Pamela B. Egan,190 Eagle Rd.,,Covington,LA,70435-9426,10,985-898-0770,W,F,R,64,2/20/2012,2/20/2008,Ms. Egan +RPEC Member ,at Large ,,,,LA,,,ST. TAMMANY,Kristin McLaren,106 Trinity Ln.,,Mandeville,LA,70471,5,985-626-9050,W,F,R,64,2/20/2012,2/20/2008,Ms. McLaren +RPEC Member ,at Large ,,,,LA,,,ST. TAMMANY,Wynn Williams,1538 Monaco Dr.,,Slidell,LA,70458,5,985-640-4289,W,F,R,64,2/20/2012,2/20/2008,Ms. Williams +RPEC Member ,District 1 ,,,,LA,,,ST. TAMMANY,Mark Wright,16 Ellen Dr.,,Covington,LA,70433,5,985-809-7356,W,M,R,66,2/20/2012,2/20/2008,Mr. Wright +RPEC Member ,District 2 ,,,,LA,,,ST. TAMMANY,Peter F. Egan,190 Eagle Rd.,,Covington,LA,70435-9426,10,985-898-0770,W,M,R,66,2/20/2012,2/20/2008,Mr. Egan +RPEC Member ,District 3 ,,,,LA,,,ST. TAMMANY,,,,,,,0,,,,,66,,, +RPEC Member ,District 4 ,,,,LA,,,ST. TAMMANY,Evans C. Spiceland,123 W. Ruelle Dr.,,Mandeville,LA,70471-1750,10,985-845-0315,W,M,R,66,2/20/2012,2/26/2008,Mr. Spiceland +RPEC Member ,District 5 ,,,,LA,,,ST. TAMMANY,James Hartman,70386 A St.,,Covington,LA,70433-5452,10,504-458-4600,W,M,R,66,2/20/2012,2/20/2008,Mr. Hartman +RPEC Member ,District 6 ,,,,LA,,,ST. TAMMANY,William Songy,37145 Harper Rd. #2,,Pearl River,LA,70452,5,985-502-0857,W,M,R,66,2/20/2012,2/20/2008,Mr. Songy +RPEC Member ,District 7 ,,,,LA,,,ST. TAMMANY,Sharon A. Shad,61130 Timberbend Dr.,,Lacombe,LA,70445,5,985-966-2308,W,F,R,66,2/20/2012,2/20/2008,Ms. Shad +RPEC Member ,District 8 ,,,,LA,,,ST. TAMMANY,Stephanie H. Berault,433 Aire Ct.,,Slidell,LA,70461-6007,10,985-643-4422,W,F,R,66,2/20/2012,2/20/2008,Ms. Berault +RPEC Member ,District 9 ,,,,LA,,,ST. TAMMANY,Donna Holmes Faucheux,2029 Hampshire Dr.,,Slidell,LA,70461-5084,10,985-649-3537,W,F,R,66,2/20/2012,2/20/2008,Ms. Faucheux +RPEC Member ,District 10 ,,,,LA,,,ST. TAMMANY,Stewart R. Shields,2337 Butterfly Ct.,,Mandeville,LA,70448,5,985-624-4439,W,M,R,66,2/20/2012,2/20/2008,Mr. Shields +RPEC Member ,District 11 ,,,,LA,,,ST. TAMMANY,"James ""Jim"" Shea",432 Westminster Dr.,,Slidell,LA,70460,5,985-643-5349,W,M,R,66,2/20/2012,2/20/2008,Mr. Shea +RPEC Member ,District 12 ,,,,LA,,,ST. TAMMANY,Mark Sigur,P. O. Box 2616,,Slidell,LA,70459,5,985-643-6741,W,M,R,66,2/20/2012,2/20/2008,Mr. Sigur +RPEC Member ,District 13 ,,,,LA,,,ST. TAMMANY,Kevin G. Barkemeyer,116 Columbia Pl.,,Slidell,LA,70458-9148,10,985-649-5920,W,M,R,66,2/20/2012,2/20/2008,Mr. Barkemeyer +RPEC Member ,District 14 ,,,,LA,,,ST. TAMMANY,Mary A. Bishop,P. O. Box 4083,,Slidell,LA,70459,5,985-646-2848,W,F,R,66,2/20/2012,2/20/2008,Ms. Bishop +Sheriff ,,P. O. Box 1120,,Covington,LA,70434,985-809-8200,ST. TAMMANY,"R. Jack Strain, Jr.",P.O. Box 1120,,Covington,LA,70434,5,985-809-8207,,,R,225,6/30/2012,7/1/2008,Sheriff Strain +Clerk of Court ,,P. O. Box 1090,,Covington,LA,70434,985-809-8700,ST. TAMMANY,"""Malise"" Prieto",P. O. Box 1090,,Covington,LA,70434,5,,W,F,R,230,6/30/2012,7/1/2008,Ms. Prieto +Assessor ,,701 N. Columbia,,Covington,LA,70433,985-809-8180,ST. TAMMANY,Patricia Schwarz Core,200 Lakeside Ct.,,Covington,LA,70435-5542,10,985-898-0660,W,F,R,235,12/31/2012,1/1/2009,Ms. Core +Coroner ,,550 Brownswitch Road,,Slidell,LA,70458,985-781-1150,ST. TAMMANY,Peter R. Galvan,550 Brownswitch Rd.,,Slidell,LA,70458,5,985-768-0151,W,M,R,240,3/25/2012,3/24/2008,Mr. Galvan +Parish President ,,P.O. Box 628,,Covington,LA,70434,985-898-2591,ST. TAMMANY,Kevin C. Davis,718 Teddy Ave.,,Slidell,LA,70458,5,985-898-2700,W,M,R,243,1/9/2012,1/14/2008,Mr. Davis +Council Member,District 1,P. O. Box 628,,Covington,LA,70434,985-898-2591,ST. TAMMANY,"John M. ""Marty"" Dean",19 Kathleen Dr.,,Covington,LA,70433,5,985-789-7444,W,M,R,245,1/9/2012,1/14/2008,Mr. Dean +Council Member ,District 2 ,P. O. Box 628,,Covington,LA,70434,985-898-2591,ST. TAMMANY,Gary Cooper,22078 Sharp Chapel Rd.,,Bush,LA,70431,5,985-893-0789,W,M,R,245,1/9/2012,1/14/2008,Mr. Cooper +Council Member ,District 3 ,P. O. Box 628,,Covington,LA,70434,985-898-2591,ST. TAMMANY,"James A. ""Red"" Thompson, II",78111 J & B Rd.,,Folsom,LA,70437,5,985-796-0038,W,M,D,245,1/9/2012,1/14/2008,Mr. Thompson +Council Member ,District 4 ,P. O. Box 628,,Covington,LA,70434,985-898-2591,ST. TAMMANY,Reid Falconer,67 Magnolia Ridge Dr.,,Madisonville,LA,70447-9791,10,985-845-8983,W,M,R,245,1/9/2012,1/14/2008,Mr. Falconer +Council Member ,District 5 ,P. O. Box 628,,Covington,LA,70434,985-898-2591,ST. TAMMANY,"Martin W. ""Marty"" Gould, Jr.",300 Buckthorn Cir.,,Covington,LA,70433,5,985-869-2267,W,M,R,245,1/9/2012,1/14/2008,Mr. Cloud +Council Member ,District 6 ,P. O. Box 628,,Covington,LA,70434,985-898-2591,ST. TAMMANY,"Rebecca L. ""Becky"" Crawford",34441 Max Mercer Ln.,,Pearl River,LA,70452-2801,10,985-863-7007,W,F,D,245,1/9/2012,1/14/2008,Ms. Crawford +Council Member ,District 7 ,P. O. Box 628,,Covington,LA,70434,985-898-2591,ST. TAMMANY,"""Al"" Hamauei",60162 Oaklawn Ave.,,Lacombe,LA,70445,5,985-882-5735,W,M,R,245,1/9/2012,1/14/2008,Mr. Hamauei +Council Member ,District 8 ,P. O. Box 628,,Covington,LA,70434,985-898-2591,ST. TAMMANY,"Christopher ""Chris"" Canulette",109 Stratford Dr.,,Slidell,LA,70458-1745,10,985-290-6751,W,M,R,245,1/9/2012,1/14/2008,Mr. Canulette +Council Member ,District 9 ,P. O. Box 628,,Covington,LA,70434,985-898-2591,ST. TAMMANY,"""Gene"" Bellisaro",510 Bradford Dr.,,Slidell,LA,70461,5,985-641-2268,W,M,R,245,1/9/2012,1/14/2008,Mr. Bellisaro +Council Member ,District 10 ,,,,LA,,,ST. TAMMANY,Henry Billiot,821 Asbury Dr.,,Mandeville,LA,70471,5,985-373-0316,W,M,R,245,1/9/2012,1/14/2008,Mr. Billiot +Council Member ,District 11 ,,,,LA,,,ST. TAMMANY,"""Steve"" Stefancik",107 Royal Dr.,,Slidell,LA,70460,5,985-649-4580,W,M,R,245,1/9/2012,1/14/2008,Mr. Stefancik +Council Member ,District 12 ,,,,LA,,,ST. TAMMANY,"""Jerry"" Binder",470 Hickory Dr.,,Slidell,LA,70458,5,985-641-7064,W,M,R,245,1/9/2012,1/14/2008,Mr. Binder +Council Member ,District 13 ,,,,LA,,,ST. TAMMANY,"Richard ""Richie"" Artigue",53057 Hwy. 433,,Slidell,LA,70461,5,985-649-8952,W,M,R,245,1/9/2012,1/14/2008,Mr. Artigue +Council Member ,District 14 ,,,,LA,,,ST. TAMMANY,"Kenneth ""Ken"" Burkhalter",P.O. Box 1489,,Slidell,LA,70459,5,985-649-6674,,M,D,245,1/9/2012,1/14/2008,Mr. Burkhalter +City Judge ,"City Court, City of Slidell ",P. O. Box 1094,,Slidell,LA,70459,985-643-1274,ST. TAMMANY,"James ""Jim"" Lamz","636 Gause Blvd., Ste. 303",,Slidell,LA,70458,5,985-847-9757,W,M,R,250,12/31/2014,1/22/2009,Judge Lamz +City Marshal ,"City Court, City of Slidell ",P. O. Box 1094,,Slidell,LA,70459,985-847-1901,ST. TAMMANY,Wyatt Williams,200 Branch Rd.,,Slidell,LA,70461,5,985-643-4078,W,M,R,250,12/31/2014,1/1/2009,Marshal Williams +Member of School Board ,District 1 ,P. O. Box 940,,Covington,LA,70434,985-898-3214,ST. TAMMANY,Neal Hennegan,410 Magnolia Ln.,,Mandeville,LA,70471-1647,10,985-845-0863,W,M,R,255,12/31/2010,1/1/2007,Mr. Hennegan +Member of School Board ,District 2 ,P. O. Box 940,,Covington,LA,70434,985-898-3214,ST. TAMMANY,"Elizabeth B. ""Beth"" Heintz",908 W. 13th Ave.,,Covington,LA,70433-2408,10,985-892-2675,W,F,R,255,12/31/2010,1/1/2007,Ms. Heintz +Member of School Board ,District 3 ,P. O. Box 940,,Covington,LA,70434,985-898-3214,ST. TAMMANY,"Michael J. ""Mike"" Dirmann",711 Covington Point Dr.,,Covington,LA,70433-1563,10,985-893-4603,W,M,D,255,12/31/2010,1/1/2007,Mr. Dirmann +Member of School Board ,District 4 ,P. O. Box 940,,Covington,LA,70434,985-898-3214,ST. TAMMANY,"Stephen J. ""Jack"" Loup, III",11198 Willie Cemetery Rd.,,Folsom,LA,70437,5,985-796-3771,W,M,R,255,12/31/2010,1/1/2007,Mr. Loup +Member of School Board ,District 5 ,P. O. Box 940,,Covington,LA,70434,985-898-3214,ST. TAMMANY,Charles T. Harrell,23284 Oak Alley Pl.,,Covington,LA,70435-6607,10,985-893-8020,W,M,R,255,12/31/2010,1/1/2007,Mr. Harrell +Member of School Board ,District 6 ,P. O. Box 940,,Covington,LA,70434,985-898-3214,ST. TAMMANY,Donald J. Villere,584 Park Ave.,,Mandeville,LA,70448-4915,10,985-626-7291,W,M,R,255,12/31/2010,1/1/2007,Mr. Villere +Member of School Board ,District 7 ,P. O. Box 940,,Covington,LA,70434,985-898-3214,ST. TAMMANY,"Judy L. Palmer, ",P.O. Box 868,,Lacombe,LA,70445,5,985-882-3392,,,,255,,12/19/2009,Ms. Palmer +Member of School Board ,District 8 ,P. O. Box 940,,Covington,LA,70434,985-898-3214,ST. TAMMANY,Daniel Glen Zechenelly,69219 Taylor Rd.,,Pearl River,LA,70452-5903,10,985-882-1188,W,M,D,255,12/31/2010,1/1/2007,Mr. Zechnelley +Member of School Board ,District 9 ,P. O. Box 940,,Covington,LA,70434,985-898-3214,ST. TAMMANY,Robin Mullett,32 Oak Grove Way,,Slidell,LA,70458,5,985-290-1166,W,F,R,255,12/31/2010,10/27/2009,Ms. Mullett +Member of School Board ,District 10 ,P. O. Box 940,,Covington,LA,70434,985-898-3214,ST. TAMMANY,"""Ron"" Bettencourtt",P. O. Box 8944,,Mandeville,LA,70470,5,985-373-4716,W,M,R,255,12/31/2010,1/1/2007,Mr. Bettencourt +Member of School Board ,District 11 ,P. O. Box 940,,Covington,LA,70434,985-898-3214,ST. TAMMANY,"Robert R. ""Bob"" Womack",1343 Sunset Dr.,,Slidell,LA,70460-2517,10,985-641-4454,,,R,255,12/31/2010,1/1/2007,Mr. Womack +Member of School Board ,District 12 ,P. O. Box 940,,Covington,LA,70434,985-898-3214,ST. TAMMANY,"James ""Ronnie"" Panks, Sr.",3846 Oxford St.,,Slidell,LA,70458-5240,10,985-290-0423,W,M,R,255,12/31/2010,1/1/2007,Mr. Panks +Member of School Board ,District 13 ,P. O. Box 940,,Covington,LA,70434,985-898-3214,ST. TAMMANY,John C. Lamarque,648 Maine Ave.,,Slidell,LA,70458,5,985-643-4656,W,M,D,255,12/31/2010,1/1/2007,Mr. Lamarque +Member of School Board ,District 14 ,,,,LA,,,ST. TAMMANY,Ray Anthony Alfred,57097 Pace Rd.,,Slidell,LA,70461-2505,10,985-649-0136,B,M,D,255,12/31/2010,1/1/2007,Mr. Alfred +Member of School Board ,District 15 ,,,,LA,,,ST. TAMMANY,Mary K. Bellisario,510 Bradford Dr.,,Slidell,LA,70461-4910,10,985-641-2268,W,F,R,255,12/31/2010,1/1/2007,Ms. Bellisario +Justice of the Peace ,Justice of the Peace Ward 1 ,76347 Hwy. 1077,,Folsom,LA,70437,985-796-5455,ST. TAMMANY,Gregory B. Badeaux,131 Windermere Way,,Madisonville,LA,70447,5,985-845-1416,W,M,R,265,12/31/2014,1/1/2009,Mr. Badeaux +Justice of the Peace ,Justice of the Peace Ward 1 ,76347 Hwy. 1077,,Folsom,LA,70437,985-796-5455,ST. TAMMANY,Charles Wohltmann,68 Zinnia Dr.,,Covington,LA,70433,5,985-893-5622,W,M,R,265,12/31/2014,1/1/2009,Mr. Wohltmann +Justice of the Peace ,Justice of the Peace Ward 2 ,21336 Birtrue Rd.,,Bush,LA,70431-2702,985-875-0644,ST. TAMMANY,"""Tim"" Garlick",21336 Birtrue Rd.,,Bush,LA,70431,5,985-875-0644,W,M,R,265,12/31/2014,1/1/2009,Mr. Garlick +Justice of the Peace ,Justice of the Peace Ward 2 ,21336 Birtrue Rd.,,Bush,LA,70431-2702,985-875-0644,ST. TAMMANY,Juanita F. Mizell,80414 N. Willie Rd.,,Folsom,LA,70437,5,985-796-1860,W,F,R,265,12/31/2014,1/1/2009,Ms. Mizell +Justice of the Peace ,Justice of the Peace Ward 3 ,73477 Tammy Ln.,,Covington,LA,70435,985-892-4486,ST. TAMMANY,Connie G. Moore,73477 Tammy Ln.,,Covington,LA,70435,5,985-892-4486,W,F,R,265,12/31/2014,1/1/2009,Ms. Moore +Justice of the Peace ,Justice of the Peace Ward 4 ,1280 Clausel St.,,Mandeville,LA,70448,985-626-9382,ST. TAMMANY,Susan Tingstrom Leonard,225 St. Ann Dr.,,Mandeville,LA,70471,5,985-624-6635,W,F,R,265,12/31/2014,1/1/2009,Ms. Leonard +Justice of the Peace ,Justice of the Peace Ward 4 ,1280 Clausel St.,,Mandeville,LA,70448,985-626-9382,ST. TAMMANY,Marie M. Taylor,1449 Montmartre St.,,Mandeville,LA,70448,5,985-626-9120,W,F,R,265,12/31/2014,1/1/2009,Ms. Taylor +Justice of the Peace ,Justice of the Peace Ward 5 ,31392 Cowart-Bush Rd.,,Bush,LA,70431,985-886-3805,ST. TAMMANY,"James ""PeeWee"" Kahl",31392 Cowart-Bush Rd.,,Bush,LA,70431,5,985-886-2030,W,M,,265,12/31/2014,1/1/2009,Mr. Kahl +Justice of the Peace ,Justice of the Peace Ward 6 ,38090 Julia Dr.,,Pearl River,LA,70452,985-863-7007,ST. TAMMANY,Trecia Kennedy,67776 Hwy. 41,,Pearl River,LA,70452,5,985-863-2633,W,F,R,265,12/31/2014,1/1/2009,Ms. Kennedy +Justice of the Peace ,Justice of the Peace Ward 7 ,61261 Anchorage Dr.,,Lacombe,LA,70445,985-882-7051,ST. TAMMANY,Dewey Spies,59232 Pine Bay Ln.,,Lacombe,LA,70445,5,985-882-6861,W,M,R,265,12/31/2014,1/1/2009,Mr. Spies +Justice of the Peace ,Justice of the Peace Ward 8 ,4130 Audubon St.,,Slidell,LA,70461,985-781-7639,ST. TAMMANY,Tracey Turgeau Powell,"100 Galeria Blvd., Ste. 4",,Slidell,LA,70458,5,985-643-1711,W,F,R,265,12/31/2014,1/1/2009,Ms. Powell +Justice of the Peace ,Justice of the Peace Ward 10 ,74184 Allen Rd.,,Abita Springs,LA,70420,985-373-5970,ST. TAMMANY,"Olivia ""Levie"" Hannan",74184 Allen Rd.,,Abita Springs,LA,70420,5,985-875-7744,W,F,,265,12/31/2014,1/1/2009,Ms. Hannan +Justice of the Peace ,Justice of the Peace Ward 10 ,74184 Allen Rd.,,Abita Springs,LA,70420,985-373-5970,ST. TAMMANY,Lisa C. King,23495 Silver Springs Dr.,,Abita Springs,LA,70420,5,985-892-6450,W,F,R,265,12/31/2014,1/1/2009,Ms. King +Constable ,Justice of the Peace Ward 1 ,76021 Country Club,,Covington,LA,70435-0632 ,985-893-3823,ST. TAMMANY,"P. Wallace ""Wally"" Gottschalk",10080 Breen Rd.,,Covington,LA,70435,5,985-892-3411,W,M,R,267,12/31/2014,1/1/2009,Mr. Gottschalk +Constable ,Justice of the Peace Ward 1 ,76021 Country Club,,Covington,LA,70435-0632 ,985-893-3823,ST. TAMMANY,Blake Pennington,P.O. Box 955,,Madisonville,LA,70447,5,985-792-0531,W,M,R,267,12/31/2014,1/1/2009,Mr. Pennington +Constable ,Justice of the Peace Ward 2 ,81072 O.K. Lane,,Covington,LA,70435,985-892-7143,ST. TAMMANY,"Tilman ""Pete"" King",81191 Ben King Rd.,,Bush,LA,70431,5,985-892-0502,W,M,R,267,12/31/2014,1/1/2009,Mr. King +Constable ,Justice of the Peace Ward 2 ,81072 O.K. Lane,,Covington,LA,70435,985-892-7143,ST. TAMMANY,"John Thomas Mathies, III",396 Village Farms Ln.,,Folsom,LA,70437,5,985-796-0012,,,R,267,12/31/2014,1/1/2009,Mr. Mathies +Constable ,Justice of the Peace Ward 3 ,P.O. Box 1133,,Covington,LA,70435,985-892-4486,ST. TAMMANY,"Richard ""Rick"" Moore",73477 Tammy Ln.,,Covington,LA,70435,5,985-892-4486,W,M,R,267,12/31/2014,1/1/2009,Mr. King +Constable ,Justice of the Peace Ward 3 ,P.O. Box 1133,,Covington,LA,70435,985-892-4486,ST. TAMMANY,"Tasso ""Tiger"" Taylor, III",P.O. Box 1441,,Covington,LA,70435,5,985-892-5997,W,M,R,267,12/31/2014,1/1/2009,Mr. Taylor +Constable ,Justice of the Peace Ward 4 ,555 Kimberly Ann Dr.,,Mandeville,LA,70471,985-845-4694,ST. TAMMANY,Michael Hand,555 Kimberly Ann Dr.,,Mandeville,LA,70471,5,985-845-4694,W,M,R,267,12/31/2014,1/1/2009,Mr. Hand +Constable ,Justice of the Peace Ward 4 ,555 Kimberly Ann Dr.,,Mandeville,LA,70471,985-845-4694,ST. TAMMANY,"""Eddie"" Schmidt",116 Acadian Ln.,,Mandeville,LA,70471,5,985-792-1287,W,M,R,267,12/31/2014,1/1/2009,Mr. Schmidt +Constable ,Justice of the Peace Ward 5 ,79200 Watts Thomas Rd.,,Bush,LA,70431,985-886-3439,ST. TAMMANY,"""Woody"" Crawford",79218 Watts Thomas Rd.,,Bush,LA,70431,5,985-886-3439,W,M,O,267,12/31/2014,1/1/2009,Mr. Crawford +Constable ,Justice of the Peace Ward 6 ,36228 Lock 1 Rd.,,Pearl River,LA,70452,985-863-5074,ST. TAMMANY,Elton N. Jordan,35274 Firetower Rd.,,Pearl River,LA,70452,5,985-768-9600,W,M,,267,12/31/2014,1/1/2009,Mr. Jordan +Constable ,Justice of the Peace Ward 7 ,P.O. Box 752,,Lacombe,LA,70445,985-882-7869,ST. TAMMANY,"""Greg"" Chabreck",P.O. Box 752,,Lacombe,LA,70445,5,985-882-7869,W,M,R,267,12/31/2014,1/1/2009,Mr. Chabreck +Constable ,Justice of the Peace Ward 8 ,64511 Church St.,,Pearl River,LA,70452,985-863-5267,ST. TAMMANY,Floyd Trascher,64511 Church St.,,Pearl River,LA,70452,5,985-863-5267,W,M,R,267,12/31/2014,1/1/2009,Mr. Trascher +Constable ,Justice of the Peace Ward 10 ,22249 7th St.,,Abita Springs,LA,70420-3733,985-892-7458,ST. TAMMANY,"David M. ""Mike"" Davis",22249 Seventh St.,,Abita Springs,LA,70420,5,985-892-7458,W,M,R,267,12/31/2014,1/1/2009,Mr. Davis +Constable ,Justice of the Peace Ward 10 ,22249 7th St.,,Abita Springs,LA,70420-3733,985-892-7458,ST. TAMMANY,Leonard William Lenel,75420 Lenel Rd.,,Covington,LA,70435,5,985-892-7395,W,M,O,267,12/31/2014,1/1/2009,Mr. Lenel +Mayor ,City of Covington ,P. O. Box 778,,Covington,LA,,985-892-1811,ST. TAMMANY,Candace Watkins,P.O. Box 778,,Covington,LA,70434,5,985-898-1941,W,F,R,300,7/4/2011,7/1/2007,Mayor Watkins +Mayor ,City of Mandeville ,3101 E. Causeway Approach,,Mandeville,LA,,985-626-3144,ST. TAMMANY,Edward P. Lyons,3101 East Causeway Approach,,Mandeville,LA,70448,5,,,,,300,,10/17/2009,Mayor Lyons +Mayor ,City of Slidell ,P. O. Box 828,,Slidell,LA,,985-646-4307,ST. TAMMANY,"""Ben"" Morris",P.O. Box 828,,Slidell,LA,70459,5,985-646-4332,W,M,R,300,7/5/2010,7/3/2006,Mayor Morris +Mayor ,Town of Abita Springs ,P. O. Box 461,,Abita Springs,LA,,985-892-0711,ST. TAMMANY,Louis Fitzmorris,P.O. Box 472,,Abita Springs,LA,70420,5,985-892-0711,W,M,O,300,12/31/2010,1/1/2007,Mr. Fitzmorris +Mayor ,Town of Madisonville ,P. O. Box 160,,Madisonville,LA,,985-845-7311,ST. TAMMANY,"Peter Gitz, Jr.",P.O. Box 122,,Madisonville,LA,70447,5,985-845-3334,,,R,300,6/30/2012,7/1/2008,Mayor Gitz +Mayor ,Town of Pearl River ,P. O. Box 1270,,Pearl River,LA,,985-863-5800,ST. TAMMANY,James Lavigne,P.O. Box 1270,,Pearl River,LA,70452,5,985-863-7071,,,D,300,12/31/2010,1/1/2007,Mr. Lavigne +Mayor ,Village of Folsom ,P. O. Box 609,,Folsom,LA,,985-796-5607,ST. TAMMANY,Marshell Brumfield,P.O. Box 609,,Folsom,LA,70437,5,985-796-3778,B,M,D,300,12/31/2010,1/1/2007,Mr. Brumfield +Mayor ,Village of Sun ,P. O. Box 818,,Sun,LA,,985-886-5500,ST. TAMMANY,Barbara Gibson,P.O. Box 891,,Sun,LA,70463,5,985-886-5500,W,F,D,300,6/30/2011,7/1/2007,Mayor Gibson +Chief of Police ,City of Slidell ,P. O. Box 828,,Slidell,LA,70459,985-646-4307,ST. TAMMANY,"""Freddy"" Drennan",815 W. Hall Ave.,,Slidell,LA,70460,5,985-646-4285,W,M,R,305,7/5/2010,7/3/2006,Chief Drennan +Chief of Police ,Town of Pearl River ,P. O. Box 1270,,Pearl River,LA,70452,385-863-5800,ST. TAMMANY,"""Bennie"" Raynor",39449 Maple St.,,Pearl River,LA,70452,5,985-863-2883,W,M,D,305,12/31/2010,1/1/2007,Mr. Raynor +Council Member at Large ,City of Mandeville ,3101 E. Causeway Approach,,Mandeville,LA,70448-3592,985-626-3144,ST. TAMMANY,Adelaide J. Boettner,2815 North St.,,Mandeville,LA,70448-4904,10,985-264-9277,W,F,R,308,7/1/2012,7/1/2008,Ms. Boettner +Council Member at Large ,City of Mandeville ,3101 E. Causeway Approach,,Mandeville,LA,70448-3592,985-626-3144,ST. TAMMANY,Trilby Lenfant,16 Preserve Ln.,,Mandeville,LA,70471-2937,10,985-626-4312,W,F,R,308,7/1/2012,7/1/2008,Ms. Lenfant +Council Member at Large ,City of Slidell ,,,,LA,,,ST. TAMMANY,L. Landon Cusimano,311 Michigan Ave.,,Slidell,LA,70458,5,985-649-5449,W,M,R,308,7/5/2010,11/27/2007,Mr. Cusimano +Council Member at Large ,City of Slidell ,,,,LA,,,ST. TAMMANY,"L. Landon Cusimano, ",311 Michigan Ave.,,Slidell,LA,70458-2731,10,985-649-5449,W,M,R,308,,, +Council Member at Large ,City of Slidell ,,,,LA,,,ST. TAMMANY,Kim Baronet Harbison,315 Oriole Ln.,,Slidell,LA,70458,5,985-640-5049,W,F,R,308,7/5/2010,4/14/2009,Ms. Harbison +Council Member at Large ,City of Slidell ,,,,LA,,,ST. TAMMANY,"Kim Baronet Harbison, ",315 Oriole Ln.,,Slidell,LA,70458-1631,10,985-649-4438,W,F,R,308,,, +Councilman at Large ,City of Covington ,P. O. Box 778,,Covington,LA,70434,985-892-1811,ST. TAMMANY,"W. T. ""Trey"" Blackall, III",1006 S. Filmore St.,,Covington,LA,70433,5,985-966-2503,W,M,R,308,7/4/2011,7/1/2007,Mr. Blackall +Councilman at Large ,City of Covington ,P. O. Box 778,,Covington,LA,70434,985-892-1811,ST. TAMMANY,"""Matt"" Faust",602 Phyllis Dr.,,Covington,LA,70433-4253,10,985-893-3740,W,M,R,308,7/4/2011,7/1/2007,Mr. Faust +Alderman ,Town of Abita Springs ,P. O. Box 461,,Abita Springs,LA,70420,985-892-0711,ST. TAMMANY,Sheri Sable Campbell,72110 Gum St.,,Abita Springs,LA,70420,5,985-875-1247,W,F,O,310,12/31/2010,1/1/2007,Ms. Campbell +Alderman ,Town of Abita Springs ,P. O. Box 461,,Abita Springs,LA,70420,985-892-0711,ST. TAMMANY,Troy Dugas,72099 Hickory St.,,Abita Springs,LA,70420-3931,10,985-630-1197,W,M,R,310,12/31/2010,1/1/2007,Mr. Dugas +Alderman ,Town of Abita Springs ,P. O. Box 461,,Abita Springs,LA,70420,985-892-0711,ST. TAMMANY,Patricia Edmiston,72286 Gordon Ave.,,Abita Springs,LA,70420-3548,10,985-809-7393,,F,D,310,12/31/2010,1/1/2007,Ms. Edmiston +Alderman ,Town of Abita Springs ,P. O. Box 461,,Abita Springs,LA,70420,985-892-0711,ST. TAMMANY,"""Greg"" Lemons",71361 St. Joseph St.,,Abita Springs,LA,70420,5,985-809-7592,W,M,R,310,12/31/2010,1/1/2007, +Alderman ,Town of Abita Springs ,P. O. Box 461,,Abita Springs,LA,70420,985-892-0711,ST. TAMMANY,"W. E. ""Pat"" Patterson, III",72104 Laurel St.,,Abita Springs,LA,70420,5,985-871-4211,W,M,R,310,12/31/2010,1/1/2007,Mr. Patterson +Alderman ,Town of Pearl River ,P. O. Box 1270,,Pearl River,LA,70452,385-863-5800,ST. TAMMANY,Marie Crowe,65190 Hwy. 3081,,Pearl River,LA,70452-5142,10,985-863-9373,W,F,D,310,12/31/2010,1/1/2007,Ms. Crowe +Alderman ,Town of Pearl River ,P. O. Box 1270,,Pearl River,LA,70452,385-863-5800,ST. TAMMANY,Ruby Gauley,39107 McQueen Rd.,,Pearl River,LA,70452,5,985-863-7258,W,F,R,310,12/31/2010,1/1/2007,Ms. Gauley +Alderman ,Town of Pearl River ,P. O. Box 1270,,Pearl River,LA,70452,385-863-5800,ST. TAMMANY,David McQueen,P.O. Box 371,,Pearl River,LA,70452,5,985-960-1172,W,M,D,310,12/31/2010,1/1/2007,Mr. McQueen +Alderman ,Town of Pearl River ,P. O. Box 1270,,Pearl River,LA,70452,385-863-5800,ST. TAMMANY,Virgil R. Phillips,39110 Craddock Ln.,,Pearl River,LA,70452,5,985-863-9495,W,M,,310,12/31/2010,1/1/2007,Mr. Phillips +Alderman ,Town of Pearl River ,P. O. Box 1270,,Pearl River,LA,70452,385-863-5800,ST. TAMMANY,Jay Scroggins,65078 Bancks St.,,Pearl River,LA,70452-5100,10,985-863-9904,W,M,R,310,12/31/2010,1/1/2007,Mr. Scroggins +Alderman ,Village of Folsom ,P. O. Box 609,,Folsom,LA,70437,985-796-5607,ST. TAMMANY,Phillip Bickham,P.O. Box 914,,Folsom,LA,70437,5,985-796-3041,,,,310,12/31/2010,10/30/2007,Mr. Bickham +Alderman ,Village of Folsom ,P. O. Box 609,,Folsom,LA,70437,985-796-5607,ST. TAMMANY,"Ronald W. ""Ronnie"" Holliday",82286 Olive St.,,Folsom,LA,70437,5,985-796-5689,W,M,D,310,12/31/2010,10/30/2007,Mr. Holliday +Alderman ,Village of Folsom ,P. O. Box 609,,Folsom,LA,70437,985-796-5607,ST. TAMMANY,"""Ken"" Wilt",418 Acadian Dr.,,Folsom,LA,70437,5,985-796-8082,W,M,,310,12/31/2010,10/30/2007,Mr. Wilt +Alderman ,Village of Sun ,P. O. Box 818,,Sun,LA,70463,985-886-5500,ST. TAMMANY,Burrell Mullett,P.O. Bix 979,,Sun,LA,70463,5,985-516-3114,W,M,D,310,6/30/2011,7/1/2007,Mr. Mullett +Alderman ,Village of Sun ,P. O. Box 818,,Sun,LA,70463,985-886-5500,ST. TAMMANY,William M. Rivers,83445 Rivers Dr.,,Sun,LA,70427,5,985-886-1016,W,M,D,310,6/30/2011,7/1/2007,Mr. Rivers +Alderman ,Village of Sun ,P. O. Box 818,,Sun,LA,70463,985-886-5500,ST. TAMMANY,"Will Talley, ",29334 Hwy. 16,,Sun,LA,70463,5,985-237-9622,W,M,N,310,,2/15/2010, +Alderman ,Village of Sun ,P. O. Box 818,,Sun,LA,70463,985-886-5500,ST. TAMMANY,Will F. Talley,29334 Hwy 16,,Bogalusa,LA,70427,5,,,,,310,,9/8/2009,Mr. Talley +Council Member ,"District A, City of Slidell ",P.O. Box 828,,Slidell,LA,70459-0828 ,985-646-4307,ST. TAMMANY,Lionel J. Hicks,P.O. Box 939,,Slidell,LA,70459,5,985-290-8853,B,M,D,310,7/5/2010,7/3/2006,Mr. Hicks +Council Member ,"District A, City of Slidell ",P.O. Box 828,,Slidell,LA,70459-0828 ,985-646-4307,ST. TAMMANY,"Lionel J. Hicks, ",3103 Terrace Ave.,,Slidell,LA,70458-4523,10,985-641-4452,B,M,D,310,,, +Council Member ,"District B, City of Slidell ",P.O. Box 828,,Slidell,LA,70459-0828 ,985-646-4307,ST. TAMMANY,"Richard ""Rickey"" Hursey",305 Cumberland Dr.,,Slidell,LA,70458,5,985-646-0928,W,M,R,310,7/5/2010,7/3/2006,Mr. Hursey +Council Member ,"District C, City of Slidell ",P.O. Box 828,,Slidell,LA,70459-0828 ,985-646-4307,ST. TAMMANY,Warren Crockett,707 Maine Ave.,,Slidell,LA,70458,5,504-628-8529,W,M,R,310,7/5/2010,7/3/2006,Mr. Crockett +Council Member ,"District D, City of Slidell ",P.O. Box 828,,Slidell,LA,70459-0828 ,985-646-4307,ST. TAMMANY,"""Joe"" Fraught",1043 St. Peter Dr.,,Slidell,LA,70460,5,985-641-4255,W,M,R,310,7/5/2010,7/3/2006,Mr. Fraught +Council Member ,"District D, City of Slidell ",P.O. Box 828,,Slidell,LA,70459-0828 ,985-646-4307,ST. TAMMANY,"""Joe"" Fraught, ",1043 St. Peter Dr.,,Slidell,LA,70460-2327,10,985-641-4255,W,M,R,310,,, +Council Member ,"District E, City of Slidell ",P.O. Box 828,,Slidell,LA,70459-0828 ,985-646-4307,ST. TAMMANY,"""Ray"" Canada",1100 Rue Latour,,Slidell,LA,70458-2220,10,985-640-0266,W,M,R,310,7/5/2010,7/3/2006,Mr. Canada +Council Member ,"District E, City of Slidell ",P.O. Box 828,,Slidell,LA,70459-0828 ,985-646-4307,ST. TAMMANY,"Salvatore A. ""Sam"" Caruso, ",1557 Eastwood Dr.,,Slidell,LA,70458-3109,10,985-641-7289,W,M,R,310,,, +Council Member ,"District F, City of Slidell ",P.O. Box 828,,Slidell,LA,70459-0828 ,985-646-4307,ST. TAMMANY,James A. Devereux,P.O. Box 828,,Slidell,LA,70459,5,,,,,310,,4/28/2009,Mr. Devereux +Council Member ,"District G, City of Slidell ",P.O. Box 828,,Slidell,LA,70459-0828 ,985-646-4307,ST. TAMMANY,"""Bill"" Borchert, Jr.",1068 Front St.,,Slidell,LA,70458,5,985-649-4519,W,M,R,310,7/4/2010,12/21/2007,Mr. Borchert +Council Member ,"District G, City of Slidell ",P.O. Box 828,,Slidell,LA,70459-0828 ,985-646-4307,ST. TAMMANY,"""Bill"" Borchert, Jr.",322 Landon Dr.,,Slidell,LA,70458-1318,10,985-640-2266,W,M,R,310,,, +Council Member I ,"District A, City of Mandeville ",3101 E. Causeway Approach,,Mandeville,LA,70448-3592,985-626-3144,ST. TAMMANY,"Gerard F. Coogan, Jr.",525 Kinberly Ann,,Mandeville,LA,70471,5,985-626-9570,W,M,R,310,7/1/2012,7/1/2008,Mr. Coogan +Council Member II ,"District B, City of Mandeville ",3101 E. Causeway Approach,,Mandeville,LA,70448-3592,985-626-3144,ST. TAMMANY,Carla Buchholz,227 Kimberly Dr.,,Mandeville,LA,70448,5,985-626-8852,W,F,R,310,7/1/2012,7/1/2008,Ms. Bucholz +Council Member III ,"District C, City of Mandeville ",3101 E. Causeway Approach,,Mandeville,LA,70448-3592,985-626-3144,ST. TAMMANY,John F. Bernard,321 Marigny Ave.,,Mandeville,LA,70448-5940,10,985-626-8150,W,M,R,310,7/1/2012,7/1/2008,Mr. Bernard +Councilman ,"District A, City of Covington ",P. O. Box 778,,Covington,LA,70434,985-892-1811,ST. TAMMANY,Frances R. Dunn,827 W. 31st Ave.,,Covington,LA,70433,5,985-893-6813,B,F,D,310,7/4/2011,7/1/2007,Ms. Dunn +Councilman ,"District B, City of Covington ",P. O. Box 778,,Covington,LA,70434,985-892-1811,ST. TAMMANY,Clarence Romage,706 Covington Point Dr.,,Covington,LA,70433,5,985-893-2033,W,M,D,310,7/4/2011,7/1/2007,Mr. Romage +Councilman ,"District C, City of Covington ",P. O. Box 778,,Covington,LA,70434,985-892-1811,ST. TAMMANY,Mark Sacco,24 Michelle Dr.,,Covington,LA,70433,5,985-237-9317,W,M,R,310,7/4/2011,7/1/2007,Mr. Sacco +Councilman ,"District D, City of Covington ",P. O. Box 778,,Covington,LA,70434,985-892-1811,ST. TAMMANY,"Martin J. ""Marty"" Benoit",P.O. Box 792,,Covington,LA,70434,5,985-892-8064,,,D,310,7/4/2011,7/1/2007,Mr. Benoit +Councilman ,"District E, City of Covington ",P. O. Box 778,,Covington,LA,70434,985-892-1811,ST. TAMMANY,Lee S. Alexius,400 S. New Hampshire St.,,Covington,LA,70433-3551,10,985-892-6507,W,M,R,310,7/4/2011,7/1/2007,Mr. Alexius +Councilman ,Town of Madisonville ,P. O. Box 160,,Madisonville,LA,70447,985-845-7311,ST. TAMMANY,Mark D. Badeaux,P.O. Box 156,,Madisonville,LA,70447,5,985-845-4328,W,M,D,310,6/30/2012,7/1/2008,Mr. Badeaux +Councilman ,Town of Madisonville ,P. O. Box 160,,Madisonville,LA,70447,985-845-7311,ST. TAMMANY,"""Jim"" Bouey",P.O. Box 142,,Madisonville,LA,70447,5,985-630-2962,W,M,R,310,6/30/2012,7/1/2008,Mr. Bouey +Councilman ,Town of Madisonville ,P. O. Box 160,,Madisonville,LA,70447,985-845-7311,ST. TAMMANY,"""Tim"" Bounds",401 Johnson St.,,Madisonville,LA,70447-9767,10,985-845-3371,W,M,R,310,6/30/2012,7/1/2008,Mr. Bounds +Councilman ,Town of Madisonville ,P. O. Box 160,,Madisonville,LA,70447,985-845-7311,ST. TAMMANY,Jerry Lange,P.O. Box 393,,Madisonville,LA,70447-0393 ,11,985-845-7442,,,D,310,6/30/2012,7/1/2008,Mr. Lange +Councilman ,Town of Madisonville ,P. O. Box 160,,Madisonville,LA,70447,985-845-7311,ST. TAMMANY,L. P. Ostendorf,P.O. Box 37,,Madisonville,LA,70447-0037 ,12,985-845-3312,,,D,310,6/30/2012,7/1/2008,Mr. Ostendorf +DPEC Member ,at Large ,,,,LA,,,TANGIPAHOA,"James ""Rube"" Ardillo",59621 Puleston Rd.,,Amite,LA,70422,5,985-507-7121,W,M,D,54,2/20/2012,2/20/2008,Mr. Ardillo +DPEC Member ,at Large ,,,,LA,,,TANGIPAHOA,"John Henry Wright, Sr.",49474 Whiskey Ln.,,Tickfaw,LA,70466,5,985-345-7585,B,M,D,54,2/20/2012,2/20/2008,Mr. Wright +DPEC Member ,District 1 ,,,,LA,,,TANGIPAHOA,Margaret Jackson Smith,P.O. Box 119,,Kentwood,LA,70444,5,985-514-1584,B,F,D,56,2/20/2012,2/20/2008,Ms. Smith +DPEC Member ,District 2 ,,,,LA,,,TANGIPAHOA,,,,,,,0,,,,,56,,, +DPEC Member ,District 3 ,,,,LA,,,TANGIPAHOA,Mia Lewis,P.O. Box 1493,,Amite,LA,70422,5,985-747-8830,B,F,D,56,2/20/2012,2/20/2008,Ms. Lewis +DPEC Member ,District 4 ,,,,LA,,,TANGIPAHOA,,,,,,,0,,,,,56,,, +DPEC Member ,District 5 ,,,,LA,,,TANGIPAHOA,,,,,,,0,,,,,56,,, +DPEC Member ,District 6 ,,,,LA,,,TANGIPAHOA,,,,,,,0,,,,,56,,, +DPEC Member ,District 7 ,,,,LA,,,TANGIPAHOA,,,,,,,0,,,,,56,,, +DPEC Member ,District 8 ,,,,LA,,,TANGIPAHOA,"""Sal"" Demarco",42114 Veterans Ave.,,Hammond,LA,70403,5,985-351-1963,W,M,D,56,2/20/2012,2/20/2008,Mr. Demarco +DPEC Member ,District 9 ,,,,LA,,,TANGIPAHOA,,,,,,,0,,,,,56,,, +DPEC Member ,District 10 ,,,,LA,,,TANGIPAHOA,,,,,,,0,,,,,56,,, +RPEC Member ,at Large ,,,,LA,,,TANGIPAHOA,,,,,,,0,,,,,64,,, +RPEC Member ,District 1 ,,,,LA,,,TANGIPAHOA,,,,,,,0,,,,,66,,, +RPEC Member ,District 2 ,,,,LA,,,TANGIPAHOA,,,,,,,0,,,,,66,,, +RPEC Member ,District 3 ,,,,LA,,,TANGIPAHOA,,,,,,,0,,,,,66,,, +RPEC Member ,District 4 ,,,,LA,,,TANGIPAHOA,,,,,,,0,,,,,66,,, +RPEC Member ,District 5 ,,,,LA,,,TANGIPAHOA,Richard David Ramsey,11 White Dr.,,Hammond,LA,70401-1025,10,985-542-6845,W,M,R,66,2/20/2012,2/20/2008,Mr. Ramsey +RPEC Member ,District 6 ,,,,LA,,,TANGIPAHOA,,,,,,,0,,,,,66,,, +RPEC Member ,District 7 ,,,,LA,,,TANGIPAHOA,,,,,,,0,,,,,66,,, +RPEC Member ,District 8 ,,,,LA,,,TANGIPAHOA,,,,,,,0,,,,,66,,, +RPEC Member ,District 9 ,,,,LA,,,TANGIPAHOA,,,,,,,0,,,,,66,,, +RPEC Member ,District 10 ,,,,LA,,,TANGIPAHOA,,,,,,,0,,,,,66,,, +Sheriff ,,15475 Club Deluxe Rd.,,Hammond,LA,70403,985-748-8147,TANGIPAHOA,Daniel H. Edwards,15475 Club Deluxe Rd.,,Hammond,LA,70403,5,985-517-0909,W,M,D,225,6/30/2012,7/1/2008,Mr. Edwards +Clerk of Court ,,P. O. Box 667,,Amite,LA,70422,985-748-4146,TANGIPAHOA,Julian E. Dufreche,P.O. Box 667,,Amite,LA,70422,5,985-386-6281,W,M,D,230,6/30/2012,7/1/2008,Mr. Dufreche +Assessor ,,P.O. Box 336,,Amite,LA,70422,985-748-7176,TANGIPAHOA,"Joaquin ""JR."" Matheu",P.O. Box 336,,Amite,LA,70422,5,985-345-1805,W,M,D,235,12/31/2012,1/1/2009,Mr. Matheu +Coroner ,,15479 Club Deluxe,,Hammond,LA,70403,985-902-8580,TANGIPAHOA,"""Rick"" Foster",40094 N. Hoover Rd.,,Ponchatoula,LA,70454,5,985-386-8403,W,M,D,240,3/25/2012,3/24/2008,Mr. Foster +Parish President ,,P.O. Box 215,,Amite,LA,70422,985-748-3211,TANGIPAHOA,Gordon Burgess,56337 A. Richardson,,Loranger,LA,70446,5,985-878-6480,W,M,D,243,1/9/2012,1/14/2008,Mr. Burgess +Councilman,District 1,P. O. Box 215,,Amite,LA,70422,985-748-3211,TANGIPAHOA,"""Tom"" Tolar",P.O. Box 472,,Kentwood,LA,70444,5,985-229-5296,W,M,R,245,1/9/2012,1/14/2008,Mr. Tolar +Councilman ,District 2 ,P. O. Box 215,,Amite,LA,70422,985-748-3211,TANGIPAHOA,Tennis Rick,64357 Hwy. 1054,,Roseland,LA,70456,5,985-748-6330,W,M,D,245,1/9/2012,1/14/2008,Mr. Rick +Councilman ,District 3 ,P. O. Box 215,,Amite,LA,70422,985-748-3211,TANGIPAHOA,Michael A. Petitto,P.O. Box 613,,Amite,LA,70422,5,985-517-7584,W,M,D,245,1/9/2012,1/14/2008,Mr. Petitto +Councilman ,District 4 ,P. O. Box 215,,Amite,LA,70422,985-748-3211,TANGIPAHOA,Carlo S. Bruno,P.O. Box 1274,,Independence,LA,70443,5,985-878-3124,W,M,D,245,1/9/2012,1/14/2008,Mr. Bruno +Councilman ,District 5 ,P. O. Box 215,,Amite,LA,70422,985-748-3211,TANGIPAHOA,"H. G. ""Buddy"" Ridgel",17037 Ridgel Rd.,,Tickfaw,LA,70466,5,985-542-4065,W,M,D,245,1/9/2012,1/14/2008,Mr. Ridgel +Councilman ,District 6 ,P. O. Box 215,,Amite,LA,70422,985-748-3211,TANGIPAHOA,"""Ronnie"" Bankston",43229 Sweet Pea Ln.,,Hammond,LA,70401,5,225-567-3976,W,M,D,245,1/9/2012,1/14/2008,Mr. Bankston +Councilman ,District 7 ,P. O. Box 215,,Amite,LA,70422,985-748-3211,TANGIPAHOA,Lionell Wells,1700 S. Mooney Ave.,,Hammond,LA,70403,5,985-542-1499,B,M,D,245,1/9/2012,1/14/2008,Mr. Wells +Councilman ,District 8 ,P. O. Box 215,,Amite,LA,70422,985-748-3211,TANGIPAHOA,Carlos D. Notariano,43327 Olive Branch Rd.,,Hammond,LA,70403,5,985-419-2333,W,M,D,245,1/9/2012,1/14/2008,Mr. Notariano +Councilman ,District 9 ,P. O. Box 215,,Amite,LA,70422,985-748-3211,TANGIPAHOA,"""Debbie"" Edwards",39108 Keaghey Rd.,,Ponchatoula,LA,70454,5,985-386-2125,W,F,D,245,1/9/2012,1/14/2008,Ms. Edwards +Councilman ,District 10 ,P. O. Box 215,,Amite,LA,70422,985-748-3211,TANGIPAHOA,"""Bobby"" Cortez",42102 Jefferson Dr.,,Hammond,LA,70403,5,985-969-6010,W,M,R,245,1/9/2012,1/14/2008,Mr. Cortez +City Judge ,"City Court, City of Hammond ",303 E. Thomas St.,,Hammond,LA,70401,985-542-3465,TANGIPAHOA,Grace Bennett Gasaway,P.O. Box 1224,,Hammond,LA,70404,5,985-542-6316,W,F,D,250,12/31/2014,1/1/2009,Judge Gasaway +City Marshal ,"City Court, City of Hammond ",303 E. Thomas St.,,Hammond,LA,70401,985-542-3445,TANGIPAHOA,"Victor Gordon Anderson, Jr.",507 E. Thomas St.,,Hammond,LA,70401,5,985-345-9577,W,M,D,250,12/31/2014,1/1/2009,Marshal Anderson +Member of School Board ,District A ,59656 Puleston Rd.,,Amite,LA,70422,985-748-7153,TANGIPAHOA,Ann A. Smith,P.O. Box 123,,Kentwood,LA,70444,5,985-229-6265,B,F,D,255,12/31/2010,1/1/2007,Ms. Smith +Member of School Board ,District B ,59656 Puleston Rd.,,Amite,LA,70422,985-748-7153,TANGIPAHOA,Robert E. Potts,19255 Potts Rd.,,Kentwood,LA,70444,5,985-229-8033,W,M,D,255,12/31/2010,1/1/2007,Mr. Potts +Member of School Board ,District C ,59656 Puleston Rd.,,Amite,LA,70422,985-748-7153,TANGIPAHOA,"Leonard ""Tank"" Genco, Jr.",P.O. Box 1753,,Independence,LA,70443,5,985-878-3233,W,M,D,255,12/31/2010,1/1/2007,Mr. Genco +Member of School Board ,District D ,59656 Puleston Rd.,,Amite,LA,70422,985-748-7153,TANGIPAHOA,"""Al"" Link",P.O. Box 354,,Natalbany,LA,70451,5,985-345-4638,W,M,D,255,12/31/2010,1/1/2007,Mr. Link +Member of School Board ,District E ,59656 Puleston Rd.,,Amite,LA,70422,985-748-7153,TANGIPAHOA,"""Danny"" Ridgel",49196 Louis Ln.,,Tickfaw,LA,70466,5,985-542-2864,W,M,D,255,12/31/2010,4/14/2009,Mr. Ridgel +Member of School Board ,District F ,59656 Puleston Rd.,,Amite,LA,70422,985-748-7153,TANGIPAHOA,Sonya Jenkins Traylor,10186 Beckendorf Rd.,,Hammond,LA,70403,5,225-294-5316,W,F,R,255,12/31/2010,4/14/2009,Ms. Traylor +Member of School Board ,District G ,59656 Puleston Rd.,,Amite,LA,70422,985-748-7153,TANGIPAHOA,Eric Dangerfield,P.O. Box 562,,Hammond,LA,70403,5,985-345-1656,B,M,D,255,12/31/2010,1/1/2007,Mr. Dangerfield +Member of School Board ,District H ,59656 Puleston Rd.,,Amite,LA,70422,985-748-7153,TANGIPAHOA,Sandra Bailey-Simmons,49366 Ravenwood Dr.,,Loranger,LA,70446,5,985-345-4562,W,F,R,255,12/31/2010,1/1/2007,Ms. Simmons +Member of School Board ,District I ,59656 Puleston Rd.,,Amite,LA,70422,985-748-7153,TANGIPAHOA,Rose Quave Dominguez,39631 W. Sam Arnold,,Ponchatoula,LA,70454,5,985-845-4912,W,F,R,255,12/31/2010,1/1/2007,Ms. Dominguez +Justice of the Peace ,Justice of the Peace Ward 1 ,612 Ave. G,,Kentwwood,LA,70444,985-229-8945,TANGIPAHOA,David Sellers,612 Ave. G,,Kentwood,LA,70444,5,985-229-8945,W,M,D,265,12/31/2014,1/1/2009,Mr. Sellars +Justice of the Peace ,Justice of the Peace Ward 2 ,19413 La. Hwy. 38 E.,,Kentwood,LA,70444,985-229-2514,TANGIPAHOA,Kathy Dale Forrest,19413 Hwy. 38,,Kentwood,LA,70444,5,985-229-2514,W,F,R,265,12/31/2014,1/1/2009,Ms. Forrest +Justice of the Peace ,Justice of the Peace Ward 3 ,210 North Bay St.,,Amite,LA,70422,,TANGIPAHOA,Tonya P. Mabry,P.O. Box744,,Amite,LA,70422,5,985-747-0407,B,F,D,265,12/31/2014,1/1/2009,Ms. Mabry +Justice of the Peace ,Justice of the Peace Ward 4 ,17432 La. Hwy. 10,,Kentwood,LA,70444,985-748-7214,TANGIPAHOA,Edwina V. Ballard,17432 Hwy. 10,,Kentwood,LA,70444,5,985-748-7214,W,F,D,265,12/31/2014,1/1/2009,Ms. Ballard +Justice of the Peace ,Justice of the Peace Ward 5 ,P.O. Box 395,,Loranger,LA,70446,985-878-3633,TANGIPAHOA,"""Debbie"" Brunett",56044 North Cooper Rd.,,Loranger,LA,70446,5,985-878-6166,W,F,D,265,12/31/2014,1/1/2009,Ms. Brunett +Justice of the Peace ,Justice of the Peace Ward 6 ,P.O. Box 781,,Tickfaw,LA,70466,985-878-3628,TANGIPAHOA,Terri M. Crosby,P.O. Box 1004,,Natalbany,LA,,0,985-878-3628,W,F,D,265,12/31/2014,1/1/2009,Ms. Crosby +Justice of the Peace ,Justice of the Peace Ward 8 ,23288 Bardwell Rd.,,Ponchatoula,LA,70454,985-542-1732,TANGIPAHOA,,,,,,,0,,,,,265,,, +Constable ,Justice of the Peace Ward 1 ,70342 Kennedy Rd.,,Kentwood,LA,70444,985-229-3334,TANGIPAHOA,Quentin D. Hookfin,202 Avenue D,,Kentwood,LA,70444,5,985-514-2097,B,M,D,267,12/31/2014,1/1/2009,Mr. Hoofkin +Constable ,Justice of the Peace Ward 2 ,20575 Green Farm Rd.,,Kentwood,LA,70444,985-229-4032,TANGIPAHOA,Dickie Blades,70132 Simmons Rd.,,Kentwood,LA,70444,5,985-229-4032,W,M,D,267,12/31/2014,1/1/2009,Mr. Blades +Constable ,Justice of the Peace Ward 3 ,22140 Hwy. 16 East,,Amite,LA,70422,985-748-6327,TANGIPAHOA,"Anthony S. ""Butch"" Robinson",214 Gullett St.,,Amite,LA,70422,5,985-747-0653,B,M,D,267,12/31/2014,1/1/2009,Mr. Robinson +Constable ,Justice of the Peace Ward 4 ,22140 Hwy. 16 E,,Amite,LA,70422,985-748-6327,TANGIPAHOA,Teresa Grace Holden,22140 Hwy. 16,,Amite,LA,70422,5,985-748-6327,W,F,D,267,12/31/2014,1/1/2009,Ms. Holden +Constable ,Justice of the Peace Ward 5 ,18125 School Rd.,,Loranger,LA,70446,985-878-2253,TANGIPAHOA,"Louis ""Buddy"" Easley",18125 School Rd.,,Loranger,LA,70446,5,985-878-2253,W,M,D,267,12/31/2014,1/1/2009,Mr. Easley +Constable ,Justice of the Peace Ward 6 ,P.O. Box 1022,,Independence,LA,,985-878-3045,TANGIPAHOA,"""Joe"" Sinagra",P.O. Box 1022,,Independence,LA,70443,5,985-878-3045,W,M,D,267,12/31/2014,1/1/2009,Mr. Sinagra +Constable ,Justice of the Peace Ward 8 ,P.O. Box 383,,Robert,LA,70455,985-542-8254,TANGIPAHOA,Richard Z. Morse,P.O. Box 383,,Robert,LA,70455,5,985-345-0332,W,M,D,267,12/31/2014,1/1/2009,Mr. Morse +Mayor ,City of Hammond ,P. O. Box 2788,,Hammond,LA,,985-542-3400,TANGIPAHOA,Mayson H. Foster,800 W. Dakota,,Hammond,LA,70401,5,985-345-6339,W,M,R,300,12/31/2010,1/1/2007,Mr. Foster +Mayor ,City of Ponchatoula ,125 W. Hickory St.,,Ponchatoula,LA,,985-386-6484,TANGIPAHOA,"Robert F. ""Bob"" Zabbia",211 N. 7th St.,,Ponchatoula,LA,70454,5,985-386-9892,W,M,D,300,6/30/2012,7/1/2008,Mayor Zabbia +Mayor ,Town of Amite City ,212 E. Oak St.,,Amite,LA,,985-748-8761,TANGIPAHOA,Reginald Goldsby,P. O. Box 734,,Amite,LA,70422,5,985-748-9039,W,M,D,300,12/31/2012,1/1/2009,Mayor Goldsby +Mayor ,Town of Independence ,P. O. Box 35,,Independence,LA,,985-878-4145,TANGIPAHOA,Michael A. Ragusa,P.O. Box 1204,,Independence,LA,70443,5,985-878-3930,W,M,D,300,6/30/2012,7/1/2008,Mayor Ragusa +Mayor ,Town of Kentwood ,308 Ave. G,,Kentwood,LA,,985-229-3451,TANGIPAHOA,Harold J. Smith,P.O. Box 123,,Kentwood,LA,70444,5,985-229-6265,B,M,D,300,12/31/2010,1/1/2007,Ms. Smtih +Mayor ,Town of Roseland ,P. O. Box 302,,Roseland,LA,,985-748-9063,TANGIPAHOA,"Wanda ""Yodie"" McCoy",P.O.Box 511,,Roseland,LA,70456,5,985-748-2768,B,F,D,300,12/31/2012,1/1/2009,Ms. McCoy +Mayor ,Village of Tangipahoa ,P. O. Box 156,,Tangipahoa,LA,,985-229-8300,TANGIPAHOA,Michael Jackson,P.O. Box 473,,Tangipahoa,LA,70465,5,985-514-2013,B,M,D,300,12/31/2012,1/1/2009,Mayor Jackson +Mayor ,Village of Tickfaw ,P. O. Box 249,,Tickfaw,LA,,985-542-9249,TANGIPAHOA,"Anthony ""Tony"" Lamonte",14304 Nuccio Rd.,,Tickfaw,LA,70466,5,985-345-8796,W,M,D,300,12/31/2010,1/1/2007,Mayor Lamonte +Chief of Police ,City of Ponchatoula ,125 W. Hickory St.,,Ponchatoula,LA,70454,985-386-6484,TANGIPAHOA,Bry Layrisson,15 Weldon Circle,,Ponchatoula,LA,70454,5,985-386-6548,W,M,O,305,6/30/2012,7/1/2008,Chief Layrisson +Chief of Police ,Town of Amite City ,212 E. Oak St.,,Amite,LA,70422,985-748-8761,TANGIPAHOA,Jerry Trabona,506 North Ave.,,Amite,LA,70422,5,985-748-8337,W,M,D,305,12/31/2012,1/1/2009,Chief Trabona +Chief of Police ,Town of Independence ,P. O. Box 35,,Independence,LA,70443,985-878-4145,TANGIPAHOA,"Frank Edwards, III",P.O. Box 35,,Independence,LA,70443,5,,,,,305,,1/11/2010,Chief Edwards +Chief of Police ,Town of Kentwood ,308 Ave. G,,Kentwood,LA,70444,985-229-3451,TANGIPAHOA,James R. Rimes,307 Ave. I,,Kentwood,LA,70444,5,985-229-6305,W,M,D,305,12/31/2010,1/1/2007,Mr. Rimes +Chief of Police ,Town of Roseland ,P. O. Box 302,,Roseland,LA,70456,985-748-9063,TANGIPAHOA,"""Donnie"" Hammons",P. O. Box 536,,Roseland,LA,70456,5,985-969-5325,W,M,D,305,12/31/2012,1/1/2009,Chief Hammons +Chief of Police ,Village of Tangipahoa ,P. O. Box 156,,Tangipahoa,LA,70465,985-229-8300,TANGIPAHOA,Richard F. Banks,P. O. Box 131,,Tangipahoa,LA,70456,5,985-229-6136,B,M,D,305,12/31/2012,1/1/2009,Chief Banks +Chief of Police ,Village of Tickfaw ,P. O. Box 249,,Tickfaw,LA,70466,985-542-9249,TANGIPAHOA,Jimmy L. Sparacello,P.O. Box 131,,Tickfaw,LA,70466,5,985-969-5373,W,M,O,305,12/31/2010,1/1/2007,Chief Sparacello +Alderman ,Town of Independence ,P. O. Box 35,,Independence,LA,70443,985-878-4145,TANGIPAHOA,"Parnell ""Butch"" Baham",135 Charles Sinagra,,Independence,LA,70443,5,985-878-9356,W,M,D,310,6/30/2012,7/1/2008,Mr. Baham +Alderman ,Town of Independence ,P. O. Box 35,,Independence,LA,70443,985-878-4145,TANGIPAHOA,Larry Cardaronella,P.O. Box 332,,Independence,LA,70443,5,985-878-1905,W,M,D,310,6/30/2012,7/1/2008,Mr. Cardaronella +Alderman ,Town of Independence ,P. O. Box 35,,Independence,LA,70443,985-878-4145,TANGIPAHOA,"Louis ""Nick"" Joseph",P.O. Box 621,,Independence,LA,70443,5,985-878-4711,B,M,D,310,6/30/2012,7/1/2008,Mr. Joseph +Alderman ,Town of Independence ,P. O. Box 35,,Independence,LA,70443,985-878-4145,TANGIPAHOA,"""Mike"" Muscarello",P.O. Box 1021,,Independence,LA,70443,5,985-878-4760,W,M,D,310,6/30/2012,4/14/2009,Mr. Muscarello +Alderman ,Town of Independence ,P. O. Box 35,,Independence,LA,70443,985-878-4145,TANGIPAHOA,Richard Navarra,P.O. Box 857,,Independence,LA,70443,5,985-878-8879,W,M,D,310,6/30/2012,7/1/2008,Mr. Navarra +Alderman ,Town of Roseland ,P. O. Box 302,,Roseland,LA,70456,985-748-9063,TANGIPAHOA,Yvette Brooks,P.O. Box 559,,Roseland,LA,70454,5,985-747-9969,B,F,D,310,12/31/2012,1/1/2009,Ms. Brooks +Alderman ,Town of Roseland ,P. O. Box 302,,Roseland,LA,70456,985-748-9063,TANGIPAHOA,Jerrol W. Jones,P. O. Box 494,,Roseland,LA,70456,5,985-747-1988,B,M,D,310,12/31/2012,1/1/2009,Mr. Jones +Alderman ,Town of Roseland ,P. O. Box 302,,Roseland,LA,70456,985-748-9063,TANGIPAHOA,Van L. Showers,P. O. Box 317,,Roseland,LA,70456,5,985-517-4043,B,M,D,310,12/31/2012,1/1/2009,Mr. Showers +Alderman ,Town of Roseland ,P. O. Box 302,,Roseland,LA,70456,985-748-9063,TANGIPAHOA,Sandra W. Turner,P. O. Box 89,,Roseland,LA,70456,5,985-748-9589,B,F,D,310,12/31/2012,1/1/2009,Ms. Turner +Alderman ,Town of Roseland ,P. O. Box 302,,Roseland,LA,70456,985-748-9063,TANGIPAHOA,Ruthie L. Vernon,12184 Buchanan Ln.,,Roseland,LA,70456,5,985-748-3445,B,F,D,310,12/31/2012,1/1/2009,Ms. Vernon +Alderman ,Village of Tangipahoa ,P. O. Box 156,,Tangipahoa,LA,70465,985-229-8300,TANGIPAHOA,Mona Mary Downs,P.O. Box 14,,Tangipahoa,LA,70465,5,985-229-4111,B,F,R,310,12/31/2012,1/1/2009,Ms. Downs +Alderman ,Village of Tangipahoa ,P. O. Box 156,,Tangipahoa,LA,70465,985-229-8300,TANGIPAHOA,Dawn Gray,P. O. Box 410,,Tangipahoa,LA,70465,5,985-229-9118,B,F,D,310,12/31/2012,1/1/2009,Mr. Gray +Alderman ,Village of Tangipahoa ,P. O. Box 156,,Tangipahoa,LA,70465,985-229-8300,TANGIPAHOA,Eddie Myers,P.O. Box 28,,Tangipahoa,LA,70465,5,985-229-2692,B,M,D,310,12/31/2012,1/1/2009,Mr. Myers +Council Member ,"District 1, City of Hammond ",P. O. Box 2788,,Hammond,LA,70404,985-542-3406,TANGIPAHOA,Johnny E. Blount,102 Mitchell Dr.,,Hammond,LA,70401,5,985-543-0371,B,M,D,310,12/31/2010,1/1/2007,Mr. Blount +Council Member ,"District 2, City of Hammond ",P. O. Box 2788,,Hammond,LA,70404,985-542-3406,TANGIPAHOA,Jason Hood,609 N. General Pershing,,Hammond,LA,70401,5,985-345-0760,W,M,R,310,12/31/2010,1/1/2007,Mr. Hood +Council Member ,"District 3, City of Hammond ",P. O. Box 2788,,Hammond,LA,70404,985-542-3406,TANGIPAHOA,Willie Grant Jackson,122 Carolina St.,,Hammond,LA,70401,5,985-345-5564,B,M,D,310,12/31/2010,1/1/2007,Mr. Jackson +Council Member ,"District 4, City of Hammond ",P. O. Box 2788,,Hammond,LA,70404,985-542-3406,TANGIPAHOA,"""Kathy"" Montecino",700 Delmar Blvd.,,Hammond,LA,70403,5,985-419-0211,W,F,R,310,12/31/2010,1/1/2007,Ms. Montecino +Council Member ,"District 5, City of Hammond ",P. O. Box 2788,,Hammond,LA,70404,985-542-3406,TANGIPAHOA,Mike Williams,6 Audubon,,Hammond,LA,70401,5,985-345-7882,W,M,R,310,12/31/2010,1/1/2007,Mr. Williams +Council Member ,"District 1, Town of Amite City ",212 E. Oak St.,,Amite,LA,70422,985-748-8761,TANGIPAHOA,"Walter Daniels, III",427 E. Cherry St.,,Amite,LA,70422,5,985-517-9401,B,M,D,310,12/31/2012,1/1/2009,Mr. Daniels +Council Member ,"District 2, Town of Amite City ",212 E. Oak St.,,Amite,LA,70422,985-748-8761,TANGIPAHOA,Jonathan Foster,602 W. Palmetto St.,,Amite,LA,70422,5,985-969-5660,B,M,D,310,12/31/2012,1/1/2009,Mr. Foster +Council Member ,"District 3, Town of Amite City ",212 E. Oak St.,,Amite,LA,70422,985-748-8761,TANGIPAHOA,Mark D. Vining,301 E. Chestnut St.,,Amite,LA,70422,5,985-748-8524,W,M,D,310,12/31/2012,1/1/2009,Mr. Vining +Council Member ,"District 4, Town of Amite City ",212 E. Oak St.,,Amite,LA,70422,985-748-8761,TANGIPAHOA,"""Neil"" Currier",202A Daniel St.,,Amite,LA,70422,5,985-747-1680,W,M,R,310,12/31/2012,1/1/2009,Mr. Currier +Council Member ,"District 5, Town of Amite City ",212 E. Oak St.,,Amite,LA,70422,985-748-8761,TANGIPAHOA,"""Rose"" Sumrall",P.O. Box 186,,Amite,LA,70422,5,985-748-7526,W,F,R,310,12/31/2012,1/1/2009,Ms. Sumrall +Council Member ,"District A, City of Ponchatoula ",125 Hickory St.,,Pontchatoula,LA,70454,985-386-6484,TANGIPAHOA,Braville J. LeBlanc,132 Braville St.,,Ponchatoula,LA,70454,5,985-370-0938,W,M,D,310,6/30/2012,7/1/2008,Mr. LeBlanc +Council Member ,"District B, City of Ponchatoula ",125 W. Hickory St.,,Ponchatoula,LA,70454,985-386-6484,TANGIPAHOA,"Connie Dotey-Lewis, ",620 E. Oak St.,,Ponchatoula,LA,70454,5,985-386-9070,,,,310,,11/24/2009, +Council Member ,"District C, City of Ponchatoula ",125 W. Hickory St.,,Ponchatoula,LA,70454,985-386-6484,TANGIPAHOA,Jeannemarie Pierson,301 S. 8th St.,,Ponchatoula,LA,70454,5,985-386-6461,W,F,R,310,6/30/2012,7/1/2008,Ms. Pierson +Council Member ,"District D, City of Ponchatoula ",125 W. Hickory St.,,Ponchatoula,LA,70454,985-386-6484,TANGIPAHOA,"Carla Heisser, ",125 W. Hickory St.,,Pontchatoula,LA,70454,5,,,,,310,,2/3/2010,Ms Heisser +Council Member ,"District E, City of Ponchatoula ",125 W. Hickory St.,,Ponchatoula,LA,70454,385-386-6484,TANGIPAHOA,Vergil Sandifer,485 E. Cypress St.,,Ponchatoula,LA,70454,5,985-386-8373,W,M,D,310,6/30/2012,7/1/2008,Mr. Sandifer +Council Member ,Town of Kentwood ,308 Ave. G,,Kentwood,LA,70444,985-229-3451,TANGIPAHOA,Myrtle Cook,1335 Third St.,,Kentwood,LA,70444,5,985-229-8145,B,F,D,310,12/31/2010,1/1/2007,Ms. Cook +Council Member ,Town of Kentwood ,308 Ave. G,,Kentwood,LA,70444,985-229-3451,TANGIPAHOA,Carlton S. Faller,309 Ave. A,,Kentwood,LA,70444,5,985-229-3681,W,M,D,310,12/31/2010,1/1/2007,Mr. Faller +Council Member ,Town of Kentwood ,308 Ave. G,,Kentwood,LA,70444,985-229-3451,TANGIPAHOA,Irma Thompson Gordon,P.O. Box 454,,Kentwood,LA,70444,5,985-229-4959,B,F,D,310,12/31/2010,1/1/2007,Ms. Gordon +Council Member ,Town of Kentwood ,308 Ave. G,,Kentwood,LA,70444,985-229-3451,TANGIPAHOA,"Michael ""Mike"" Hall",P.O. Box 643,,Kentwood,LA,70444,5,985-229-1929,B,M,D,310,12/31/2010,1/1/2007,Mr. Hall +Council Member ,Town of Kentwood ,308 Ave. G,,Kentwood,LA,70444,985-229-3451,TANGIPAHOA,"""Jimbo"" Slaven",707 11th St,,Kentwood,LA,70444,5,985-229-5206,W,M,O,310,12/31/2010,1/1/2007,Mr. Slaven +Council Member ,Village of Tickfaw ,P. O. Box 249,,Tickfaw,LA,70466,985-542-9249,TANGIPAHOA,Toni Jean Abene Basso,P.O. Box 576,,Tickfaw,LA,70466,5,985-345-6509,W,F,D,310,12/31/2010,1/1/2007,Ms. Basso +Council Member ,Village of Tickfaw ,P. O. Box 249,,Tickfaw,LA,70466,985-542-9249,TANGIPAHOA,"""Ron"" Tanis",14087 Manina Ln.,,Tickfaw,LA,70466,5,985-542-4781,W,M,R,310,12/31/2010,1/1/2007,Mr. Tanis +Council Member ,Village of Tickfaw ,P. O. Box 249,,Tickfaw,LA,70466,985-542-9249,TANGIPAHOA,"""Preston"" Watts",P.O. Box 221,,Tickfaw,LA,70466,5,985-542-4625,W,M,O,310,12/31/2010,1/1/2007,Mr. Watts +DPEC Member ,at Large ,,,,LA,,,TENSAS,Leslie Lee,103 Washington St.,,St. Joseph,LA,71366,5,,,,,54,,7/24/2008, +DPEC Member ,District 1 ,,,,LA,,,TENSAS,,,,,,,0,,,,,56,,, +DPEC Member ,District 2 ,,,,LA,,,TENSAS,,,,,,,0,,,,,56,,, +DPEC Member ,District 3 ,,,,LA,,,TENSAS,,,,,,,0,,,,,56,,, +DPEC Member ,District 4 ,,,,LA,,,TENSAS,,,,,,,0,,,,,56,,, +DPEC Member ,District 5 ,,,,LA,,,TENSAS,,,,,,,0,,,,,56,,, +DPEC Member ,District 6 ,,,,LA,,,TENSAS,,,,,,,0,,,,,56,,, +DPEC Member ,District 7 ,,,,LA,,,TENSAS,,,,,,,0,,,,,56,,, +RPEC Member ,at Large ,,,,LA,,,TENSAS,,,,,,,0,,,,,64,,, +RPEC Member ,District 1 ,,,,LA,,,TENSAS,,,,,,,0,,,,,66,,, +RPEC Member ,District 2 ,,,,LA,,,TENSAS,,,,,,,0,,,,,66,,, +RPEC Member ,District 3 ,,,,LA,,,TENSAS,,,,,,,0,,,,,66,,, +RPEC Member ,District 4 ,,,,LA,,,TENSAS,,,,,,,0,,,,,66,,, +RPEC Member ,District 5 ,,,,LA,,,TENSAS,,,,,,,0,,,,,66,,, +RPEC Member ,District 6 ,,,,LA,,,TENSAS,,,,,,,0,,,,,66,,, +RPEC Member ,District 7 ,,,,LA,,,TENSAS,,,,,,,0,,,,,66,,, +Sheriff ,,P. O. Box 138,,St. Joseph,LA,71366,318-766-3961,TENSAS,Rickey A. Jones,P.O. Box 138,,st. Joseph,LA,71366,5,318-766-4500,W,M,D,225,6/30/2012,7/1/2008,Sheriff Jones +Clerk of Court ,,P. O. Box 78,,St. Joseph,LA,71366,318-766-3921,TENSAS,Ernest Sikes,P.O. Box 78,,St. Joseph,LA,71366,5,318-766-0080,W,M,D,230,6/30/2012,7/1/2008,Mr. Sikes +Assessor ,,P.O. Box 197,,St.Joseph,LA,71366,318-766-3501,TENSAS,Irby S. Gamble,P.O. Box 481,,St. Joseph,LA,71366,5,318-766-1540,W,M,D,235,12/31/2012,1/1/2009,Mr. Gamble +Coroner ,,P.O. Box 34,,St. Joseph,LA,71366,318-766-9443,TENSAS,Keith Dewayne Butler,P.O. Box 34,,St. Joseph,LA,71366,5,318-766-9443,W,M,R,240,3/25/2012,3/24/2008,Mr. Butler +Police Juror,District 1,P. O. Box 6168,,St. Joseph,LA,71366,318-766-3542,TENSAS,"Emmett L. Adams, Jr.",2727 Hwy. 575,,Newellton,LA,71357,5,318-467-5994,W,M,R,245,1/8/2012,1/14/2008,Mr. Adams +Police Juror ,District 2 ,P. O. Box 6168,,St. Joseph,LA,71366-6168,318-766-3542,TENSAS,Danny Clark,P.O. Box 252,,Newellton,LA,71357,5,318-341-1683,B,M,D,245,1/8/2012,1/14/2008,Mr. Clark +Police Juror ,District 3 ,P. O. Box 6168,,St. Joseph,LA,71366-6168,318-766-3542,TENSAS,Jane Netterville,1264 Hwy. 606,,St. Joseph,LA,71366,5,318-766-4585,W,F,D,245,1/8/2012,1/14/2008,Mr. Netterville +Police Juror ,District 4 ,P. O. Box 6168,,St. Joseph,LA,71366-6168,318-766-3542,TENSAS,William Trevillion,813 Trevillion Rd.,,Waterproof,LA,71375,5,318-749-3701,W,M,D,245,1/8/2012,1/14/2008,Mr. Trevillion +Police Juror ,District 5 ,P. O. Box 6168,,St. Joseph,LA,71366-6168,318-766-3542,TENSAS,"""Rod"" Webb",P.O. Box 516,,St. Joseph,LA,71366,5,318-766-4390,B,M,D,245,1/8/2012,1/14/2008,Mr. Webb +Police Juror ,District 6 ,P. O. Box 6168,,St. Joseph,LA,71366-6168,318-766-3542,TENSAS,"Carl Frank Olds, Sr.",120 Buckshot Rd.,,Waterproof,LA,71375,5,318-749-5426,W,M,D,245,1/8/2012,1/14/2008,Mr. Olds +Police Juror ,District 7 ,P. O. Box 6168,,St. Joseph,LA,71366-6168,318-766-3542,TENSAS,"Woodrow W. Wiley, Jr.",P.O. Box 33,,Waterproof,LA,71375,5,318-749-5449,B,M,D,245,1/8/2012,1/14/2008,Mr. Wiley +Member of School Board ,District 1 ,P. O. Box 318,,St. Joseph,LA,71366,318-766-3269,TENSAS,Larry W. Foster,P.O. Box 713,,Newellton,LA,71357,5,318-467-5255,W,,D,255,12/31/2010,1/1/2007,Mr. Foster +Member of School Board ,District 2 ,P. O. Box 318,,St. Joseph,LA,71366,318-766-3269,TENSAS,"James E. Kelly, Sr.",P.O. Box 403,,Newellton,LA,71357,5,318-467-5922,,,D,255,12/31/2010,1/1/2007,Mr. Kelly +Member of School Board ,District 3 ,P. O. Box 318,,St. Joseph,LA,71366,318-766-3269,TENSAS,Taylor Grayson,1592 Hwy. 606,,St. Joseph,LA,71366,5,318-766-0198,W,M,D,255,12/31/2010,1/1/2007,Mr. Grayson +Member of School Board ,District 4 ,P. O. Box 318,,St. Joseph,LA,71366,318-766-3269,TENSAS,Annice Miller,P.O. Box 53,,St. Joseph,LA,71366,5,318-766-3720,W,F,D,255,12/31/2010,1/1/2007,Ms. Miller +Member of School Board ,District 5 ,P. O. Box 318,,St. Joseph,LA,71366,318-766-3269,TENSAS,Esaw Turner,P.O. Box 383,,St. Joseph,LA,71366,5,318-166-3803,B,,D,255,12/31/2010,1/1/2007,Mr. Turner +Member of School Board ,District 6 ,P. O. Box 318,,St. Joseph,LA,71366,318-766-3269,TENSAS,Steven D. Vinson,960 Hwy. 568,,St. Joseph,LA,71366,5,318-766-3972,W,M,D,255,12/31/2010,1/1/2007,Mr. Vinson +Member of School Board ,District 7 ,P. O. Box 318,,St. Joseph,LA,71366,318-766-3269,TENSAS,Annie M. Watson,P.O. Box 318,,St. Joseph,LA,71375,5,318-766-3269,,,D,255,12/31/2010,1/1/2007,Ms. Watson +Justice of the Peace ,Justice of the Peace Ward 1 ,P.O. Box 147,,Newellton,LA,71357,318-467-5575,TENSAS,Glen McCarty,P. O. Box 147,,Newellton,LA,71357,5,318-467-5222,W,M,D,265,12/31/2014,1/1/2009,Mr. McCarty +Justice of the Peace ,Justice of the Peace Ward 2 ,P.O. Box 621,,St. Joseph,LA,71366,318-766-1421,TENSAS,Thelma A. Bradford,P.O. Box 127,,St. Joseph,LA,71366,5,318-766-4420,B,F,D,265,12/31/2014,1/1/2009,Ms. Bradford +Justice of the Peace ,Justice of the Peace Ward 3 ,P.O. Box 155,,Waterproof,LA,71375,318-749-5435,TENSAS,Arthur L. Johnson,P.O. Box 155,,Waterproof,LA,71375,5,318-749-5435,B,M,D,265,12/31/2014,1/1/2009,Mr. Johnson +Constable ,Justice of the Peace Ward 1 ,P.O. Box 273,,Newellton,LA,71357,318-467-2695,TENSAS,Jack W. McMillian,P.O. Box 193,,Newellton,LA,71357,5,318-467-5169,B,M,D,267,12/31/2014,1/1/2009,Mr. McMillian +Constable ,Justice of the Peace Ward 2 ,P.O. Box 191,,St. Joseph,LA,71366,318-766-4643,TENSAS,Ernest L. Hestle,P.O. Box 191,,St. Joseph,LA,71366,5,318-766-4643,W,M,D,267,12/31/2014,1/1/2009,Mr. Hestle +Constable ,Justice of the Peace Ward 3 ,P.O. Box 33,,Waterproof,LA,71375,318-749-5287,TENSAS,"""Doug"" Miller",738 Miller Rd.,,Waterproof,LA,71375,5,318-749-3327,W,M,D,267,12/31/2014,1/1/2009,Mr. Miller +Mayor ,Town of Newellton ,P. O. Box 477,,Newellton,LA,,318-467-5050,TENSAS,Alex Davis,P.O. Box 774,,,LA,71357,5,318-467-9702,B,M,D,300,12/31/2012,1/1/2009,Mr. Davis +Mayor ,Town of St. Joseph ,P. O. Box 217,,St. Joseph,LA,,318-766-3713,TENSAS,Edward L. Brown,P. O. Box 433,,St. Joseph,LA,71366,5,318-766-4923,B,M,D,300,12/31/2012,1/1/2009,Mayor Brown +Mayor ,Town of Waterproof ,P. O. Box 248,,Waterproof,LA,,318-749-5233,TENSAS,Bobby D. Higginbotham,"218 ""A"" St.",,Waterproof,LA,71375,5,318-749-3610,B,M,D,300,12/31/2010,1/1/2007,Mayor Higginbotham +Chief of Police ,Town of Newellton ,P. O. Box 477,,Newellton,LA,71357,318-467-5050,TENSAS,Johnny Gales,P.O. Box 1084,,Newellton,LA,71357,5,318-467-9600,B,M,D,305,12/31/2012,1/1/2009,Mr. Gales +Alderman ,"District 1, Town of Newellton ",P. O. Box 477,,Newellton,LA,71357,318-467-5050,TENSAS,Timothy Turner,P.O. Box 283,,Newellton,LA,71357,5,318-434-0163,B,M,D,310,12/31/2012,1/1/2009,Mr. Turner +Alderman ,"District 2, Town of Newellton ",P. O. Box 477,,Newellton,LA,71357,318-467-5050,TENSAS,Edwin Britt,P.O. Box 398,,Newellton,LA,71357,5,318-467-5911,W,M,R,310,12/31/2012,1/1/2009,Mr. Britt +Alderman ,"District 3, Town of Newellton ",P. O. Box 477,,Newellton,LA,71357,318-467-5050,TENSAS,Billy Mitchell,P. O. Box 632,,Newellton,LA,71357,5,318-467-5083,W,M,D,310,12/31/2012,1/1/2009,Mr. Mitchell +Alderman ,"District 4, Town of Newellton ",P. O. Box 477,,Newellton,LA,71357,318-467-5050,TENSAS,Mattie Sampson,P. O. Box 395,,Newellton,LA,71357,5,318-467-2310,B,F,D,310,12/31/2012,1/1/2009,Ms. Sampson +Alderman ,"District 5, Town of Newellton ",P. O. Box 477,,Newellton,LA,71357,318-467-5050,TENSAS,Carroll Fuller,P. O. Box 303,,Newellton,LA,71357,5,318-467-5651,W,M,R,310,12/31/2012,1/1/2009,Mr. Fuller +Alderman ,"District A, Town of St. Joseph ",P. O. Box 217,,St. Joseph,LA,71366,318-766-3713,TENSAS,"Albert ""Buddy"" Tindell",P. O. Box 164,,St. Joseph,LA,71366,5,318-766-4443,W,M,D,310,12/31/2012,1/1/2009,Mr. Tindell +Alderman ,"District B, Town of St. Joseph ",P. O. Box 217,,St. Joseph,LA,71366,318-766-3713,TENSAS,Ed Dandridge,115 2nd St.,,,LA,71366,5,318-766-1002,W,M,D,310,12/31/2012,1/1/2009,Mr. Dandridge +Alderman ,"District C, Town of St. Joseph ",P. O. Box 217,,St. Joseph,LA,71366,318-766-3713,TENSAS,"Jimmy S. Clark, Sr.",663 Third St.,,St. Joseph,LA,71366,5,318-766-3324,B,M,D,310,12/31/2012,1/1/2009,Mr. clark +Alderman ,"District D, Town of St. Joseph ",P. O. Box 217,,St. Joseph,LA,71366,318-766-3713,TENSAS,Theodore Jackson,P. O. Box 701,,St. Joseph,LA,71366,5,318-766-4614,B,M,D,310,12/31/2012,1/1/2009,Mr. Jackson +Alderman ,"District E, Town of St. Joseph ",P. O. Box 217,,St. Joseph,LA,71366,318-766-3713,TENSAS,Evelyn Guy,P. O. Box 730,,St. Joseph,LA,71366,5,318-766-3857,B,F,D,310,12/31/2012,1/1/2009,Ms. Guy +Alderman ,Town of Waterproof ,P. O. Box 248,,Waterproof,LA,71375,318-749-5233,TENSAS,Edna J. Cooper,955 Kentucky Lane,,Waterproof,LA,71375,5,318-749-3828,,,D,310,12/31/2010,1/1/2007,Ms. Cooper +Alderman ,Town of Waterproof ,P. O. Box 248,,Waterproof,LA,71375,318-749-5233,TENSAS,Elizabeth Cooper,P.O. Box 69,,Waterproof,LA,71375,5,318-749-5810,B,F,D,310,12/31/2010,1/1/2007,Ms. Cooper +Alderman ,Town of Waterproof ,P. O. Box 248,,Waterproof,LA,71375,318-749-5233,TENSAS,George Taylor,P.O. Box 351,,Waterproof,LA,71375,5,318-749-9533,B,M,D,310,12/31/2010,1/1/2007,Mr. Taylor +Alderman ,Town of Waterproof ,P. O. Box 248,,Waterproof,LA,71375,318-749-5233,TENSAS,"Lionel Travers, Jr.",P.O. Box 132,,Waterproof,LA,71375,5,318-749-3915,B,M,D,310,12/31/2010,1/1/2007,Mr. Travers +DPEC Member ,at Large ,,,,LA,,,TERREBONNE,"""S. P."" LaRussa",208 Glenhill Ln.,,Houma,LA,70363-3813,10,985-876-6161,W,M,D,54,2/20/2012,2/20/2008,Mr. LaRussa +DPEC Member ,District 1 ,,,,LA,,,TERREBONNE,,,,,,,0,,,,,56,,, +DPEC Member ,District 2 ,,,,LA,,,TERREBONNE,,,,,,,0,,,,,56,,, +DPEC Member ,District 3 ,,,,LA,,,TERREBONNE,,,,,,,0,,,,,56,,, +DPEC Member ,District 4 ,,,,LA,,,TERREBONNE,,,,,,,0,,,,,56,,, +DPEC Member ,District 5 ,,,,LA,,,TERREBONNE,,,,,,,0,,,,,56,,, +DPEC Member ,District 6 ,,,,LA,,,TERREBONNE,,,,,,,0,,,,,56,,, +DPEC Member ,District 7 ,,,,LA,,,TERREBONNE,,,,,,,0,,,,,56,,, +DPEC Member ,District 8 ,,,,LA,,,TERREBONNE,,,,,,,0,,,,,56,,, +DPEC Member ,District 9 ,,,,LA,,,TERREBONNE,,,,,,,0,,,,,56,,, +RPEC Member ,at Large ,,,,LA,,,TERREBONNE,Dale Norred,1434 Savanne Rd.,,Houma,LA,70360-8902,10,985-876-2400,W,F,R,64,2/20/2012,2/20/2008,Mr. Norred +RPEC Member ,District 1 ,,,,LA,,,TERREBONNE,,,,,,,0,,,,,66,,, +RPEC Member ,District 2 ,,,,LA,,,TERREBONNE,,,,,,,0,,,,,66,,, +RPEC Member ,District 3 ,,,,LA,,,TERREBONNE,June S. Williams,106 Kenney St.,,Houma,LA,70364,5,985-209-8381,W,F,R,66,2/20/2012,2/20/2008,Ms. Williams +RPEC Member ,District 4 ,,,,LA,,,TERREBONNE,,,,,,,0,,,,,66,,, +RPEC Member ,District 5 ,,,,LA,,,TERREBONNE,,,,,,,0,,,,,66,,, +RPEC Member ,District 6 ,,,,LA,,,TERREBONNE,,,,,,,0,,,,,66,,, +RPEC Member ,District 7 ,,,,LA,,,TERREBONNE,Barbara Cenac,3650 Southdown Mandalay Rd.,,Houma,LA,70360,5,985-876-5772,W,F,R,66,2/20/2012,2/20/2008,Ms. Cenac +RPEC Member ,District 8 ,,,,LA,,,TERREBONNE,,,,,,,0,,,,,66,,, +RPEC Member ,District 9 ,,,,LA,,,TERREBONNE,,,,,,,0,,,,,66,,, +Sheriff ,,P. O. Box 1670,,Houma,LA,70361,985-876-2500,TERREBONNE,"L. Vernon Bourgeois, Jr.",P.O. Box 1670,,Houma,LA,70361,5,985-876-2428,W,M,D,225,6/30/2012,7/1/2008,Sheriff Bourgeois +Clerk of Court ,,P. O. Box 1569,,Houma,LA,70361-1569,985-868-5660,TERREBONNE,"I. Robert ""Bobby"" Boudreaux",P.O. Box 1569,,Houma,LA,70361-1569,10,985-872-5093,W,M,D,230,6/30/2012,7/1/2008,Mr. Boudreaux +Assessor ,,P.O. Box 5094,,Houma,LA,70361,385-876-6620,TERREBONNE,Gene P. Bonvillain,354 Robert St.,,Houma,LA,70363-3636,10,985-876-1292,W,M,D,235,12/31/2012,1/1/2009,Mr. Bonvillain +Coroner ,,P.O. Box 252,,Houma,LA,70361,985-873-6440,TERREBONNE,Victor Tedesco,101 Summerfield Dr.,,Houma,LA,70360-6255,10,985-868-1293,W,M,R,240,3/25/2012,3/24/2008,Mr. Tedesco +Parish President ,,P.O. Box 2768,,Houma,LA,,985-873-6519,TERREBONNE,Michel Claudet,P.O. Box 2416,,Houma,LA,70361,5,985-868-4775,W,M,R,243,1/9/2012,1/14/2008,Mr. Claudet +Council Member ,District 1 ,P. O. Box 2768,,Houma,LA,,985-873-6519,TERREBONNE,Alvin Tillman,3635 Friendswood Dr.,,Houma,LA,70363-3852,10,985-853-2086,B,M,D,245,1/9/2012,1/14/2008,Mr. Tillman +Council Member ,District 2 ,P. O. Box 2768,,Houma,LA,70361,985-873-6519,TERREBONNE,Arlanda Williams,343 Polk St.,,Houma,LA,70360-4147,10,985-853-2079,B,F,D,245,1/9/2012,1/14/2008,Ms. Williams +Council Member ,District 3 ,P. O. Box 2768,,Houma,LA,70361,985-873-6519,TERREBONNE,Billy Hebert,302 Richard Dr.,,Houma,LA,70364-2532,10,985-872-4343,W,M,D,245,1/9/2012,1/14/2008,Mr. Hebert +Council Member,District 4,P. O. Box 2768,,Houma,LA,70361,985-873-6519,TERREBONNE,Teri Cavalier,307 Lola St.,,Gray,LA,70359-3017,10,985-879-4521,W,F,,245,1/9/2012,1/14/2008,Ms. Cavalier +Council Member ,District 5 ,P. O. Box 2768,,Houma,LA,70361,985-873-6519,TERREBONNE,John Pizzolatto,103 John St.,,Houma,LA,70360-2720,10,985-872-2962,W,M,R,245,1/9/2012,1/14/2008,Mr. Pizzolatto +Council Member ,District 6 ,P. O. Box 2768,,Houma,LA,70361,985-873-6519,TERREBONNE,Kevin Michael Voisin,101 Angelle Circle,,Houma,LA,70360-3981,10,985-868-5971,W,M,R,245,1/9/2012,12/16/2008,Mr. Voisin +Council Member ,District 7 ,P. O. Box 2768,,Houma,LA,70361,985-873-6519,TERREBONNE,Clayton J. Voisin,P.O. Box 427,,Dulac,LA,70353-0427 ,11,985-223-0253,W,M,D,245,1/9/2012,1/14/2008,Mr. Voisin +Council Member ,District 8 ,P. O. Box 2768,,Houma,LA,70361,985-873-6519,TERREBONNE,"""Joey"" Cehan",216 Hialeah Ave.,,Houma,LA,70363-6933,10,985-873-8705,W,M,D,245,1/9/2012,1/14/2008,Mr. Cehan +Council Member ,District 9 ,P. O. Box 2768,,Houma,LA,70361,985-873-6519,TERREBONNE,"""Pete"" Lambert",861 Hwy. 55,,Montegut,LA,70377-3407,10,985-594-9880,W,M,D,245,1/9/2012,1/14/2008,Mr. Lambert +City Judge ,"City Court, City of Houma ",7887 Main St.,,Houma,LA,70360,985-868-4232,TERREBONNE,Jude Thaddeus Fanguy,8033 Park Ave.,,Houma,LA,70364-3359,10,985-868-0897,W,M,D,250,12/31/2014,1/1/2009,Judge Thaddeus +City Marshal ,"City Court, City of Houma ",7887 Main St.,,Houma,LA,70360,985-868-8914,TERREBONNE,Brian J. LeBlanc,P. O. Box 283,,Chauvin,LA,70344-0283 ,11,985-594-7133,W,M,D,250,12/31/2014,1/1/2009,Marshal LeBlanc +Member of School Board ,District 1 ,P. O. Box 5097,,Houma,LA,70361,985-876-7400,TERREBONNE,"Roosevelt ""Rosey"" Thomas",P.O. Box 10094,,Houma,LA,70363-5240,10,985-876-7612,B,M,D,255,12/31/2010,1/1/2007,Mr. Thomas +Member of School Board ,District 2 ,P.O. Box 5097,,Houma,LA,70361,985-876-7400,TERREBONNE,"Gregory ""Dut"" Harding",215 Prince Collins St.,,Houma,LA,70364-3057,10,985-876-0393,B,M,D,255,12/31/2010,1/1/2007,Mr. Harding +Member of School Board ,District 3 ,P.O. Box 5097,,Houma,LA,70361,985-876-7400,TERREBONNE,"Richard ""Dicky"" Jackson",607 Funderburk Ave.,,Houma,LA,70364-1822,10,985-868-1657,W,M,D,255,12/31/2010,1/1/2007,Mr. Jackson +Member of School Board ,District 4 ,P.O. Box 5097,,Houma,LA,70361,985-876-7400,TERREBONNE,Rickie Pitre,214 Bayou Gardens Dr.,,Houma,LA,70364-1441,10,985-879-1879,W,M,D,255,12/31/2010,1/1/2007,Mr. Pitre +Member of School Board ,District 5 ,P.O. Box 5097,,Houma,LA,70361,985-876-7400,TERREBONNE,Clark J. Bonvillain,8608 Park Ave.,,Houma,LA,70363-3771,10,985-876-0712,W,M,D,255,12/31/2010,1/1/2007,Mr. Bonvillain +Member of School Board ,District 6 ,P.O. Box 5097,,Houma,LA,70361,985-876-7400,TERREBONNE,"""L. P."" Bordelon",217 Tiger Tail Rd.,,Houma,LA,70360-6024,10,985-876-3305,W,M,R,255,12/31/2010,1/1/2007,Mr. Bordelon +Member of School Board ,District 7 ,P.O. Box 5097,,Houma,LA,70361,985-876-7400,TERREBONNE,Roger Dale DeHart,1353 Dr. Beatrous Rd.,,Theriot,LA,70397-9633,10,985-879-1329,W,M,D,255,12/31/2010,1/1/2007,Mr. DeHart +Member of School Board ,District 8 ,P.O. Box 5097,,Houma,LA,70361,985-876-7400,TERREBONNE,"Donald ""Don"" Duplantis",313 Hialeah Ave.,,Houma,LA,70363-6934,10,985-873-8239,W,M,D,255,12/31/2010,1/1/2007,Mr. Duplantis +Member of School Board ,District 9 ,P.O. Box 5097,,Houma,LA,70361,985-876-7400,TERREBONNE,"Hayes J. Badeaux, Jr.",P.O. Box 127,,Bourg,LA,70343-3506,10,985-594-4723,W,M,D,255,12/31/2010,1/1/2007,Mr. Badeaux +Justice of the Peace ,Justice of the Peace Ward 1 ,212 Ciera Dr.,,Houma,LA,70364,985-872-0235,TERREBONNE,"Robert ""Yogi"" Naquin",204 Ciera Dr.,,Houma,LA,70364-3711,10,985-872-0235,W,M,R,265,12/31/2014,1/1/2009,Mr. Naquin +Justice of the Peace ,Justice of the Peace Ward 2 ,104 Nottoway Dr.,,Houma,LA,70360,985-872-4600,TERREBONNE,"Kenneth ""Kenny"" Hamner",104 Nottoway Dr.,,Houma,LA,70360-8935,10,985-872-9913,W,M,D,265,12/31/2014,1/1/2009,Mr. Hamner +Justice of the Peace ,Justice of the Peace Ward 4 ,6583 Grand Caillou Rd.,,Dulac,LA,70353,985-563-4330,TERREBONNE,Cheryl Authement Blanchard,311 Ashland Dr.,,Houma,LA,70363-7281,10,985-209-5574,W,F,D,265,12/31/2014,1/1/2009,Ms. Blanchard +Justice of the Peace ,Justice of the Peace Ward 5 ,103 Gaudet Dr.,,Bourg,LA,70343,985-594-3560,TERREBONNE,Jerome C. Fabre,105 Gaudet Dr.,,Bourg,LA,70343-3707,10,985-594-3560,W,M,D,265,12/31/2014,1/1/2009,Mr. Fabre +Justice of the Peace ,Justice of the Peace Ward 6 ,919 La. Hwy. 55,,Montegut,LA,70377,985-594-4960,TERREBONNE,"Louis J. Riche, III",919 Hwy. 55,,Montegut,LA,70377-2221,10,985-594-4960,W,M,D,265,12/31/2014,1/1/2009,Mr. Riche +Justice of the Peace ,Justice of the Peace Ward 7 ,204 S. Central Blvd.,,Chauvin,LA,70344,985-594-3103,TERREBONNE,Johnny B. Eschete,204 South Central Blvd.,,Chauvin,LA,70344-4306,10,985-594-3103,W,F,D,265,12/31/2014,1/1/2009,Mr. Eschete +Justice of the Peace ,Justice of the Peace Ward 8 ,6052 N. Bayou Black Dr.,,Gibson,LA,70356,985-575-3198,TERREBONNE,Horace Johnson,5562 N. Bayou Black Dr.,,Gibson,LA,70356-3662,10,985-575-3198,B,M,D,265,12/31/2014,1/1/2009,Mr. Johnson +Justice of the Peace ,Justice of the Peace Ward 9 ,3938 Southdown Mandalay Rd.,,Houma,LA,70360,985-868-2870,TERREBONNE,Drew P. Breaux,3938 Southdown Mandalay Rd.,,Houma,LA,70360,5,985-868-2870,W,M,,265,12/31/2014,1/1/2009,Mr. Breaux +Justice of the Peace ,Justice of the Peace Ward 10 ,1578-A Doctor Beatrous Rd.,,Theriot,LA,70397,985-851-7002,TERREBONNE,Junior J. Theriot,1578-A Doctor Beatrous Rd.,,Theriot,LA,70397-9638,10,985-851-7002,W,M,D,265,12/31/2014,1/1/2009,Mr. Theriot +Constable ,Justice of the Peace Ward 1 ,P.O. Box 1388,,Gray,LA,70359-1388,985-876-2461,TERREBONNE,David J. LeBoeuf,106 Bayou Gardens Dr.,,Houma,LA,70364,5,985-879-1203,W,M,R,267,12/31/2014,1/1/2009,Mr. LeBoeuf +Constable ,Justice of the Peace Ward 2 ,804 Bull Run Rd.,,Schriever,LA,70395,985-879-1684,TERREBONNE,"""L. J."" Schexnayder",814 Bull Run Rd.,,Schriever,LA,70395-3214,10,985-879-1684,W,M,D,267,12/31/2014,1/1/2009,Mr. Schexnayder +Constable ,Justice of the Peace Ward 4 ,3392 Grand Caillou Rd.,,Houma,LA,70363,985-223-2672,TERREBONNE,"Harrison ""Sonny"" Parfait",3392 Grand Caillou Rd.,,Houma,LA,70363-7142,10,985-872-4333,W,M,D,267,12/31/2014,1/1/2009,Mr. Parfait +Constable ,Justice of the Peace Ward 5 ,P.O. Box 813,,Bourg,LA,70343-0813 ,985-868-7888,TERREBONNE,"Douglas ""Chubby"" Chauvin",P. O. Box 316,,Bourg,LA,70343,5,985-868-7888,W,M,R,267,12/31/2014,1/1/2009,Mr. Chauvin +Constable ,Justice of the Peace Ward 6 ,100 Dennis St.,,Montegut,LA,70377,985-594-8219,TERREBONNE,"William ""B. J."" Underwood, III",105 N J Bourg Ln.,,Montegut,LA,70377-3417,10,985-209-0725,W,M,R,267,12/31/2014,1/1/2009,Mr. Underwood +Constable ,Justice of the Peace Ward 7 ,5282 Bayouside Dr.,,Chauvin,LA,70344,985-594-4890,TERREBONNE,Daniel J. Trahan,5282 Bayouside Dr.,,Chauvin,LA,70344-3907,10,985-594-4890,W,M,D,267,12/31/2014,1/1/2009,Mr. Trahan +Constable ,Justice of the Peace Ward 8 ,P.O. Box 319,,Gibson,LA,70356,985-575-8021,TERREBONNE,Lloyd Gibson,P.O. Box 319,,Gibson,LA,70356-0319 ,11,985-575-8021,B,M,D,267,12/31/2014,1/1/2009,Mr. Gibson +Constable ,Justice of the Peace Ward 9 ,4518-A N Bayou Black Dr.,,Gibson,LA,70356,985-572-2129,TERREBONNE,Floyd A. Trahan,4518-A N. Bayou Black Dr.,,Gibson,LA,70356-3006,10,985-575-2129,W,M,O,267,12/31/2014,1/1/2009,Mr. Trahan +Constable ,Justice of the Peace Ward 10 ,1327 Doctor Beatrous Rd.,,Theriot,LA,70397,985-876-0728,TERREBONNE,Dale A. Theriot,1327 Doctor Beatrous Rd.,,Theriot,LA,70397-9633,10,985-876-0728,W,M,D,267,12/31/2014,1/1/2009,Mr. Theriot +DPEC Member ,at Large ,,,,LA,,,UNION,Ralph M. Kelley,278 Kelley Rd.,,Downsville,LA,71234,5,318-982-5634,W,M,D,54,2/20/2012,2/20/2008,Mr. Kelley +DPEC Member ,Ward 1 ,,,,LA,,,UNION,,,,,,,0,,,,,56,,, +DPEC Member ,Ward 2 ,,,,LA,,,UNION,,,,,,,0,,,,,56,,, +DPEC Member ,Ward 3 ,,,,LA,,,UNION,,,,,,,0,,,,,56,,, +DPEC Member ,Ward 4 ,,,,LA,,,UNION,,,,,,,0,,,,,56,,, +DPEC Member ,Ward 5 ,,,,LA,,,UNION,,,,,,,0,,,,,56,,, +DPEC Member ,Ward 6 ,,,,LA,,,UNION,,,,,,,0,,,,,56,,, +DPEC Member ,Ward 7 ,,,,LA,,,UNION,,,,,,,0,,,,,56,,, +DPEC Member ,Ward 8 ,,,,LA,,,UNION,,,,,,,0,,,,,56,,, +DPEC Member ,Ward 9 ,,,,LA,,,UNION,,,,,,,0,,,,,56,,, +RPEC Member ,at Large ,,,,LA,,,UNION,"Joseph A. Cusimano, Jr.",108 Memory Ln.,,Farmerville,LA,71241,5,318-368-2747,W,M,R,64,2/20/2012,2/20/2008,Mr. Cusimano +RPEC Member ,Ward 1 ,,,,LA,,,UNION,,,,,,,0,,,,,66,,, +RPEC Member ,Ward 2 ,,,,LA,,,UNION,,,,,,,0,,,,,66,,, +RPEC Member ,Ward 3 ,,,,LA,,,UNION,,,,,,,0,,,,,66,,, +RPEC Member ,Ward 4 ,,,,LA,,,UNION,,,,,,,0,,,,,66,,, +RPEC Member ,Ward 5 ,,,,LA,,,UNION,,,,,,,0,,,,,66,,, +RPEC Member ,Ward 6 ,,,,LA,,,UNION,,,,,,,0,,,,,66,,, +RPEC Member ,Ward 7 ,,,,LA,,,UNION,,,,,,,0,,,,,66,,, +RPEC Member ,Ward 8 ,,,,LA,,,UNION,,,,,,,0,,,,,66,,, +RPEC Member ,Ward 9 ,,,,LA,,,UNION,,,,,,,0,,,,,66,,, +Sheriff ,,"100 E. Bayou St., Ste. 101",,Farmerville,LA,71241,318-368-3124,UNION,"Robert G. ""Bob"" Buckley","100 E. Bayou St., Ste. 101",,Farmerville,LA,71241,5,318-368-3124,W,M,D,225,6/30/2012,7/1/2008,Sheriff Buckley +Clerk of Court ,,"100 E. Bayou St., Ste. 105",,Farmerville,LA,71241,318-368-3055,UNION,Dodi Dodd Eubanks,"100 E. Bayou St., Ste. 105",,Farmerville,LA,71241,5,318-368-9772,W,F,R,230,6/30/2012,7/1/2008,Ms. Eubanks +Assessor ,,"100 E. Bayou St., Ste. 103",,Farmerville,LA,71241,318-368-3232,UNION,"""Terry"" Baker",1449 Tech Dr.,,Farmerville,LA,71241,5,318-368-1076,W,F,D,235,12/31/2012,1/1/2009,Mr. Baker +Coroner ,,"811 James Ave., Ste. B.",,Farmerville,LA,71241,318-368-0190,UNION,Steven Venters,P.O. Box 218,,Farmerville,LA,71241,5,318-368-0190,W,M,R,240,3/25/2012,3/24/2008,Mr. Venters +Police Juror ,District 1 ,P. O. Box 723,,Farmerville,LA,,318-368-3296,UNION,Charles Sawyer,P.O. Box 673,,Farmerville,LA,71241,5,318-368-2166,B,M,D,245,1/8/2012,1/14/2008,Mr. Sawyer +Police Juror ,District 2 ,P. O. Box 723,,Farmerville,LA,71241,318-368-3296,UNION,Lanny Parker,270 Mina Parker Rd.,,Marion,LA,71260,5,318-292-5291,W,M,R,245,1/8/2012,1/14/2008,Mr. Parker +Police Juror ,District 3 ,P. O. Box 723,,Farmerville,LA,71241,318-368-3296,UNION,A. J. Smith,1248 Webster Bluff Rd.,,Farmerville,LA,71241,5,318-368-8497,W,M,D,245,1/8/2012,1/14/2008,Mr. Smith +Police Juror ,District 4 ,P. O. Box 723,,Farmerville,LA,71241,318-368-3296,UNION,Johnny Buckley,12784 Hwy. 2,,Bernice,LA,71222,5,318-285-7134,W,M,D,245,1/8/2012,1/14/2008,Mr. Buckley +Police Juror ,District 5 ,P. O. Box 723,,Farmerville,LA,71241,318-368-3296,UNION,Jerry Rugg,390 Wells Rd.,,Downsville,LA,71234,5,318-982-5992,W,M,R,245,1/8/2012,1/14/2008,Mr. Rugg +Police Juror ,District 6 ,P. O. Box 723,,Farmerville,LA,71241,318-368-3296,UNION,Alvin Allen,1919 Sweet Lily Rd.,,Marion,LA,71260,5,318-368-3822,W,M,R,245,1/8/2012,1/14/2008,Mr. Allen +Police Juror ,District 7 ,P. O. Box 723,,Farmerville,LA,71241,318-368-3296,UNION,Vergil Ramsey,510 Deloutre Switch Rd.,,Farmerville,LA,71241,5,318-368-3434,W,M,D,245,1/8/2012,1/14/2008,Mr. Ramsey +Police Juror ,District 8 ,P. O. Box 723,,Farmerville,LA,71241,318-368-3296,UNION,Don Acree,9271 Hwy. 143,,Farmerville,LA,71241,5,318-726-5467,W,M,D,245,1/8/2012,1/14/2008,Mr. Acree +Police Juror ,District 9 ,P. O. Box 723,,Farmerville,LA,71241,318-368-3296,UNION,"John ""Johnny"" Watley",509 Gary St.,,Bernice,LA,71222,5,318-285-7397,B,M,D,245,1/8/2012,1/14/2008,Mr. Watley +Member of School Board ,District 1 ,P. O. Box 308,,Farmerville,LA,71241,318-368-9715,UNION,"Robert C. James, Jr.",205 Line St.,,Farmerville,LA,71241,5,318-368-2946,B,M,D,255,12/31/2010,1/1/2007,Mr. James +Member of School Board ,District 2 ,P. O. Box 308,,Farmerville,LA,71241,318-368-9715,UNION,Jimmy Hollis,508 Wheeler Rd.,,Marion,LA,71260,5,318-292-5210,W,M,D,255,12/31/2010,1/1/2007,Mr. Hollis +Member of School Board ,District 3 ,P. O. Box 308,,Farmerville,LA,71241,318-368-9715,UNION,Michael Holley,358 Goose Elkins Rd.,,Spearsville,LA,71277,5,318-778-3382,W,M,D,255,12/31/2010,1/1/2007,Mr. Holley +Member of School Board ,District 4 ,P. O. Box 308,,Farmerville,LA,71241,318-368-9715,UNION,Barbara Yarbrough,12762 Hwy. 2,,Bernice,LA,71222,5,318-285-9684,W,F,D,255,12/31/2010,1/1/2007,Ms. Yarbrough +Member of School Board ,District 5 ,P. O. Box 308,,Farmerville,LA,71241,318-368-9715,UNION,Howard C. Allen,P.O. Box 65,,Downsville,LA,71234,5,318-982-5900,W,M,D,255,12/31/2010,1/1/2007,Mr. Allen +Member of School Board ,District 6 ,P. O. Box 308,,Farmerville,LA,71241,318-368-9715,UNION,John E. Ellis,617 Burch Rd.,,Marion,LA,71260,5,318-292-4343,B,M,D,255,12/31/2010,1/1/2007,Mr. Ellis +Member of School Board ,District 7 ,P. O. Box 308,,Farmerville,LA,71241,318-368-9715,UNION,Casey Kennedy,1420 West Port Union Rd.,,Farmerville,LA,71241,5,318-368-1880,W,M,D,255,12/31/2010,1/1/2007,Mr. Kennedy +Member of School Board ,District 8 ,P. O. Box 308,,Farmerville,LA,71241,318-368-9715,UNION,"""Steve"" Johnson",152 Girl Scout Rd.,,Sterlington,LA,71280,5,318-726-5001,W,M,D,255,12/31/2010,1/1/2007,Mr. Johnson +Member of School Board ,District 9 ,P. O. Box 308,,Farmerville,LA,71241,318-368-9715,UNION,Marcus Watley,P.O. Box 69,,Bernice,LA,71222,5,318-285-9758,B,M,D,255,12/31/2010,1/1/2007,Mr. Watley +Justice of the Peace ,Justice of the Peace Ward 1 ,705 Taylor St.,,Farmerville,LA,71241,318-368-2711,UNION,"Herman Senn, Jr.",705 Taylor St.,,Farmerville,LA,71241,5,318-368-2711,W,M,R,265,12/31/2014,1/1/2009,Mr. Senn +Justice of the Peace ,Justice of the Peace Ward 2 ,814 Denton Rd.,,Farmerville,LA,71241,318-368-9406,UNION,Nancy Moon Hearn,177 Barr Rd.,,Farmerville,LA,71241,5,,W,F,D,265,12/31/2014,1/1/2009,Ms. Hearn +Justice of the Peace ,Justice of the Peace Ward 3 ,P.O. Box 310,,Bernice,LA,71222,318-285-7291,UNION,Robert Dean Tubbs,778 Pisgah Church Rd.,,Bernice,LA,71222,5,318-285-7291,W,M,D,265,12/31/2014,1/1/2009,Mr. Tubbs +Constable ,Justice of the Peace Ward 1 ,5530 Hwy. 2,,Farmerville,LA,71241,318-368-2949,UNION,Scotty Aulds,5530 Hwy. 2,,Farmerville,LA,71241,5,318-368-2949,W,M,D,267,12/31/2014,1/1/2009,Mr. Aulds +Constable ,Justice of the Peace Ward 2 ,558 Acree Rd.,,Farmerville,LA,71241,318-368-7626,UNION,Larry Booth,558 Acree Rd.,,Farmerville,LA,71241,5,318-726-7626,W,M,D,267,12/31/2014,1/1/2009,Mr. Booth +Constable ,Justice of the Peace Ward 3 ,435 Pleasant Hill Rd.,,Farmerville,LA,71241,318-368-2465,UNION,Kevin Doster,470 Gatson Road,,Spearsville,LA,71277,5,318-778-4383,W,M,R,267,12/31/2014,1/1/2009,Mr. Doster +Mayor ,Town of Bernice ,P. O. Box 186,,Bernice,LA,,318-285-9071,UNION,Joe Hicks,P.O. Box 329,,Bernice,LA,71222,5,318-285-0128,B,M,D,300,12/31/2010,1/1/2007,Mayor Hicks +Mayor ,Town of Farmerville ,P. O. Box 427,,Farmerville,LA,,318-368-7140,UNION,"Stein Baughman, Jr.",P. O. Box 796,,Farmerville,LA,71241,5,318-368-8656,W,M,D,300,12/31/2012,1/1/2009,Mayor Baughman +Mayor ,Town of Marion ,398 Main St.,,Marion,LA,,318-292-4715,UNION,Kenneth W. Franklin,572 Main St.,,Marion,LA,71260,5,318-292-4485,W,M,D,300,12/31/2010,1/1/2007,Mr. Franklin +Mayor ,Village of Lillie ,P. O. Box 10,,Lillie,LA,,318-285-0222,UNION,"Isaac M. Lee, Jr.",3598 Hwy 167,,Lillie,LA,71256,5,318-285-9695,B,M,D,300,12/31/2012,1/1/2009,Mr. Lee +Mayor ,Village of Spearsville ,2511 Hwy. 3121,,Spearsville,LA,,318-778-3886,UNION,"""Bob"" Shoemaker",1352 Hwy. 15,,Spearsville,LA,71277,5,318-778-3828,W,M,D,300,12/31/2010,1/1/2007,Mayor Shoemaker +Chief of Police ,Town of Bernice ,P. O. Box 186,,Bernice,LA,71222,318-285-9071,UNION,Ricky Albritton,P.O. Box 335,,Bernice,LA,71222,5,318-243-5559,W,M,D,305,12/31/2010,1/1/2007,Chief Albritton +Chief of Police ,Town of Marion ,398 Main St.,,Marion,LA,71260,318-292-4715,UNION,Mark Dodd,300 Joe Brown Drive,,Marion,LA,71260,5,318-292-4143,W,M,D,305,12/31/2010,1/1/2007,Mr. Dodd +Chief of Police ,Village of Lillie ,P. O. Box 10,,Lillie,LA,71256,318-285-0094,UNION,,,,,,,0,,,,,305,,, +Chief of Police ,Village of Spearsville ,2511 Hwy. 3121,,Spearsville,LA,71277,318-778-3886,UNION,John B. Rhodes,P.O. Box 31,,Spearsville,LA,71277,5,318-778-0642,W,M,D,305,12/31/2010,9/14/2007,Chief Rhodes +Marshal ,Town of Farmerville ,P. O. Box 427,,Farmerville,LA,71241,318-368-9242,UNION,"E. ""Bim"" Coulbertson",515 East Green St.,,Farmerville,LA,71241,5,318-368-7221,B,M,D,305,12/31/2012,1/1/2009,Mr. Coulberson +Alderman ,"District 1, Town of Bernice ",P. O. Box 186,,Bernice,LA,71222,318-285-9071,UNION,Gene Terral,929 Pisgah Church Rd.,,Bernice,LA,71222,5,318-285-7137,W,M,D,310,12/31/2010,1/1/2007,Mr. Terral +Alderman ,"District 2, Town of Bernice ",P. O. Box 186,,Bernice,LA,71222,318-285-9071,UNION,Rhodell Montgomery,P.O. Box 273,,Bernice,LA,71222,5,318-285-7476,B,M,D,310,12/31/2010,1/1/2007,Mr. Montgomery +Alderman ,"District 3, Town of Bernice ",P. O. Box 186,,Bernice,LA,71222,318-285-9071,UNION,Teddy Sutton,113 Church St.,,Bernice,LA,71222,5,318-285-7490,B,M,D,310,12/31/2010,1/1/2007,Mr. Sutton +Alderman ,"District 4, Town of Bernice ",P. O. Box 186,,Bernice,LA,71222,318-285-9071,UNION,Mildred Ferguson,P.O. Box 43,,Bernice,LA,71222,5,318-285-7175,B,F,D,310,12/31/2010,1/1/2007,Ms. Ferguson +Alderman ,"District 5, Town of Bernice ",P. O. Box 186,,Bernice,LA,71222,318-285-9071,UNION,Amy Pesnell,3017 Roberson St.,,Bernice,LA,71222,5,318-285-9107,W,F,D,310,12/31/2010,1/1/2007,Ms. Pesnell +Alderman ,"District A, Town of Farmerville ",P. O. Box 427,,Farmerville,LA,71241,318-368-9242,UNION,"Wayne ""Pone"" Jones",1312 Marion Hwy.,,Farmerville,LA,71241,5,318-368-5476,B,M,,310,12/31/2012,1/1/2009,Mr. Jones +Alderman ,"District B, Town of Farmerville ",P. O. Box 427,,Farmerville,LA,71241,318-368-9242,UNION,Lavelle Maine,P. O. Box 82,,Farmerville,LA,71241,5,318-368-1766,B,M,D,310,12/31/2012,1/1/2009,Mr. Maine +Alderman ,"District C, Town of Farmerville ",P. O. Box 427,,Farmerville,LA,71241,318-368-9242,UNION,Joseph Jones,808 Martin Luther King Dr.,,Farmerville,LA,71241,5,318-368-9386,B,M,D,310,12/31/2012,1/1/2009,Mr. Jones +Alderman ,"District D, Town of Farmerville ",P. O. Box 427,,Farmerville,LA,71241,318-368-9242,UNION,Gerome Nation,714 West Bayou St.,,Farmerville,LA,71241,5,318-368-3885,B,M,D,310,12/31/2012,1/1/2009,Mr. Nation +Alderman ,"District E, Town of Farmerville ",P. O. Box 427,,Farmerville,LA,71241,318-368-9242,UNION,Jerry Taylor,303 Miller St.,,Farmerville,LA,71241,5,318-368-8673,W,M,D,310,12/31/2012,1/1/2009,Mr. Taylor +Alderman ,Town of Marion ,398 Main St.,,Marion,LA,71260,318-292-4715,UNION,Johnny B. Gilliam,P.O. Box 408,,Marion,LA,71260,5,318-292-5550,B,M,D,310,12/31/2010,1/1/2007,Mr. Gilliam +Alderman ,Town of Marion ,398 Main St.,,Marion,LA,71260,318-292-4715,UNION,"Eugene ""Bubba"" Hoggatt",P.O. Box 376,,Marion,LA,71160,5,318-292-5419,W,M,R,310,12/31/2010,1/1/2007,Mr. Hoggatt +Alderman ,Town of Marion ,398 Main St.,,Marion,LA,71260,318-292-4715,UNION,Ralph D. Holley,231 Crow St.,,Marion,LA,71260,5,318-292-5471,B,M,D,310,12/31/2010,1/1/2007,Mr. Holley +Alderman ,Town of Marion ,398 Main St.,,Marion,LA,71260,318-292-4715,UNION,Ann D. Miller,1042 Main St.,,Marion,LA,71260,5,318-292-5405,W,F,D,310,12/31/2010,1/1/2007,Ms. Miller +Alderman ,Town of Marion ,398 Main St.,,Marion,LA,71260,318-292-4715,UNION,Danny A. Smith,172 Concord St.,,Marion,LA,71260,5,318-292-5249,W,M,D,310,12/31/2010,1/1/2007,Mr.Smith +Alderman ,Village of Lillie ,P. O. Box 10,,Lillie,LA,71256,318-285-0094,UNION,"A. J. Ford, Jr.",147 Cook Rd.,,Lillie,LA,71256,5,318-285-7074,B,M,D,310,12/31/2012,2/23/2009,Mr. Ford +Alderman ,Village of Lillie ,P. O. Box 10,,Lillie,LA,71256,318-285-0094,UNION,Joseph Larry,114 Cook Rd.,,Lillie,LA,71256,5,318-285-7048,B,M,D,310,12/31/2012,1/1/2009,Mr. Larry +Alderman ,Village of Lillie ,P. O. Box 10,,Lillie,LA,71256,318-285-0094,UNION,"Jarrell Wilson, Sr.",103 Sycamore Circle,,Lillie,LA,71256,5,318-285-7308,W,M,R,310,12/31/2012,1/1/2009,Mr. Wilson +Alderman ,Village of Spearsville ,2511 Hwy. 3121,,Spearsville,LA,71277,318-778-3886,UNION,Betty B. Barron,370 Spearsville Rd,,Spearsville,LA,71277,5,318-778-3765,W,F,R,310,12/31/2010,8/24/2009,Ms. Barron +Alderman ,Village of Spearsville ,2511 Hwy. 3121,,Spearsville,LA,71277,318-778-3886,UNION,John R. Rhodes,385 Spearsville Road,,Spearsville,LA,71277,5,318-778-3222,W,M,D,310,12/31/2010,1/1/2007,Mr. Rhodes +Alderman ,Village of Spearsville ,2511 Hwy. 3121,,Spearsville,LA,71277,318-778-3886,UNION,Peggy Rockett,250 Carroll Loop,,Spearsville,LA,71277,5,318-778-4255,W,F,D,310,12/31/2010,1/1/2007,Ms. Rockett +DPEC Member ,at Large ,,,,LA,,,VERMILION,Cynthia Sudduth Campisi,306 S. Hollingsworth Dr.,,Abbeville,LA,70510,5,337-893-0762,W,F,D,54,2/20/2012,2/20/2008,Ms. Campisi +DPEC Member ,at Large ,,,,LA,,,VERMILION,Rodney Simon,506 N. Gin St.,,Erath,LA,70533-3729,10,337-937-5124,W,M,D,54,2/20/2012,2/20/2008,Mr. Simon +DPEC Member ,at Large ,,,,LA,,,VERMILION,Robert B. Vincent,405 N. Gin St.,,Erath,LA,70533,5,337-937-5585,W,M,D,54,2/20/2012,2/20/2008,Mr. Vincent +DPEC Member ,District 1 ,,,,LA,,,VERMILION,,,,,,,0,,,,,56,,, +DPEC Member ,District 2 ,,,,LA,,,VERMILION,,,,,,,0,,,,,56,,, +DPEC Member ,District 3 ,,,,LA,,,VERMILION,,,,,,,0,,,,,56,,, +DPEC Member ,District 4 ,,,,LA,,,VERMILION,,,,,,,0,,,,,56,,, +DPEC Member ,District 5 ,,,,LA,,,VERMILION,,,,,,,0,,,,,56,,, +DPEC Member ,District 6 ,,,,LA,,,VERMILION,,,,,,,0,,,,,56,,, +DPEC Member ,District 7 ,,,,LA,,,VERMILION,,,,,,,0,,,,,56,,, +DPEC Member ,District 8 ,,,,LA,,,VERMILION,,,,,,,0,,,,,56,,, +DPEC Member ,District 9 ,,,,LA,,,VERMILION,,,,,,,0,,,,,56,,, +DPEC Member ,District 10 ,,,,LA,,,VERMILION,"Jagdish ""Jack"" Gupta",407 Church St.,,Kaplan,LA,70548,5,337-643-1275,O,M,D,56,2/20/2012,2/20/2008,Mr. Gupta +DPEC Member ,District 11 ,,,,LA,,,VERMILION,,,,,,,0,,,,,56,,, +DPEC Member ,District 12 ,,,,LA,,,VERMILION,,,,,,,0,,,,,56,,, +DPEC Member ,District 13 ,,,,LA,,,VERMILION,,,,,,,0,,,,,56,,, +DPEC Member ,District 14 ,,,,LA,,,VERMILION,,,,,,,0,,,,,56,,, +RPEC Member ,at Large ,,,,LA,,,VERMILION,Dexter James Duhon,9016 Rachelle Drive,,Abbeville,LA,70510-2119,10,337-893-2702,W,M,R,64,2/20/2012,2/20/2008,Mr. Duhon +RPEC Member ,District 1 ,,,,LA,,,VERMILION,,,,,,,0,,,,,66,,, +RPEC Member ,District 2 ,,,,LA,,,VERMILION,,,,,,,0,,,,,66,,, +RPEC Member ,District 3 ,,,,LA,,,VERMILION,,,,,,,0,,,,,66,,, +RPEC Member ,District 4 ,,,,LA,,,VERMILION,,,,,,,0,,,,,66,,, +RPEC Member ,District 5 ,,,,LA,,,VERMILION,,,,,,,0,,,,,66,,, +RPEC Member ,District 6 ,,,,LA,,,VERMILION,,,,,,,0,,,,,66,,, +RPEC Member ,District 7 ,,,,LA,,,VERMILION,,,,,,,0,,,,,66,,, +RPEC Member ,District 8 ,,,,LA,,,VERMILION,,,,,,,0,,,,,66,,, +RPEC Member ,District 9 ,,,,LA,,,VERMILION,,,,,,,0,,,,,66,,, +RPEC Member ,District 10 ,,,,LA,,,VERMILION,,,,,,,0,,,,,66,,, +RPEC Member ,District 11 ,,,,LA,,,VERMILION,,,,,,,0,,,,,66,,, +RPEC Member ,District 12 ,,,,LA,,,VERMILION,,,,,,,0,,,,,66,,, +RPEC Member ,District 13 ,,,,LA,,,VERMILION,,,,,,,0,,,,,66,,, +RPEC Member ,District 14 ,,,,LA,,,VERMILION,,,,,,,0,,,,,66,,, +Sheriff ,,P. O. Box 307,,Abbeville,LA,70511,337-898-4409,VERMILION,"Michael ""Mike"" Couvillon",P.O. Box 307,,Abbeville,LA,70511,5,337-643-2534,W,M,D,225,6/30/2012,7/1/2008,Sheriff +Clerk of Court ,,"100 North State St., Ste. 101",,Abbeville,LA,70510,337-898-1992,VERMILION,Diane Meaux Broussard,"100 North State St., Ste. 101",,Abbeville,LA,70510,5,337-893-2329,W,F,D,230,6/30/2012,7/1/2008,Mr. Broussard +Assessor ,,"100 N. State St., Ste. 110",,Abbeville,LA,70510,377-893-2837,VERMILION,"Kathryn ""Kathy"" Broussard",11404 Hare St.,,Abbeville,LA,70510,5,337-893-7404,,,D,235,12/31/2012,1/1/2009,Ms. Broussard +Coroner ,,P.O. Box 445,,Abbeville,LA,70511-0445 ,337-898-6430,VERMILION,Myriam Hutchinson,9326 LA Hwy. 82,,Abbeville,LA,70510,5,337-789-7272,W,F,R,240,3/25/2012,3/24/2008,Ms. Hutchinson +Police Juror,District 1,"100 N. State St., Ste. 200",,Abbeville,LA,70510,337-898-4300,VERMILION,Dane Hebert,5569 Alfred Rd.,,Maurice,LA,70555,5,337-893-9331,W,M,D,245,1/8/2012,1/14/2008,Mr. Hebert +Police Juror ,District 2 ,"100 N. State St., Ste. 200",,Abbeville,LA,70510,337-898-4300,VERMILION,"""Chris"" Beraud",8625 Westwood Dr.,,Abbeville,LA,70510,5,337-893-9471,W,M,D,245,1/8/2012,1/14/2008,Mr. Beraud +Police Juror ,District 3 ,"100 N. State St., Ste. 200",,Abbeville,LA,70510,337-898-4300,VERMILION,Nathan Granger,10903 North Rd.,,Abbeville,LA,70510-2524,10,337-937-4414,W,M,D,245,1/8/2012,1/14/2008,Mr. Granger +Police Juror ,District 4 ,"100 N. State St., Ste. 200",,Abbeville,LA,70510,337-898-4300,VERMILION,Ronald J. Darby,1617 Maude Ave.,,Abbeville,LA,70510-7063,10,337-893-5145,B,M,D,245,1/8/2012,1/14/2008,Mr. Darby +Police Juror ,District 5 ,"100 N. State St., Ste. 200",,Abbeville,LA,70510,337-898-4300,VERMILION,Wayne Touchet,505 Eaton Dr.,,Abbeville,LA,70510,5,337-893-1246,W,M,R,245,1/8/2012,1/14/2008,Mr. Touchet +Police Juror ,District 6 ,"100 N. State St., Ste. 200",,Abbeville,LA,70510,337-898-4300,VERMILION,Mark Poche,1013 S. Broadway St.,,Erath,LA,70533,5,337-937-4900,W,M,D,245,1/8/2012,1/14/2008,Mr. Poche +Police Juror ,District 7 ,"100 N. State St., Ste. 200",,Abbeville,LA,70510,337-898-4300,VERMILION,Keith Meaux,906 Meaux Ln.,,Abbeville,LA,70510,5,337-893-4527,,,R,245,1/8/2012,1/14/2008,Mr. Meaux +Police Juror ,District 8 ,"100 N. State St., Ste. 200",,Abbeville,LA,70510,337-898-4300,VERMILION,Errol J. Domingues,17237 LA Hwy. 331,,Erath,LA,70533,5,337-937-4654,W,M,D,245,1/8/2012,1/14/2008,Mr. Domingues +Police Juror ,District 9 ,"100 N. State St., Ste. 200",,Abbeville,LA,70510,337-898-4300,VERMILION,Gerald W. Butaud,17828 Pelican Rd.,,Erath,LA,70533-6113,10,337-893-7154,W,M,D,245,1/8/2012,1/14/2008,Mr. Butaud +Police Juror ,District 10 ,"100 N. State St., Ste. 200",,Abbeville,LA,70510,337-898-4300,VERMILION,"Ronald ""Dago"" Menard",9338 Hemlock Rd.,,Kaplan,LA,70548-7217,10,337-643-6043,W,M,D,245,1/8/2012,1/14/2008,Mr. Menard +Police Juror ,District 11 ,"100 N. State St., Ste. 200",,Abbeville,LA,70510,337-898-4300,VERMILION,Pervis Gaspard,9127 Sand Pit Rd.,,Abbeville,LA,70510,5,337-893-2985,,,D,245,1/8/2012,1/14/2008,Mr. Gaspard +Police Juror ,District 12 ,"100 N. State St., Ste. 200",,Abbeville,LA,70510,337-898-4300,VERMILION,Cloris J. Boudreaux,16635 W. LA Hwy. 700,,Kaplan,LA,70548-6453,10,337-643-8880,W,M,D,245,1/8/2012,1/14/2008,Mr. Boudreaux +Police Juror ,District 13 ,"100 N. State St., Ste. 200",,Abbeville,LA,70510,337-898-4300,VERMILION,"T. J. Prejean, Jr.",17507 LA Hwy. 35,,Abbeville,LA,70510-8969,10,337-643-2200,W,M,D,245,1/8/2012,1/14/2008,Mr. Prejean +Police Juror ,District 14 ,"100 N. State St., Ste. 200",,Abbeville,LA,70510,337-898-4300,VERMILION,Leon Broussard,401 Boatner St.,,Gueydan,LA,70542,5,337-536-8621,W,M,D,245,1/8/2012,1/14/2008,Mr. Broussard +City Judge ,"City Court, City of Abbeville ",P. O. Box 251,,Abbeville,LA,70511-0251 ,337-893-1513,VERMILION,"""Rick"" Putnam",102 S. Hollingsworth Dr.,,Abbeville,LA,70510-3640,10,337-296-8187,W,M,D,250,12/31/2014,1/1/2009,Judge Putnam +City Judge ,"City Court, City of Kaplan ",P. O. Box 121,,Kaplan,LA,70548,337-643-6611,VERMILION,Frank LeMoine,164 Richelieu Circle,,Kaplan,LA,70548-3608,10,337-643-6620,W,M,D,250,12/31/2014,1/1/2009,Judge Lemoine +City Marshal ,"City Court, City of Abbeville ",P.O. Box 251,,Abbeville,LA,70511-0251 ,337-893-1831,VERMILION,Jeremiah Bolden,P. O. Box 31 .,,Abbeville,LA,70511,5,337-652-8508,,,O,250,12/31/2014,1/1/2009,Marshal Bolden +City Marshal ,"City Court, City of Kaplan ",P.O. Box 121,,Kaplan,LA,70548,337-643-6663,VERMILION,"Percy Manceaux, Jr.",P. O. Box 243,,Kaplan,LA,70548,5,337-643-6348,W,M,D,250,12/31/2014,1/1/2009,Marshal Manceaux +Member of School Board ,District A ,P. O. Drawer 520,,Abbeville,LA,70511-0520 ,337-898-5764,VERMILION,"""Bill"" Searle",P.O. Box 184,,Gueydan,LA,70542,5,337-536-9451,W,M,R,255,12/31/2010,1/1/2007,Mr. Searle +Member of School Board ,District B ,P. O. Drawer 520,,Abbeville,LA,70511-0520 ,337-898-5764,VERMILION,Angela Faulk,9504 LA Hwy 696,,Abbeville,LA,70510-2177,10,337-501-8986,W,F,,255,12/31/2010,1/1/2007,Ms. Faulk +Member of School Board ,District C ,P. O. Drawer 520,,Abbeville,LA,70511-0520 ,337-898-5764,VERMILION,Dexter James Callahan,17101 LA Hwy. 696,,Kaplan,LA,70548-6471,10,337-643-6673,W,M,D,255,12/31/2010,1/1/2007,Mr. Callahan +Member of School Board ,District D ,P. O. Drawer 520,,Abbeville,LA,70511-0520 ,337-898-5764,VERMILION,Ricky LeBouef,16403 S. Liberty Farm Rd.,,Kaplan,LA,70548-7020,10,337-643-1791,W,M,,255,12/31/2010,1/1/2007,Mr. LeBouef +Member of School Board ,District E ,P. O. Drawer 520,,Abbeville,LA,70511-0520 ,337-898-5764,VERMILION,"Anthony ""Tony"" Fontana",210 N. Washington,,Abbeville,LA,70510-8157,10,337-893-8846,W,M,R,255,12/31/2010,1/1/2007,Mr. Fontana +Member of School Board ,District F ,P. O. Drawer 520,,Abbeville,LA,70511-0520 ,337-898-5764,VERMILION,Charles Campbell,206 S. Oliver St.,,Abbeville,LA,70510,5,337-893-2944,,,D,255,12/31/2010,1/1/2007,Mr. Campbell +Member of School Board ,District G ,P. O. Drawer 520,,Abbeville,LA,70511-0520 ,337-898-5764,VERMILION,Chris Mayard,11584 Sabra Circle,,Erath,LA,70533,5,337-937-6759,W,M,R,255,12/31/2010,1/1/2007,Mr. Mayard +Member of School Board ,District H ,P. O. Drawer 520,,Abbeville,LA,70511-0520 ,337-898-5764,VERMILION,Ricky J. Broussard,3401 Bethany Rd.,,Erath,LA,70533-5700,10,337-918-6166,W,M,D,255,12/31/2010,1/1/2007,Mr. Broussard +Justice of the Peace ,Justice of the Peace Ward 1 ,2313 Reginald Rd.,,Erath,LA,70533-5039,337-937-6346,VERMILION,"Perry Bourgeois, Jr.",2313 Reginald Rd.,,Erath,LA,70533-5039,10,337-937-6346,W,M,D,265,12/31/2014,1/1/2009,Mr. Bourgeois +Justice of the Peace ,Justice of the Peace Ward 1 ,2313 Reginald Rd.,,Erath,LA,70533-5039,337-937-6346,VERMILION,Roland Suire,708 E. Conrad St.,,Erath,LA,70533-3108,10,337-937-5576,W,M,D,265,12/31/2014,1/1/2009,Mr. Suire +Justice of the Peace ,Justice of the Peace Ward 2 ,16008 La. Hwy. 685,,Erath,LA,70533,337-937-6767,VERMILION,Eric John Toups,16008 La. Hwy. 685,,Erath,LA,70533-5618,10,337-937-6767,W,M,D,265,12/31/2014,1/1/2009,Mr. Toups +Justice of the Peace ,Justice of the Peace Ward 4 ,4279 US Hwy. 167,,Maurice,LA,70555-3703,337-893-3480,VERMILION,"Kenneth ""Keno"" Picard",4279 U. S. Hwy. 167,,Maurice,LA,70555,5,337-893-3480,,,D,265,12/31/2014,1/1/2009,Mr. Picard +Justice of the Peace ,Justice of the Peace Ward 5 ,4850 Leroy Rd.,,Maurice,LA,70555-3517,337-893-6370,VERMILION,Jessie J. Fabre,4850 Leroy Rd.,,Maurice,LA,70555-3517,10,337-893-6370,W,M,D,265,12/31/2014,1/1/2009,Mr. Fabre +Justice of the Peace ,Justice of the Peace Ward 6 ,17911 Gallet Rd.,,Abbeville,LA,70510-0253 ,337-642-5679,VERMILION,Sheb W. Callahan,16505 Lionel Rd.,,Abbeville,LA,70510-8940,10,337-643-6090,W,M,D,265,12/31/2014,1/1/2009,Mr. Callahan +Justice of the Peace ,Justice of the Peace Ward 7 ,16127 La. Hwy. 82,,Abbeville,LA,70510-8763,337-893-3327,VERMILION,Johnny C. Choate,18626 Theall Rd.,,Abbeville,LA,70510,5,337-893-4046,W,M,D,265,12/31/2014,1/1/2009,Mr. Choate +Justice of the Peace ,Justice of the Peace Ward 8 ,314 McMurtry St.,,Gueydan,LA,70542-4020,337-536-9853,VERMILION,"""Tim"" LeBlanc",314 McMurtry St.,,Gueydan,LA,70542-4020,10,337-536-9853,W,M,D,265,12/31/2014,1/1/2009,Mr. Leblanc +Constable ,Justice of the Peace Ward 1 ,14723 Emily Rd.,,Erath,LA,70533-5639,337-937-4295,VERMILION,Randy Granger,5000 Albert Rd.,,Abbeville,LA,70510-2596,10,337-937-4295,W,M,D,267,12/31/2014,1/1/2009,Mr. Granger +Constable ,Justice of the Peace Ward 1 ,14723 Emily Rd.,,Erath,LA,70533-5639,337-937-4295,VERMILION,Paul Poche',600 E. Derouen St.,,Erath,LA,70533,5,337-937-5459,W,M,,267,12/31/2014,1/1/2009,Mr. Poche +Constable ,Justice of the Peace Ward 2 ,4916 Morgan Rd.,,Erath,LA,70533,337-937-6204,VERMILION,Fabian J. Hulin,4916 Morgan Rd.,,Erath,LA,70533-6011,10,337-937-6204,W,M,D,267,12/31/2014,1/1/2009,Mr. Hulin +Constable ,Justice of the Peace Ward 4 ,7727 US Hwy. 167,,Abbeville,LA,70510-2168,337-893-4005,VERMILION,Charles J. Hebert,7420 Fusilier Rd.,,Maurice,LA,70555-4317,10,337-893-4005,W,M,D,267,12/31/2014,1/1/2009,Mr. Hebert +Constable ,Justice of the Peace Ward 5 ,1533 La. Hwy. 700,,Rayne,LA,70578-1702,337-334-4362,VERMILION,Earl C. Hoffpauir,1533 LA Hwy. 700,,Rayne,LA,70578-1702,10,337-334-4362,W,M,R,267,12/31/2014,1/1/2009,Mr. Hoffpauir +Constable ,Justice of the Peace Ward 6 ,21538 Keno Rd.,,Abbeville,LA,70510-0647 ,337-642-5442,VERMILION,"""B. J."" Lege",21538 Keno Rd.,,Abbeville,LA,70510,5,337-642-5442,W,M,D,267,12/31/2014,1/1/2009,Mr. Lege +Constable ,Justice of the Peace Ward 7 ,11723 Audubon Rd.,,Abbeville,LA,70510-8749,337-898-0223,VERMILION,"Antoine Barras, Jr.",11723 Audubon Rd.,,Abbeville,LA,70510,5,337-893-7652,W,M,D,267,12/31/2014,1/1/2009,Mr. Barras +Constable ,Justice of the Peace Ward 8 ,205 Walker St.,,Gueydan,LA,70542-3028,337-536-6145,VERMILION,Grayson Benoit,8916 Cowboy Rd.,,Gueydan,LA,70542,5,337-536-7496,,,D,267,12/31/2014,1/1/2009,Mr. Benoit +Mayor ,City of Abbeville ,101 N. State St.,,Abbeville,LA,,337-893-8550,VERMILION,Mark Piazza,1300 St. Dominic St.,,Abbeville,LA,70510,5,337-893-0400,W,M,D,300,6/30/2010,7/1/2006,Mayor Piazza +Mayor ,City of Abbeville ,101 N. State St.,,Abbeville,LA,,337-893-8550,VERMILION,"Mark Piazza, ",1300 St. Dominic Dr.,,Abbeville,LA,70510-2191,10,337-893-0400,W,M,D,300,,, +Mayor ,City of Kaplan ,701 Cushing Ave.,,Kaplan,LA,,337-643-8602,VERMILION,Linda Hardee,409 Jackson Ave.,,Kaplan,LA,70548,5,337-643-8046,W,F,D,300,6/30/2010,7/1/2006,Mayor Hardee +Mayor ,Town of Erath ,115 W. Edwards,,Erath,LA,,337-937-8401,VERMILION,George Dupuis,624 E. Edward St.,,Erath,LA,70533-4210,10,337-937-8413,W,M,D,300,12/31/2010,1/1/2007,Mr. Dupuis +Mayor ,Town of Gueydan ,600 Main St.,,Gueydan,LA,,337-536-9415,VERMILION,"Craig ""Bob"" Hensgens",305 Wilkinson St.,,Gueydan,LA,70542,5,337-536-9984,,,D,300,12/31/2010,10/30/2007,Mayor Hensgens +Mayor ,Village of Maurice ,P. O. Box 128,,Maurice,LA,,337-893-6406,VERMILION,"Robert H. ""Bob"" Ferguson",411 Chief H. Fred Ave.,,Maurice,LA,70555-4423,10,337-898-1401,W,M,D,300,12/31/2010,1/1/2007,Mr. Ferguson +Chief of Police ,City of Abbeville ,101 N. State St.,,Abbeville,LA,70510,337-893-8550,VERMILION,"Rickey ""Rick"" Coleman",2405 Helen St.,,Abbeville,LA,70510,5,337-893-9121,,,R,305,6/30/2010,7/1/2006,Chief Coleman +Chief of Police ,City of Abbeville ,101 N. State St.,,Abbeville,LA,70510,337-893-8550,VERMILION,"Tony J. Hardy, ",1120 N. Shireview Cir.,,Abbeville,LA,70510-7951,10,337-523-5746,W,M,D,305,,, +Chief of Police ,City of Kaplan ,701 Cushing Ave.,,Kaplan,LA,70548,337-643-8602,VERMILION,Steve Perry,110 Sonny Ln.,,Kaplan,LA,70548,5,337-643-8846,,M,D,305,6/30/2010,7/1/2006,Chief Perry +Chief of Police ,Town of Erath ,115 W. Edwards,,Erath,LA,70533,337-937-8401,VERMILION,"Gerald Hebert, ",415 LaSalle St.,,Erath,LA,70533,5,337-937-0463,W,M,D,305,12/31/2010,1/1/2007,Chief Hebert +Chief of Police ,Town of Gueydan ,600 Main St.,,Gueydan,LA,70542,337-536-9415,VERMILION,"Stoney P. Broussard, ",600 Main St.,,Gueydan,LA,70542,5,337-536-9415,,,,305,,1/8/2010,Mr. Broussard +Chief of Police ,Village of Maurice ,P. O. Box 128,,Maurice,LA,70555,337-893-6406,VERMILION,Warren Rost,114 James St.,,Maurice,LA,70555,5,337-893-2540,,,D,305,12/31/2010,1/1/2007,Mr. Rost +Councilman at Large ,City of Abbeville ,101 N. State St.,,Abbeville,LA,70510,337-893-8550,VERMILION,Francis J. Plaisance,2333 Camella St.,,Abbeville,LA,70510,5,337-652-0646,W,M,D,308,6/30/2010,7/1/2006,Mr. Plaisance +Councilman at Large ,City of Abbeville ,101 N. State St.,,Abbeville,LA,70510,337-893-8550,VERMILION,"Francis J. Plaisance, ",2333 Camella St.,,Abbeville,LA,70510-4010,10,337-652-0646,W,M,D,308,,, +Alderman ,"District A, City of Kaplan ",701 Cushing Ave.,,Kaplan,LA,70548,337-643-8602,VERMILION,Eva Dell Morrison,411 N. Guidry Ave.,,Kaplan,LA,70548-4214,10,337-643-2894,B,F,D,310,6/30/2010,7/21/2008,Ms. Morrison +Alderman ,"District A, City of Kaplan ",701 Cushing Ave.,,Kaplan,LA,70548,337-643-8602,VERMILION,"Eva Dell Morrison, ",411 N. Guidry Ave.,,Kaplan,LA,70548-4214,10,337-643-2894,B,F,D,310,,, +Alderman ,"District B, City of Kaplan ",701 Cushing Ave.,,Kaplan,LA,70548,337-643-8602,VERMILION,"Gerard ""Jerry"" Touchet",109 Sonny Ln.,,Kaplan,LA,70548,5,337-643-8642,W,M,D,310,6/30/2010,7/1/2006,Mr. Touchet +Alderman ,"District B, City of Kaplan ",701 Cushing Ave.,,Kaplan,LA,70548,337-643-8602,VERMILION,"Gerard ""Jerry"" Touchet, ",109 Sonny Ln.,,Kaplan,LA,70548-6487,10,337-643-8642,W,M,D,310,,, +Alderman ,"District C, City of Kaplan ",701 Cushing Ave.,,Kaplan,LA,70548,337-643-8602,VERMILION,Brent N. DuBois,406 W. Seventh St.,,Kaplan,LA,70548,5,337-643-2690,W,M,D,310,6/30/2010,7/1/2006,Mr. DuBois +Alderman ,"District C, City of Kaplan ",701 Cushing Ave.,,Kaplan,LA,70548,337-643-8602,VERMILION,"Brent N. DuBois, ",406 W. 7th St.,,Kaplan,LA,70548-3200,10,337-643-2690,W,M,D,310,,, +Alderman ,"District D, City of Kaplan ",701 Cushing Ave.,,Kaplan,LA,70548,337-643-8602,VERMILION,Kevin G. Guidry,401 Trahan Ave.,,Kaplan,LA,70548-3929,10,337-643-1806,W,M,D,310,6/30/2010,7/1/2006,Mr. Guidry +Alderman ,"District D, City of Kaplan ",701 Cushing Ave.,,Kaplan,LA,70548,337-643-8602,VERMILION,"Kevin G. Guidry, ",401 N. Trahan Ave.,,Kaplan,LA,70548-3929,10,337-643-1806,W,M,D,310,,, +Alderman ,Town of Erath ,115 W. Edwards,,Erath,LA,70533,337-937-8401,VERMILION,"Carl ""Co Co"" Broussard",706 E. Bourque St.,,Erath,LA,70533-4206,10,337-937-5250,W,M,D,310,12/31/2010,1/1/2007,Mr. Broussard +Alderman ,Town of Erath ,115 W. Edwards,,Erath,LA,70533,337-937-8401,VERMILION,"""Billy"" Cormier",502 N. Patrick Toole St.,,Erath,LA,70533-3739,10,337-937-5214,W,M,D,310,12/31/2010,1/1/2007,Mr. Cormier +Alderman ,Town of Erath ,115 W. Edwards,,Erath,LA,70533,337-937-8401,VERMILION,"Robert ""T-Bob"" Domingues",739 N. Severin St.,,Erath,LA,70533-3015,10,337-937-5733,,,D,310,12/31/2010,1/1/2007,Mr. Domingues +Alderman ,Town of Erath ,115 W. Edwards,,Erath,LA,70533,337-937-8401,VERMILION,John Earl LeBlanc,308 S. Severin St.,,Erath,LA,70533-4138,10,337-937-5568,W,M,D,310,12/31/2010,1/1/2007,Mr. LeBlance +Alderman ,Town of Erath ,115 W. Edwards,,Erath,LA,70533,337-937-8401,VERMILION,Donald Menard,208 N. Kibbe St.,,Erath,LA,70533,5,337-937-5113,,,D,310,12/31/2010,1/1/2007,Mr. Menard +Alderman ,Town of Gueydan ,600 Main St.,,Gueydan,LA,70542,337-536-9415,VERMILION,David Dupuis,401 Wilkinson St.,,Gueydan,LA,70542,5,337-536-7197,W,M,D,310,12/31/2010,1/1/2007,Mr. Dupuis +Alderman ,Town of Gueydan ,600 Main St.,,Gueydan,LA,70542,337-536-9415,VERMILION,Claudette Simon Price,P.O. Box 377,,Gueydan,LA,70542,5,337-536-6305,W,F,D,310,12/31/2010,10/30/2007,Ms. Price +Alderman ,Town of Gueydan ,600 Main St.,,Gueydan,LA,70542,337-536-9415,VERMILION,Jude D. Reese,510 Ninth St.,,Gueydan,LA,70542-3714,10,337-536-7201,,,R,310,12/31/2010,1/1/2007,Mr. Reese +Alderman ,Town of Gueydan ,600 Main St.,,Gueydan,LA,70542,337-536-9415,VERMILION,Gale Smith,P.O. Box 369,,Gueydan,LA,70542-3817,10,337-536-9523,W,F,D,310,12/31/2010,1/1/2007,Ms. Smith +Alderman ,Town of Gueydan ,600 Main St.,,Gueydan,LA,70542,337-536-9415,VERMILION,Scott Vallo,308 4th St.,,Gueydan,LA,70542-4004,10,337-536-5253,W,M,D,310,12/31/2010,10/14/2008,Mr. Vallo +Alderman ,Village of Maurice ,P. O. Box 128,,Maurice,LA,70555,337-893-6406,VERMILION,Troy Catalon,218 E. Vincent St.,,Maurice,LA,70555,5,337-278-0361,,,R,310,12/31/2010,1/1/2007,Mr. Catalon +Alderman ,Village of Maurice ,P. O. Box 128,,Maurice,LA,70555,337-893-6406,VERMILION,Darin Desormeaux,231 E. Etienne Rd.,,Maurice,LA,70555-4345,10,337-898-9799,W,M,D,310,12/31/2010,1/1/2007,Mr. Desormeaux +Alderman ,Village of Maurice ,P. O. Box 128,,Maurice,LA,70555,337-893-6406,VERMILION,Gary J. Villien,345 Andre Ave.,,Maurice,LA,70555,5,337-898-9404,W,M,D,310,12/31/2010,1/1/2007,Mr. Villien +Alderman at Large ,City of Kaplan ,,,,LA,,,VERMILION,Kirk Champagne,108 Vermilion St.,,Kaplan,LA,70548,5,337-643-1069,W,M,D,310,6/30/2010,7/1/2006,Mr. Champagne +Councilman ,"District A, City of Abbeville ",101 N. State St.,,Abbeville,LA,70510,337-893-8550,VERMILION,Louis Joe Hardy,124 Alan Ln.,,Abbeville,LA,70510,5,337-893-3336,W,M,D,310,6/30/2010,7/1/2006,Mr. Hardy +Councilman ,"District B, City of Abbeville ",101 N. State St.,,Abbeville,LA,70510,337-893-8550,VERMILION,"Francis Touchet, Jr.",2328 Helen St.,,Abbeville,LA,70510,5,337-893-5270,W,M,D,310,6/30/2010,7/1/2006,Mr. Touchet +Councilman ,"District C, City of Abbeville ",101 N. State St.,,Abbeville,LA,70510,337-893-8550,VERMILION,Carbett Duhon,1507 S. Jefferson St.,,Abbeville,LA,70510,5,337-893-1967,W,M,D,310,6/30/2010,7/1/2006,Mr. Duhon +Councilman ,"District C, City of Abbeville ",101 N. State St.,,Abbeville,LA,70510,337-893-8550,VERMILION,"Carbett Duhon, ",1507 S. Jefferson St.,,Abbeville,LA,70510-7424,10,337-893-1967,W,M,D,310,,, +Councilman ,"District D, City of Abbeville ",101 N. State St.,,Abbeville,LA,70510,337-893-8550,VERMILION,Wayne Landry,508 Kibbie St.,,Abbeville,LA,70510,5,337-898-0797,B,M,,310,6/30/2010,10/14/2008,Mr. Landry +Councilman ,"District D, City of Abbeville ",101 N. State St.,,Abbeville,LA,70510,337-893-8550,VERMILION,"Wayne Landry, ",805 Kibbe St.,,Abbeville,LA,70510-6933,10,337-898-0790,B,M,D,310,,, +DPEC Member ,at Large ,,,,LA,,,VERNON,Alton Bailey,147 Powell Dr.,,Leesville,LA,71446,5,337-238-2936,B,M,D,54,2/20/2012,2/20/2008,Mr. Bailey +DPEC Member ,District 1 ,,,,LA,,,VERNON,,,,,,,0,,,,,56,,, +DPEC Member ,District 2 ,,,,LA,,,VERNON,,,,,,,0,,,,,56,,, +DPEC Member ,District 3 ,,,,LA,,,VERNON,,,,,,,0,,,,,56,,, +DPEC Member ,District 4 ,,,,LA,,,VERNON,,,,,,,0,,,,,56,,, +DPEC Member ,District 5 ,,,,LA,,,VERNON,,,,,,,0,,,,,56,,, +DPEC Member ,District 6 ,,,,LA,,,VERNON,,,,,,,0,,,,,56,,, +DPEC Member ,District 7 ,,,,LA,,,VERNON,,,,,,,0,,,,,56,,, +DPEC Member ,District 8 ,,,,LA,,,VERNON,,,,,,,0,,,,,56,,, +DPEC Member ,District 9 ,,,,LA,,,VERNON,Aarlene Campion,2056 Columbus Cir,,Leesville,LA,71446,5,337-397-0998,W,F,D,56,2/20/2012,2/20/2008,Ms. Campion +DPEC Member ,District 10 ,,,,LA,,,VERNON,,,,,,,0,,,,,56,,, +DPEC Member ,District 11 ,,,,LA,,,VERNON,,,,,,,0,,,,,56,,, +DPEC Member ,District 12 ,,,,LA,,,VERNON,,,,,,,0,,,,,56,,, +RPEC Member ,at Large ,,,,LA,,,VERNON,Sharon Wilhelm,100 Walker St.,,Leesville,LA,71446,5,337-238-4452,W,F,R,64,2/20/2012,2/20/2008,Ms. Wilhelm +RPEC Member ,at Large ,,,,LA,,,VERNON,Sheri Wilhelm,100 Walker St.,,Leesville,LA,71446,5,337-238-4452,W,F,R,64,2/20/2012,2/20/2008,Ms. Wilhelm +RPEC Member ,District 1 ,,,,LA,,,VERNON,,,,,,,0,,,,,66,,, +RPEC Member ,District 2 ,,,,LA,,,VERNON,,,,,,,0,,,,,66,,, +RPEC Member ,District 3 ,,,,LA,,,VERNON,,,,,,,0,,,,,66,,, +RPEC Member ,District 4 ,,,,LA,,,VERNON,,,,,,,0,,,,,66,,, +RPEC Member ,District 5 ,,,,LA,,,VERNON,,,,,,,0,,,,,66,,, +RPEC Member ,District 6 ,,,,LA,,,VERNON,,,,,,,0,,,,,66,,, +RPEC Member ,District 7 ,,,,LA,,,VERNON,,,,,,,0,,,,,66,,, +RPEC Member ,District 8 ,,,,LA,,,VERNON,,,,,,,0,,,,,66,,, +RPEC Member ,District 9 ,,,,LA,,,VERNON,,,,,,,0,,,,,66,,, +RPEC Member ,District 10 ,,,,LA,,,VERNON,,,,,,,0,,,,,66,,, +RPEC Member ,District 11 ,,,,LA,,,VERNON,,,,,,,0,,,,,66,,, +RPEC Member ,District 12 ,,,,LA,,,VERNON,,,,,,,0,,,,,66,,, +Sheriff ,,P. O. Box 649,,Leesville,LA,71496,318-238-1311,VERNON,"Sam Craft, ",P.O. Box 649,,Leesville,LA,71496,5,337-238-4979,W,M,D,225,6/30/2012,7/1/2008,Sheriff Craft +Clerk of Court ,,P. O. Box 40,,Leesville,LA,71496-0040 ,318-238-1384,VERNON,"Willie Deon, Jr.",P.O. Box 40,,Leesville,LA,71496-0040 ,12,337-238-1399,W,M,D,230,6/30/2012,7/1/2008,Mr. Deon +Assessor ,,P.O. Box 1535,,Leesville,LA,71466,337-239-2167,VERNON,James A. Johnson,3564 Hwy. 399,,,LA,70656,5,318-358-5346,W,M,D,235,12/31/2012,1/1/2009,Mr. Johnson +Coroner ,,P.O. Box 337,,Leesville,LA,71496,337-392-0422,VERNON,Shawn P. Granger,379 Peavy Road,,Leesville,LA,71446,5,337-392-2330,W,M,R,240,3/25/2012,3/24/2008,Mr. Granger +Police Juror ,District 1 ,P. O. Box 1548,,Leesville,LA,,337-238-0324,VERNON,James B. Tuck,488 Cryer Rd.,,Leesville,LA,71446,5,337-392-8527,W,M,R,245,1/8/2012,1/14/2008,Mr. Tuck +Police Juror ,District 2 ,P. O. Box 1548,,Leesville,LA,71446,337-238-0324,VERNON,"""Pete"" Dowden",248 Dowden Loop,,Anacoco,LA,71403,5,337-238-9407,W,M,D,245,1/8/2012,1/14/2008,Mr. Dowden +Police Juror ,District 3 ,P. O. Box 1548,,Leesville,LA,71446,337-238-0324,VERNON,Tommy McMahon,P.O. Box 124,,Evans,LA,70639,5,337-286-5965,W,M,D,245,1/8/2012,1/14/2008,Mr. McMahon +Police Juror ,District 4 ,P. O. Box 1548,,Leesville,LA,71446,337-238-0324,VERNON,Jackie Grimes,137 Moore Rd.,,Leesville,LA,71446,5,337-238-5736,W,M,D,245,1/8/2012,1/14/2008,Mr. Grimes +Police Juror ,District 5 ,P. O. Box 1548,,Leesville,LA,71446,337-238-0324,VERNON,"Reginald ""Reggie"" Johnson",388 Boundary Rd.,,Pitkin,LA,70656,5,337-224-5783,W,M,D,245,1/8/2012,1/14/2008,Mr. Johnson +Police Juror ,District 6 ,P. O. Box 1548,,Leesville,LA,71446,337-238-0324,VERNON,Jerry Blair,268 Candi Ln.,,Leesville,LA,71446,5,337-383-1070,W,M,D,245,1/8/2012,1/14/2008,Mr. Blair +Police Juror ,District 7 ,P. O. Box 1548,,Leesville,LA,71446,337-238-0324,VERNON,Leonard Johnson,226 L Johnson Rd.,,Pitkin,LA,70656,5,337-328-7356,W,M,D,245,1/8/2012,1/14/2008,Mr. Johnson +Police Juror ,District 8 ,P. O. Box 1548,,Leesville,LA,71446,337-238-0324,VERNON,Melvin Haymon,171 B & G Loop,,Leesville,LA,71446,5,337-238-0621,W,M,D,245,1/8/2012,1/14/2008,Mr. Haymon +Police Juror ,District 9 ,P. O. Box 1548,,Leesville,LA,71446,337-238-0324,VERNON,"Sam B. Fulton, Jr.",P.O. Box 2565,,Leesville,LA,,0,337-238-9412,W,M,D,245,1/8/2012,1/14/2008,Mr. Fulton +Police Juror ,District 10 ,P. O. Box 1548,,Leesville,LA,71446,337-238-0324,VERNON,Curtis Clay,P.O. Box 805,,Leesville,LA,71496,5,337-239-7924,B,M,D,245,1/8/2012,1/14/2008,Mr. Clay +Police Juror ,District 11 ,P. O. Box 1548,,Leesville,LA,71446,337-238-0324,VERNON,"Joseph ""Bo"" Cryer",215 Stanley Rd.,,Leesville,LA,71446,5,337-238-4846,W,M,D,245,1/8/2012,1/14/2008,Mr. Cryer +Police Juror ,District 12 ,P. O. Box 1548,,Leesville,LA,71446,337-238-0324,VERNON,Kenny Haymon,247 Earl Haymon Rd.,,Leesville,LA,71446,5,337-239-2232,W,M,D,245,1/8/2012,1/14/2008,Mr. Haymon +City Judge ,"City Court, City of Leesville ",P. O. Box 1486,,Leesville,LA,71496-1486,318-238-1531,VERNON,"Elvin Fontenot, Jr.",803 Abe Allen Dr.,,Leesville,LA,71446,5,337-239-0062,W,M,D,250,12/31/2014,1/1/2009,Judge Fontenot +City Marshal ,"City Court, City of Leesville ",P.O. Box 1486,,Leesville,LA,71496-1486,,VERNON,Robert Pynes,251 Alexandria Hwy.,,Leesville,LA,71446,5,337-239-2481,W,M,D,250,12/31/2014,1/1/2009,Marshal Pynes +Member of School Board,District 1,201 Belview Rd.,,Leesville,LA,71446,337-239-1628,VERNON,Randi Schamerhorn Gleason,207 Werner Rd.,,Leesville,LA,71446,5,337-239-7465,W,F,R,255,12/31/2010,11/14/2008,Ms. Gleason +Member of School Board,District 1,201 Belview Rd.,,Leesville,LA,71446,337-239-1628,VERNON,Mel Harris,263 Stacy,,Leesville,LA,71446,5,337-238-9714,W,M,R,255,12/31/2010,1/1/2007,Mr. Harris +Member of School Board,District 1,201 Belview Rd.,,Leesville,LA,71446,337-239-1628,VERNON,"Robert Pynes, Jr.",1614 W. Hawthorne Rd.,,Leesville,LA,71446,5,337-238-1236,W,M,D,255,12/31/2010,1/1/2007,Mr. Pynes +Member of School Board,District 1,201 Belview Rd.,,Leesville,LA,71446,337-239-1628,VERNON,Mark H. Smith,298 Country Club Fairway,,Leesville,LA,71446,5,337-238-1636,W,M,D,255,12/31/2010,1/1/2007,Mr. Smith +Member of School Board,District 1,201 Belview Rd.,,Leesville,LA,71446,337-239-1628,VERNON,Steve Woods,121 St. Denis Lane,,Leesville,LA,71446,5,337-392-0212,W,M,R,255,12/31/2010,1/1/2007,Mr. Woods +Member of School Board ,District 2 ,201 Belview Rd.,,Leesville,LA,71446,337-239-1628,VERNON,Ricky Reese,384 Holly Estates Rd.,,Anacoco,LA,71403,5,337-238-5552,W,M,R,255,12/31/2010,1/1/2007,Mr. Reese +Member of School Board ,District 3 ,201 Belview Rd.,,Leesville,LA,71446,337-239-1628,VERNON,Beryl Ford,1461 Ford's Dairy Rd.,,New Llano,LA,71461,5,337-238-0103,W,F,D,255,12/31/2010,1/1/2007,Ms. Ford +Member of School Board ,District 4 ,201 Belview Rd.,,Leesville,LA,71446,337-239-1628,VERNON,"W.R. ""Randy"" Martin",12521 Lake Charles Hwy,,Leesville,LA,71446,5,337-537-1032,W,M,D,255,12/31/2010,1/1/2007,Mr. Martin +Member of School Board ,District 5 ,201 Belview Rd.,,Leesville,LA,71446,337-239-1628,VERNON,Michael Perkins,232 M Perkins Rd.,,Pitkin,LA,70656,5,318-358-3253,W,M,O,255,12/31/2010,1/1/2007,Mr. Perkins +Member of School Board ,District 6 ,201 Belview Rd.,,Leesville,LA,71446,337-239-1628,VERNON,"Vernon Travis, Jr.",1323 Pine Rd.,,Leesville,LA,71446,5,337-392-8802,B,M,D,255,12/31/2010,1/1/2007,Mr. Travis +Member of School Board ,District 7 ,201 Belview Rd.,,Leesville,LA,71446,337-239-1628,VERNON,Gaye W. McKee,P.O. Box 556,,Rosepine,LA,70659,5,337-463-9243,W,F,D,255,12/31/2010,1/1/2007,Mr. McKee +Member of School Board ,District 8 ,201 Belview Rd.,,Leesville,LA,71446,337-239-1628,VERNON,"Kay Wilbanks, ",201 Belview Rd,,Leesville,LA,71446,5,,,,,255,,2/4/2010,Ms. Wilbanks +Justice of the Peace ,Justice of the Peace Ward 2 ,196 Holly Grove Rd.,,Anacoco,LA,71403,337-239-9175,VERNON,Rodney Haymon,196 Holly Grove Rd.,,Anacoco,LA,71403,5,337-239-9175,W,M,D,265,12/31/2014,1/1/2009,Mr. Haymon +Justice of the Peace ,Justice of the Peace Ward 3 ,P.O. Box 101,,Evans,LA,70639,337-286-5907,VERNON,John Bonner,P.O. Box 101,,Evans,LA,70639,5,337-286-5907,W,M,,265,12/31/2014,1/1/2009,Mr. Bonner +Justice of the Peace ,Justice of the Peace Ward 4 ,207 Ray Cook Rd.,,Leesville,LA,71446,337-537-1967,VERNON,Arlene J. Cook,207 Ray Cook Rd.,,Leesville,LA,71446,5,337-537-1967,W,F,,265,12/31/2014,1/1/2009,Ms. Cook +Justice of the Peace ,Justice of the Peace Ward 5 ,P.O. Box 54,,Pitkin,LA,70656,318-358-3562,VERNON,Ellis Yeley,132 P. Lacaze Rd.,,Pitkin,LA,70656,5,318-358-5351,W,M,,265,12/31/2014,1/1/2009,Mr. Yeley +Justice of the Peace ,Justice of the Peace Ward 6 ,P.O. Box 176,,Simpson,LA,71474,337-383-7957,VERNON,Bobby Hillman,3527 Hwy. 465,,Leesville,LA,71446,5,337-383-6177,W,M,O,265,12/31/2014,1/1/2009,Mr. Hillman +Justice of the Peace ,Justice of the Peace Ward 7 ,226 L. Johnson Rd.,,Pitkin,LA,70656,337-328-7356,VERNON,"Lavell ""Pete"" Johnson",4935 Churchman Rd.,,Pitkin,LA,70656,5,337-328-7948,W,M,D,265,12/31/2014,1/1/2009,Mr. Johnson +Justice of the Peace ,Justice of the Peace Ward 8 ,189 Boswell Rd.,,Leesville,LA,71446,337-659-3157,VERNON,Ruby Oleta Boswell,189 Boswell Rd.,,Leander,LA,71438,5,318-659-3157,W,F,D,265,12/31/2014,1/1/2009,Ms. Boswell +Constable ,Justice of the Peace Ward 2 ,P.O. Box 561,,Anacoco,LA,71403,337-239-9452,VERNON,Roger Smart,P.O. Box 561,,Anacoco,LA,71403,5,337-239-9452,O,M,D,267,12/31/2014,1/1/2009,Mr. Smart +Constable ,Justice of the Peace Ward 3 ,P.O. Box 148,,Evans,LA,70639,337-286-5237,VERNON,Bobby Minion,P.O. Box 146,,Evans,LA,70639,5,337-286-5237,W,M,,267,12/31/2014,1/1/2009,Mr. Minion +Constable ,Justice of the Peace Ward 4 ,P.O. Box 887,,New Llano,LA,71461,337-537-0532,VERNON,Dan Atchison,318 Blackmon Rd.,,Leesville,LA,71446,5,337-392-0748,W,M,R,267,12/31/2014,1/1/2009,Mr. Atchinson +Constable ,Justice of the Peace Ward 5 ,1052 Hwy. 113,,Pitkin,LA,70656,318-634-7685,VERNON,Robert M. Lacaze,6963 Hwy. 463,,Pitkin,LA,70656,5,318-358-5269,W,M,D,267,12/31/2014,1/1/2009,Mr. Lacaze +Constable ,Justice of the Peace Ward 6 ,P.O. Box 63,,Simpson,LA,71474,337-383-7758,VERNON,"Thomas ""Tommy"" Jackson",P.O. Box 476,,Simpson,LA,71474,5,337-383-7384,W,M,R,267,12/31/2014,1/1/2009,Mr. Jackson +Constable ,Justice of the Peace Ward 7 ,131 Lavelle Johnson Rd.,,Pitkin,LA,70656,318-328-8435,VERNON,Lealon Johnson,131 Lavelle Johnson Rd.,,Pitkin,LA,70656,5,337-328-8436,W,M,D,267,12/31/2014,1/1/2009,Mr. Johnson +Constable ,Justice of the Peace Ward 8 ,176 Ronnie Hagan Rd.,,Leesville,LA,71446,337-239-2354,VERNON,"R. G. ""Ronnie"" Hagan",176 Ronnie Hagan Rd.,,Leesville,LA,71446,5,337-239-2354,W,M,D,267,12/31/2014,1/1/2009,Mr. Hagan +Mayor ,City of Leesville ,P. O. Drawer 350,,Leesville,LA,,337-239-2444,VERNON,Betty Westerchil,101 W. Lee St.,,Leesville,LA,71446,5,337-239-2444,W,F,D,300,6/30/2010,7/1/2006,Mayor Westerchil +Mayor ,Town of Hornbeck ,P. O. Box 129,,Hornbeck,LA,,318-565-4659,VERNON,Clarence Beebe,P.O. Box 292,,Hornbeck,LA,71439,5,318-565-4379,W,M,,300,12/31/2010,1/1/2007,Mr. Beebe +Mayor ,Town of New Llano ,109 Stanton St.,,New Llano,LA,,337-239-3670,VERNON,Freddie Boswell,105 Burnley St.,,New Llano,LA,71461,5,337-239-2952,W,M,D,300,6/30/2010,7/1/2006,Mayor Boswell +Mayor ,Town of Rosepine ,P. O. Box 528,,Rosepine,LA,,337-463-8908,VERNON,Bruce Ward,P.O. Box 989,,Rosepine,LA,70659,5,337-463-8371,W,M,R,300,12/31/2010,1/1/2007,Mayor Ward +Mayor ,Village of Anacoco ,P. O. Box 280,,Anacoco,LA,,337-239-0215,VERNON,Leroy Cooley,P.O. Box 528,,Anacoco,LA,71403,5,337-239-0215,W,M,R,300,12/31/2012,1/1/2009,Mr. Cooley +Mayor ,Village of Simpson ,P. O. Box 278,,Simpson,LA,,337-383-7731,VERNON,Roger Bennett,P.O. Box 43,,Simpson,LA,71474,5,337-383-7407,W,M,R,300,12/31/2012,1/1/2009,Mr. Bennett +Chief of Police ,Town of Hornbeck ,P. O. Box 129,,Hornbeck,LA,71439,318-565-4659,VERNON,Stieve E. Holley,1272 Trimble St.,,Hornbeck,LA,71439,5,318-565-4659,W,M,D,305,12/31/2010,1/1/2007,Mr. Holley +Chief of Police ,Town of New Llano ,P. O. Box 306,,New Llano,LA,71461,337-239-3670,VERNON,Danny Hunt,503 Magnolia St.,,New Llano,LA,71461,5,337-392-6045,W,M,D,305,6/30/2010,7/1/2006,Chief Hunt +Chief of Police ,Town of Rosepine ,P. O. Box 528,,Rosepine,LA,70634,337-463-8908,VERNON,James Dennis Parrott,P.O. Box 529,,Rosepine,LA,70659,5,337-463-8249,W,M,D,305,12/31/2010,1/1/2007,Chief Parrott +Chief of Police ,Village of Anacoco ,P. O. Box 280,,Anacoco,LA,71403,337-239-0215,VERNON,Randall Bryan,P.O. Box 528,,Anacoco,LA,71403,5,337-239-0215,W,M,,305,12/31/2012,1/1/2009,Chief Bryan +Chief of Police ,Village of Simpson ,P.O. Box 278,,Simpson,LA,71474,337-383-7731,VERNON,"Houston ""Tully"" Burns, Jr.",P. O. Box 213,,Simpson,LA,71474,5,337-383-7698,W,M,,305,12/31/2012,1/1/2009,Chief Burns +Councilman at Large ,City of Leesville ,P.O. Drawer 350,,Leesville,LA,71446,337-239-2444,VERNON,"Alice Guess, ",1005 W. Union St.,,Leesville,LA,71446-3228,10,337-238-0252,B,F,D,308,,, +Councilman at Large ,City of Leesville ,P.O. Drawer 350,,Leesville,LA,71446,337-239-2444,VERNON,Alice Upshaw Guess,1005 West Union St.,,Leesville,LA,71446,5,337-238-0252,B,F,D,308,6/30/2010,7/1/2006,Ms. Guess +Councilman at Large ,City of Leesville ,P.O. Drawer 350,,Leesville,LA,71446,337-239-2444,VERNON,"""Joe"" McKee, ",1307 Ronald Dr.,,Leesville,LA,71446,5,337-238-9533,W,M,D,308,,, +Councilman at Large ,City of Leesville ,P.O. Drawer 350,,Leesville,LA,71446,337-239-2444,VERNON,Joe McKee,P.O. Box 202,,Leesville,LA,71496,5,337-238-9533,W,M,D,308,6/30/2010,7/1/2006,Mr. McKee +Alderman ,Town of Hornbeck ,P. O. Box 129,,Hornbeck,LA,71439,318-927-3555,VERNON,Doyle Carpenter,P.O. Box 81,,Hornbeck,LA,71439,5,318-565-4597,W,M,D,310,12/31/2010,1/1/2007,Mr. Carpenter +Alderman ,Town of Hornbeck ,P. O. Box 129,,Hornbeck,LA,71439,318-927-3555,VERNON,Jose S. Chavez,P.O. Box 167,,Hornbeck,LA,71439,5,318-565-4374,O,M,R,310,12/31/2010,1/1/2007,Mr. Chavez +Alderman ,Town of Hornbeck ,P. O. Box 129,,Hornbeck,LA,71439,318-927-3555,VERNON,"""Greg"" Lantier",189 Reeks Lane Lot #1,,Hornbeck,LA,71439,5,318-565-8497,W,M,,310,12/31/2010,1/1/2007,Mr. Lantier +Alderman ,Town of Hornbeck ,P. O. Box 129,,Hornbeck,LA,71439,318-927-3555,VERNON,Lawrence Trotti,P.O. Box 275,,Hornbeck,LA,71439,5,318-565-0010,W,M,D,310,12/31/2010,1/1/2007,Mr. Trottie +Alderman ,Town of Hornbeck ,P. O. Box 129,,Hornbeck,LA,71439,318-927-3555,VERNON,Terri Whiddon,P.O. Box 156,,Hornbeck,LA,71439,5,318-565-4924,W,F,D,310,12/31/2010,1/1/2007,Ms. Whiddon +Alderman ,Town of Rosepine ,P. O. Box 528,,Rosepine,LA,70634,337-463-8908,VERNON,"James ""Jimmy"" Cryer",7339 Main St.,,DeRidder,LA,70634,5,337-463-8778,W,M,D,310,12/31/2010,1/1/2007,Mr. Cryer +Alderman ,Town of Rosepine ,P. O. Box 528,,Rosepine,LA,70634,337-463-8908,VERNON,Damon Johnson,P.O. Box 982,,Rosepine,LA,70659,5,337-463-2406,W,M,R,310,12/31/2010,1/1/2007,Mr. Johnson +Alderman ,Town of Rosepine ,P. O. Box 528,,Rosepine,LA,70634,337-463-8908,VERNON,Daniel Martinez,P.O. Box 87,,Rosepine,LA,70659,5,337-462-2119,O,M,D,310,12/31/2010,1/1/2007,Mr. Martinez +Alderman ,Town of Rosepine ,P. O. Box 528,,Rosepine,LA,70634,337-463-8908,VERNON,Billy N. Owens,P. O. Box 1138,,Rosepine,LA,70659,5,337-463-7636,W,M,R,310,12/31/2010,10/27/2009,Mr. Owens +Alderman ,Town of Rosepine ,P. O. Box 528,,Rosepine,LA,70634,337-463-8908,VERNON,Jeffery Solinsky,8759 Main St.,,Deridder,LA,70634,5,337-462-0326,W,M,R,310,12/31/2010,1/1/2007,Mr. Solinsky +Alderman ,Village of Simpson ,P.O. Box 278,,Simpson,LA,71474,337-383-7731,VERNON,"Carol ""Ma Carol"" Adams",6949 Hwy 8,,Leesville,LA,71446,5,337-383-6065,W,F,R,310,12/31/2012,1/22/2009,Ms. Adams +Alderman ,Village of Simpson ,P.O. Box 278,,Simpson,LA,71474,337-383-7731,VERNON,Gerald Cooley,P.O. Box 235,,Simpson,LA,71474,5,337-383-7702,W,M,R,310,12/31/2012,1/1/2009,Mr. Cooley +Alderman ,Village of Simpson ,P.O. Box 278,,Simpson,LA,71474,337-383-7731,VERNON,Neva Knight,P.O. Box 81,,Simpson,LA,71474,5,337-383-6330,W,F,,310,12/31/2012,1/1/2009,Ms. Knight +Council Member ,Village of Anacoco ,P. O. Box 280,,Anacoco,LA,71403,337-239-0215,VERNON,Howard Keith Lewing,P. O. Box 16,,Anacoco,LA,71403,5,337-238-3631,W,M,D,310,12/31/2012,1/1/2009,Mr. Lewing +Council Member ,Village of Anacoco ,P. O. Box 280,,Anacoco,LA,71403,337-239-0215,VERNON,Archie Martin,P. O. Box 513,,Anacoco,LA,71403,5,337-238-0418,W,M,D,310,12/31/2012,1/1/2009,Mr. Martin +Council Member ,Village of Anacoco ,P. O. Box 280,,Anacoco,LA,71403,337-239-0215,VERNON,LaVerne Miers,P. O. Box 535,,Anacoco,LA,71403,5,337-239-7128,W,F,R,310,12/31/2012,1/1/2009,Ms. Miers +Councilman ,"District 1, City of Leesville ",P. O. Drawer 350,,Leesville,LA,71446,337-239-2444,VERNON,"""Pat"" Martinez, ",501 N. First St.,,Leesville,LA,71446-3503,10,337-238-5508,W,F,D,310,,, +Councilman ,"District 1, City of Leesville ",P. O. Drawer 350,,Leesville,LA,71446,337-239-2444,VERNON,Pat Martinez,501 N. First St.,,Leesville,LA,71446,5,337-238-5508,W,F,D,310,6/30/2010,7/1/2006,Ms. Martinez +Councilman ,"District 2, City of Leesville ",P. O. Drawer 350,,Leesville,LA,71446,337-239-2444,VERNON,Steve Kennedy,1205 West St.,,Leesville,LA,71446,5,337-238-1319,B,M,D,310,6/30/2010,7/1/2006,Mr. Kennedy +Councilman ,"District 3, City of Leesville ",P. O. Drawer 350,,Leesville,LA,71446,337-239-2444,VERNON,"""Danny"" Dowd",906 Pinckney Ave.,,Leesville,LA,71446,5,337-238-0904,W,M,R,310,6/30/2010,7/1/2006,Mr. Dowd +Councilman ,"District 4, City of Leesville ",P. O. Drawer 350,,Leesville,LA,71446,337-239-2444,VERNON,"William M. ""Mike"" Elliott",P.O. Box 1287,,Leesville,LA,71496,5,337-239-2535,W,M,R,310,6/30/2010,7/1/2006,Mr. Elliott +Councilman ,"District 4, City of Leesville ",P. O. Drawer 350,,Leesville,LA,71446,337-239-2444,VERNON,"William ""Mike"" Elliott, ",2006 Allison St.,,Leesville,LA,71446-5104,10,337-239-2535,W,M,R,310,,, +Councilman ,Town of New Llano ,P. O. Box 306,,New Llano,LA,71461,337-239-3670,VERNON,"""Charlie"" Balthrop",104 Franklin St.,,New Llano,LA,71461,5,337-238-1216,W,M,D,310,6/30/2010,7/1/2006,Mr. Balthrop +Councilman ,Town of New Llano ,P. O. Box 306,,New Llano,LA,71461,337-239-3670,VERNON,Charlotte McHenry Cooper,414 Vernon St.,,New Llano,LA,71461,5,337-238-5347,B,F,D,310,6/30/2010,7/1/2006,Ms. Cooper +Councilman ,Town of New Llano ,P. O. Box 306,,New Llano,LA,71461,337-239-3670,VERNON,Terry Speicher,505 Magnolia St.,,New Llano,LA,71461,5,337-392-6334,W,M,R,310,6/30/2010,7/1/2006,Mr. Speicher +Councilman ,Town of New Llano ,P. O. Box 306,,New Llano,LA,71461,337-239-3670,VERNON,Carolyn H. Todd,129 Raymond Dr.,,New Llano,LA,71461,5,337-238-4477,B,F,D,310,6/30/2010,7/1/2006,Ms. Todd +Councilman ,Town of New Llano ,P. O. Box 306,,New Llano,LA,71461,337-239-3670,VERNON,Erwin Wilson,100 Bullock Dr.,,New Llano,LA,71461,5,337-238-4340,B,M,D,310,6/30/2010,7/1/2006,Mr. Wilson +DPEC Member ,at Large ,,,,LA,,,WASHINGTON,Dianne C. Applewhite,350 Mart Stewart Rd.,,Bogalusa,LA,70427,5,985-732-3750,W,F,D,54,2/20/2012,2/20/2008,Ms. Applewhite +DPEC Member ,at Large ,,,,LA,,,WASHINGTON,Stephen Genco,1336 Founders Dr.,,Bogalusa,LA,70427,5,985-735-8452,W,M,D,54,2/20/2012,2/20/2008,Mr. Genco +DPEC Member ,at Large ,,,,LA,,,WASHINGTON,Kelvin D. May,65321 Jones Creek Rd.,,Angie,LA,70426,5,985-732-2389,B,M,D,54,2/20/2012,2/20/2008,Mr. May +DPEC Member ,at Large ,,,,LA,,,WASHINGTON,"""Brad"" Orman",1049 Main St.,,Franklinton,LA,70438,5,985-839-2788,W,M,D,54,2/20/2012,2/20/2008,Mr. Orman +DPEC Member ,at Large ,,,,LA,,,WASHINGTON,Patsy Ritchie,25255 Hwy. 62,,Franklinton,LA,70438,5,985-848-5558,W,F,D,54,2/20/2012,2/20/2008,Ms. Ritchie +DPEC Member ,District 1 ,,,,LA,,,WASHINGTON,Melvin Keith,172 White Williams Rd.,,Bogalusa,LA,70427,5,985-735-8875,B,M,D,56,2/20/2012,2/20/2008,Mr. Keith +DPEC Member ,District 2 ,,,,LA,,,WASHINGTON,Charles E. Mizell,P.O. Box 433,,Bogalusa,LA,70429,5,985-735-7918,W,M,D,56,2/20/2012,2/20/2008,Mr. Mizell +DPEC Member ,District 3 ,,,,LA,,,WASHINGTON,Sally Rosenblum,1330 Charwood Dr.,,Bogalusa,LA,70427,5,985-732-2654,W,F,D,56,2/20/2012,2/20/2008,Ms. Rosenblum +DPEC Member ,District 4 ,,,,LA,,,WASHINGTON,Marilyn Bailey Crews,303 Carolina Ave.,,Bogalusa,LA,70427,5,985-732-2231,B,F,D,56,2/20/2012,2/20/2008,Ms. Crews +DPEC Member ,District 5 ,,,,LA,,,WASHINGTON,Maxie C. Gerald,28197 Ed Gerald Rd.,,Franklinton,LA,70438,5,985-848-5305,W,F,D,56,2/20/2012,2/20/2008,Ms. Gerald +DPEC Member ,District 6 ,,,,LA,,,WASHINGTON,Desmond Deshon Smith,47137 George Jenkins Rd.,,Franklinton,LA,70438,5,985-839-6977,B,M,D,56,2/20/2012,2/20/2008,Mr. Smith +DPEC Member ,District 7 ,,,,LA,,,WASHINGTON,"""Beryl"" Schilling",P.O. Box 3,,Mt. Hermon,LA,70450,5,985-877-5750,W,M,D,56,2/20/2012,2/20/2008,Mr. Schilling +RPEC Member ,at Large ,,,,LA,,,WASHINGTON,Georgine Holcombe,1130 Florida Ave.,,Bogalusa,LA,70427,5,985-732-9921,W,F,R,64,2/20/2012,2/20/2008,Ms. Holocombe +RPEC Member ,District 1 ,,,,LA,,,WASHINGTON,,,,,,,0,,,,,66,,, +RPEC Member ,District 2 ,,,,LA,,,WASHINGTON,,,,,,,0,,,,,66,,, +RPEC Member ,District 3 ,,,,LA,,,WASHINGTON,,,,,,,0,,,,,66,,, +RPEC Member ,District 4 ,,,,LA,,,WASHINGTON,,,,,,,0,,,,,66,,, +RPEC Member ,District 5 ,,,,LA,,,WASHINGTON,,,,,,,0,,,,,66,,, +RPEC Member ,District 6 ,,,,LA,,,WASHINGTON,,,,,,,0,,,,,66,,, +RPEC Member ,District 7 ,,,,LA,,,WASHINGTON,,,,,,,0,,,,,66,,, +Sheriff ,,P. O. Box 668,,Franklinton,LA,70438,985-839-4468,WASHINGTON,"Robert J. ""Bobby"" Crowe",P.O. Box 668,,Franklinton,LA,70438,5,985-735-0507,W,M,D,225,6/30/2012,7/1/2008,Sheriff Crowe +Clerk of Court ,,P. O. Box 607,,Franklinton,LA,70438,985-839-7821,WASHINGTON,Johnny D. Crain,P.O. Box 607,,Franklinton,LA,70438,5,985-732-7275,W,M,D,230,6/30/2012,7/1/2008,Mr. Crain +Assessor ,,908 Washington St.,,Franklin,LA,70438,985-839-7815,WASHINGTON,"""Randy Country"" Seal",25369 Military Rd.,,Varnado,LA,70426,5,985-735-6807,W,M,D,235,12/31/2012,1/1/2009,Mr. Seal +Coroner ,,P.O. Box 220,,Bogulusa,LA,70429,985-735-8382,WASHINGTON,"""Roger"" Casama",P.O. Box 220,,Bogaluza,LA,70429-0220 ,11,985-732-1564,O,M,D,240,3/25/2012,3/24/2008,Mr. Casama +Parish President ,,909 Pearl St.,,Franklinton,LA,70438,985-839-7825,WASHINGTON,Richard Ned Thomas,52061 John Forbes Rd.,,Franklinton,LA,70438,5,985-848-5918,W,M,D,243,1/9/2012,1/14/2008,Mr. Thomas +Council Member,District 1,909 Pearl St.,,Franklinton,LA,70438,985-839-7825,WASHINGTON,"""Ken"" Wheat",1602 Meadowlea St.,,Bogalusa,LA,70427,5,985-516-5076,W,M,D,245,1/9/2012,1/14/2008,Mr. Wheat +Council Member ,District 2 ,909 Pearl St.,,Franklinton,LA,70438,985-839-7825,WASHINGTON,"Michael ""Mike"" Fussell",16444 Hwy 16,,Franklinton,LA,70438,5,985-839-9669,W,M,D,245,1/9/2012,1/14/2008,Mr. Fussell +Council Member ,District 3 ,909 Pearl St.,,Franklinton,LA,70438,985-839-7825,WASHINGTON,"""Chuck"" Nassauer",1305 Founders Dr.,,Bogalusa,LA,70427,5,985-735-0620,W,M,D,245,1/9/2012,1/14/2008,Mr. Nassauer +Council Member ,District 4 ,909 Pearl St.,,Franklinton,LA,70438,985-839-7825,WASHINGTON,Andre Johnson,620 Greenburg St.,,Bogalusa,LA,70427,5,985-732-7242,B,M,D,245,1/9/2012,1/14/2008,Mr. Johnson +Council Member ,District 5 ,909 Pearl St.,,Franklinton,LA,70438,985-839-7825,WASHINGTON,"""Randy"" Thomas",28244 Luke Pace Rd.,,Angie,LA,70426,5,985-848-2911,W,M,R,245,1/9/2012,1/14/2008,Mr. Thomas +Council Member ,District 6 ,909 Pearl St.,,Franklinton,LA,70438,985-839-7825,WASHINGTON,"""Greg"" Route",1828 Desmare St.,,Franklinton,LA,70438,5,985-839-4754,B,M,D,245,1/9/2012,1/14/2008,Mr. Route +Council Member ,District 7 ,909 Pearl St.,,Franklinton,LA,70438,985-839-7825,WASHINGTON,Aubrey L. Posey,40643 Hwy. 1056,,Franklinton,LA,70438,5,985-839-4125,W,M,D,245,1/9/2012,1/14/2008,Mr. Posey +City Judge ,"City Court, City of Bogalusa ",P. O. Box 518,,Bogalusa,LA,70429-0518 ,985-732-6204,WASHINGTON,Robert J. Black,302 Louisiana Ave.,,Bogalusa,LA,70427,5,985-735-6800,W,M,R,250,12/31/2014,1/1/2009,Judge Black +City Marshal ,"City Court, City of Bogalusa ",P. O. Box 518,,Bogalusa,LA,70429-0518 ,985-732-6281,WASHINGTON,"""Wayne"" Adams",1633 Louis Ln.,,Bogalusa,LA,70427,5,985-735-8025,W,M,D,250,12/31/2014,1/1/2009,Marshal Adams +Member of School Board ,District 1 ,P. O. Box 587,,Franklinton,LA,70438,985-839-3436,WASHINGTON,"""Dan"" Slocum",P.O. Box 118,,Mt. Hermon,LA,70450,5,985-877-4291,W,M,D,255,12/31/2010,1/1/2007,Mr. Slocum +Member of School Board ,"District 1, City of Bogalusa ",P. O. Box 310,,Bogalusa,LA,70427,985-281-2100,WASHINGTON,Paul D. Kates,627 Montgomery St.,,Bogalusa,LA,70427,5,,B,M,D,255,12/31/2010,1/1/2007,Mr. Kates +Member of School Board ,District 2 ,P. O. Box 587,,Franklinton,LA,70438,985-839-3436,WASHINGTON,"Karl ""Buster"" Bickham, Jr.",19086 Hwy. 25,,Franklinton,LA,70438,5,985-839-2667,W,M,D,255,12/31/2010,1/1/2007,Mr. Bickham +Member of School Board ,"District 2, City of Bogalusa ",P. O. Box 310,,Bogalusa,LA,70427,985-281-2100,WASHINGTON,Eleanor Watson Duke,1318 Colorado St.,,Bogalusa,LA,70427,5,985-732-2366,W,F,R,255,12/31/2010,1/1/2007,Ms. Duke +Member of School Board ,District 3 ,P. O. Box 587,,Franklinton,LA,70438,985-839-3436,WASHINGTON,"Bruce L. Brown, Sr.",47270 Hwy. 438,,Franklinton,LA,70438,5,985-795-2766,B,M,D,255,12/31/2010,1/1/2007,Mr. Brown +Member of School Board ,"District 3, City of Bogalusa ",P. O. Box 310,,Bogalusa,LA,70427,985-281-2100,WASHINGTON,Raymond E. Mims,1714 St. Louis St.,,Bogalusa,LA,70427,5,985-735-5146,B,M,D,255,12/31/2010,1/1/2007,Mr. Mims +Member of School Board ,District 4 ,P. O. Box 587,,Franklinton,LA,70438,985-839-3436,WASHINGTON,John E. Breland,54188 Hwy. 62,,Franklinton,LA,70438,5,985-848-2211,W,M,D,255,12/31/2010,10/14/2008,Mr. Breland +Member of School Board ,"District 4, City of Bogalusa ",P. O. Box 310,,Bogalusa,LA,70427,985-281-2100,WASHINGTON,Adam Kemp,12683 Hwy 21 South,,Bogalusa,LA,70427,5,985-732-5707,W,M,R,255,12/31/2010,1/1/2007,Mr. Kemp +Member of School Board ,District 5 ,P. O. Box 587,,Franklinton,LA,70438,985-839-3436,WASHINGTON,Mary S. Adams,63064 Main Street,,Varnado,LA,70467,5,985-732-5404,W,F,O,255,12/31/2010,1/1/2007,Mr. Adams +Member of School Board ,"District 5, City of Bogalusa ",P. O. Box 310,,Bogalusa,LA,70427,985-281-2100,WASHINGTON,Robin Simmons,1100 West 14th Street,,Bogalusa,LA,70427,5,985-735-6300,W,F,R,255,12/31/2010,1/1/2007,Ms. Simmons +Member of School Board ,District 6 ,P. O. Box 587,,Franklinton,LA,70438,985-839-3436,WASHINGTON,Dewitt Perry,46202 B. R. Corkern Rd.,,Franklinton,LA,70438,5,985-839-9636,W,M,D,255,12/31/2010,1/1/2007,Mr. Perry +Member of School Board ,"District 6, City of Bogalusa ",P. O. Box 310,,Bogalusa,LA,70427,985-281-2100,WASHINGTON,Michael H. Applewhite,350 Mart Stewart Road,,Bogalusa,LA,70427,5,985-732-3750,W,M,O,255,12/31/2010,1/1/2007,Mr. Applewhite +Member of School Board ,District 7 ,P. O. Box 587,,Franklinton,LA,70438,985-839-3436,WASHINGTON,Lee Alan McCain,45505 Jenkins Rd. #2,,Franklinton,LA,70438,5,985-839-3019,W,M,D,255,12/31/2010,1/1/2007,Mr. McCain +Member of School Board ,"District 7, City of Bogalusa ",P.O. Box 310,,Bogalusa,LA,70427,985-281-2100,WASHINGTON,Brad Williams,59303 Hwy. 10,,Bogalusa,LA,70427,5,985-735-9818,W,M,,255,12/31/2010,1/1/2007,Mr. Williams +Member of School Board ,District 8 ,P.O. Box 587,,Franklinton,LA,70438,985-839-3436,WASHINGTON,Matthew Tate,P.O. Box 368,,Franklinton,LA,70438,5,985-839-2693,B,M,D,255,12/31/2010,1/1/2007,Mr. Tate +Member of School Board ,District 9 ,P.O. Box 587,,Franklinton,LA,70438,985-839-3436,WASHINGTON,Freddie H. Jefferson,P.O. Box,,Angie,LA,70426,5,985-986-2460,B,M,D,255,12/31/2010,1/1/2007,Mr. Jefferson +Justice of the Peace ,Justice of the Peace Ward 1 ,42535 Bethel Rd.,,Franklinton,LA,70438,985-839-2657,WASHINGTON,Darwin Sharp,17313 Kat Kaw Rd.,,Franklinton,LA,70438,5,985-839-4643,W,M,D,265,12/31/2014,1/1/2009,Mr. Sharp +Justice of the Peace ,Justice of the Peace Ward 2 ,29601 Holland Brock Rd.,,Mt.Hermon,LA,70450,985-877-5866,WASHINGTON,"""Larry"" Miller",29601 Holland Brock Rd.,,Mt. Hermon,LA,70450,5,985-877-5866,W,M,D,265,12/31/2014,1/1/2009,Mr. Miller +Justice of the Peace ,Justice of the Peace Ward 3 ,24512 Chinquapin Rd.,,Franklinton,LA,70438,985-839-6993,WASHINGTON,Billy W. Passman,24512 Chinquapin Rd.,,Franklinton,LA,70438,5,985-839-6993,W,M,D,265,12/31/2014,1/1/2009,Mr. Passman +Justice of the Peace ,Justice of the Peace Ward 5 ,23368 Old Columbia Rd.,,Angie,LA,70426,985-732-7004,WASHINGTON,"""Chris"" Lewis",23368 Old Columbia Rd.,,Angie,LA,70426,5,985-986-1000,W,M,R,265,12/31/2014,1/1/2009,Mr. Lewis +Justice of the Peace ,Justice of the Peace Ward 6 ,49798 Hwy 16.,,Franklinton,LA,70438,985-839-9728,WASHINGTON,Jackie Varnado,49798 Hwy. 16,,Franklinton,LA,70438,5,985-839-9728,W,M,D,265,12/31/2014,1/1/2009,Mr. Varnado +Justice of the Peace ,Justice of the Peace Ward 7 ,56137 Hwy 424.,,Franklinton,LA,70438,985-848-5575,WASHINGTON,"Bradford A. ""Brad"" Kemp, Sr.",56137 Hwy. 424,,Franklinton,LA,70438,5,985-848-5575,W,M,D,265,12/31/2014,1/1/2009,Mr. Kemp +Justice of the Peace ,Justice of the Peace Ward 8 ,28448 Hwy. 430,,Franklinton,LA,70438,985-839-5852,WASHINGTON,Jack Whaley,28448 Hwy. 430,,Franklinton,LA,70438,5,985-839-5852,W,M,D,265,12/31/2014,1/1/2009,Mr. Whaley +Justice of the Peace ,Justice of the Peace Ward 9 ,36279 Wilfred Bond Rd.,,Franklinton,LA,70438,985-839-2525,WASHINGTON,"""Rodney"" Bond",36279 Wilfred Bond Rd.,,Franklinton,LA,70438,5,985-839-2525,W,M,D,265,12/31/2014,1/1/2009,Mr. Bond +Constable ,Justice of the Peace Ward 1 ,16027 N. Yates Rd.,,Franklinton,LA,70438,985-839-5175,WASHINGTON,"""Terry"" Morgan",16027 N. Yates Rd.,,Franklinton,LA,70438,5,985-839-5175,W,M,D,267,12/31/2014,1/1/2009,Mr. Morgan +Constable ,Justice of the Peace Ward 2 ,32434 Jerry Fortenberry Rd.,,Mt. Hermon,LA,70450-5809,985-877-5809,WASHINGTON,"Colston Martin, Jr.",35235 Martin Rd.,,Mt. Hermon,LA,70450,5,985-877-9923,B,M,D,267,12/31/2014,1/1/2009,Mr. Martin +Constable ,Justice of the Peace Ward 3 ,1508 12th Ave.,,Franklinton,LA,70438,985-839-3094,WASHINGTON,Robert McDaniel,1508 12th Ave.,,Franklinton,LA,70438,5,985-839-3094,W,M,R,267,12/31/2014,1/1/2009,Mr. McDaniel +Constable ,Justice of the Peace Ward 5 ,62057 Hwy. 436,,Angie,LA,70426,985-735-9439,WASHINGTON,Lavon Seals,62057 Hwy. 436,,Angie,LA,70426,5,985-735-9439,W,M,D,267,12/31/2014,1/1/2009,Mr. Seals +Constable ,Justice of the Peace Ward 6 ,50445 Hwy. 1072,,Franklinton,LA,70438,985-839-2557,WASHINGTON,Donald Mizell,50445 Hwy. 1072,,Franklinton,LA,70438,5,985-839-2557,W,M,D,267,12/31/2014,1/1/2009,Mr. Mizell +Constable ,Justice of the Peace Ward 7 ,29438 Singley Rd.,,Angie,LA,70426,985-986-2837,WASHINGTON,David Scott,29438 Singley Rd.,,Angie,LA,70426,5,985-986-2837,W,M,D,267,12/31/2014,1/1/2009,Mr. Scott +Constable ,Justice of the Peace Ward 8 ,32188 Nielson Rd.,,Franklinton,LA,70438,985-848-5972,WASHINGTON,"""Ronnie"" Nielsen",30237 Hwy. 430,,Franklinton,LA,70438,5,985-839-3044,W,M,D,267,,4/14/2009,Mr. Nielsen +Constable ,Justice of the Peace Ward 9 ,39301 Hwy. 440,,Franklinton,LA,70438,985-839-2376,WASHINGTON,Robert Stafford,39301 Hwy. 440,,Franklinton,LA,70438,5,985-839-2376,W,M,D,267,12/31/2014,1/1/2009,Mr. Stafford +Mayor ,City of Bogalusa ,P. O. Drawer 1179,,Bogalusa,LA,,985-732-6200,WASHINGTON,"James ""Mack"" McGehee",P.O. Box 187,,Bogalusa,LA,70429,5,985-735-9603,W,M,D,300,12/5/2010,12/4/2006,Mayor McGehee +Mayor ,Town of Franklinton ,301 11th Avenue,,Franklinton,LA,,985-839-3560,WASHINGTON,M. Wayne Fleming,1507 12th Ave.,,Franklinton,LA,70438,5,985-839-6861,W,M,D,300,12/31/2012,1/1/2009,Mr. Fleming +Mayor ,Village of Angie ,P. O. Box 152,,Angie,LA,,985-986-2225,WASHINGTON,John Dawsey,30141 Bonnie St.,,Angie,LA,70426,5,985-986-2284,W,M,O,300,12/31/2012,1/1/2009,Mr. Dawsey +Mayor ,Village of Varnado ,P.O. Box 200,,Varnado,LA,,985-735-4217,WASHINGTON,Paris C. Sumrall,63318 Fornea Rd.,,Angie,LA,70426,5,985-732-4217,W,F,O,300,12/31/2012,1/1/2009,Ms. Sumrall +Chief of Police ,Village of Angie ,P. O. Box 152,,Angie,LA,70426,985-986-2444,WASHINGTON,"Gilbert Hartzog, Jr.",30208 Poplar St.,,Angie,LA,70426,5,985-986-3744,W,M,O,305,12/31/2012,1/1/2009,Chief Hartzog +Chief of Police ,Village of Varnado ,P.O. Box 200,,Varnado,LA,70467,985-735-4217,WASHINGTON,Louis Adams,63064 Main St.,,Varnado,LA,70426,5,985-732-5404,W,M,O,305,12/31/2012,1/1/2009,Chief Adams +City Prosecutor ,City of Bogalusa ,P. O. Drawer 1179,,Bogalusa,LA,70429-1179,985-732-6211,WASHINGTON,David Merlin Duke,314 Mississippi Ave.,,Bogalusa,LA,70427,5,985-735-8811,W,M,R,305,12/5/2010,4/14/2009,Mr. Duke +Councilman at Large ,City of Bogalusa ,P. O. Drawer 1179,,Bogalusa,LA,70429-1179,985-732-6211,WASHINGTON,Wendy O'Quin-Perrette,309 Bankston Drive,,Bogalusa,LA,70427,5,985-732-4005,W,F,D,308,12/5/2010,12/4/2006,Ms. O'Quin-Perrette +Councilman at Large ,City of Bogalusa ,P. O. Drawer 1179,,Bogalusa,LA,70429-1179,985-732-6211,WASHINGTON,"""Danny"" Stogner",1101 Madison St.,,Bogalusa,LA,70427,5,985-732-1948,W,M,D,308,12/5/2010,12/4/2006,Mr. Stogner +Alderman ,Town of Franklinton ,301 11th Avenue,,Franklinton,LA,70438,985-839-3560,WASHINGTON,"""T. J."" Butler, Jr.",727 18th Ave.,,Franklinton,LA,70438,5,985-839-3047,B,M,D,310,12/31/2012,1/1/2009,Mr. Butler +Alderman ,Town of Franklinton ,301 11th Avenue,,Franklinton,LA,70438,985-839-3560,WASHINGTON,John L. Daniel,309 10th Ave.,,Franklinton,LA,70438,5,985-839-2382,W,M,D,310,12/31/2012,1/1/2009,Mr. Daniel +Alderman ,Town of Franklinton ,301 11th Avenue,,Franklinton,LA,70438,985-839-3560,WASHINGTON,Richard Dillon,1102 Lynnwood Dr.,,Franklinton,LA,70438,5,985-839-3057,W,M,D,310,12/31/2012,1/1/2009,Mr. Dillon +Alderman ,Town of Franklinton ,301 11th Avenue,,Franklinton,LA,70438,985-839-3560,WASHINGTON,Florence Manning,P. O. Box 684,,Franklinton,LA,70438,5,985-839-4291,W,F,D,310,12/31/2012,1/1/2009,Ms. Manning +Alderman ,Town of Franklinton ,301 11th Avenue,,Franklinton,LA,70438,985-839-3560,WASHINGTON,"""Brad"" Orman",1049 Main St.,,Franklinton,LA,70438,5,985-839-2788,W,M,D,310,12/31/2012,1/1/2009,Mr. Orman +Alderman ,Village of Angie ,P. O. Box 152,,Angie,LA,70426,985-986-2444,WASHINGTON,Gilbert Ball,64442 Market St.,,Angie,LA,70426,5,985-986-2643,W,M,R,310,12/31/2012,1/1/2009,Mr. Ball +Alderman ,Village of Angie ,P. O. Box 152,,Angie,LA,70426,985-986-2444,WASHINGTON,"""Roxie"" Fornea",30082 E. St.,,Angie,LA,70426,5,985-986-2432,W,M,R,310,12/31/2012,1/1/2009,Mr. Fornea +Alderman ,Village of Angie ,P. O. Box 152,,Angie,LA,70426,985-986-2444,WASHINGTON,Bryan Stogner,64428 Cherry St.,,Angie,LA,70426,5,985-516-2370,W,M,D,310,12/31/2012,1/1/2009,Mr. Stogner +Alderman ,Village of Varnado ,P.O. Box 200,,Varnado,LA,70467,985-735-4217,WASHINGTON,"James L. ""Jimmy"" Ezell",63267 Fornea Rd.,,Varnado,LA,70426,5,985-732-7988,W,M,O,310,12/31/2012,1/1/2009,Mr. Ezell +Alderman ,Village of Varnado ,P.O. Box 200,,Varnado,LA,70467,985-735-4217,WASHINGTON,"Kimberly ""Suzi"" Kennedy",63345 Fornea Rd.,,Angie,LA,70426,5,985-516-3669,W,F,R,310,12/31/2012,1/1/2009,Ms. Kennedy +Alderman ,Village of Varnado ,P.O. Box 200,,Varnado,LA,70467,985-735-4217,WASHINGTON,Rhonda Smith,26213 Hwy. 21,,Angie,LA,70426,5,985-732-3108,W,F,O,310,12/31/2012,1/1/2009,Ms. Smith +Councilman ,"District A, City of Bogalusa ",P. O. Drawer 1179,,Bogalusa,LA,70429-1179,985-732-6211,WASHINGTON,Marilyn Bailey-Crews,303 Carolina Ave.,,Bogalusa,LA,70427,5,985-732-2231,B,F,D,310,12/5/2010,12/4/2006,Ms. Bailey-Crews +Councilman ,"District B, City of Bogalusa ",P. O. Drawer 1179,,Bogalusa,LA,70429-1179,985-732-6211,WASHINGTON,Michael O'Ree,612 Sullivan Dr.,,Bogalusa,LA,70427,5,985-735-9539,B,M,D,310,12/5/2010,12/4/2006,Mr. O'Ree +Councilman ,"District C, City of Bogalusa ",P. O. Drawer 1179,,Bogalusa,LA,70429-1179,985-732-6211,WASHINGTON,Paul Penton,1221 Lona Rester Place,,Bogalusa,LA,70427,5,985-735-8766,W,M,D,310,12/5/2010,12/4/2006,Mr. Penton +Councilman ,"District D, City of Bogalusa ",P. O. Drawer 1179,,Bogalusa,LA,70429-1179,985-732-6211,WASHINGTON,"Andrew ""Andy"" Deleon, Jr.",936 Avenue I,,Bogalusa,LA,70427,5,985-735-6631,W,M,D,310,12/5/2010,12/4/2006,Mr. Deleon +Councilman ,"District E, City of Bogalusa ",P. O. Drawer 1179,,Bogalusa,LA,70429-1179,985-732-6211,WASHINGTON,Randy Hodges,403 Derbigney St.,,Bogalusa,LA,70427,5,985-735-0549,W,M,D,310,12/5/2010,12/4/2006,Mr. Hodges +DPEC Member ,at Large ,,,,LA,,,WEBSTER,,,,,,,0,,,,,54,,, +DPEC Member ,District 1 ,,,,LA,,,WEBSTER,,,,,,,0,,,,,56,,, +DPEC Member ,District 2 ,,,,LA,,,WEBSTER,,,,,,,0,,,,,56,,, +DPEC Member ,District 3 ,,,,LA,,,WEBSTER,,,,,,,0,,,,,56,,, +DPEC Member ,District 4 ,,,,LA,,,WEBSTER,,,,,,,0,,,,,56,,, +DPEC Member ,District 5 ,,,,LA,,,WEBSTER,,,,,,,0,,,,,56,,, +DPEC Member ,District 6 ,,,,LA,,,WEBSTER,,,,,,,0,,,,,56,,, +DPEC Member ,District 7 ,,,,LA,,,WEBSTER,,,,,,,0,,,,,56,,, +DPEC Member ,District 8 ,,,,LA,,,WEBSTER,,,,,,,0,,,,,56,,, +DPEC Member ,District 9 ,,,,LA,,,WEBSTER,,,,,,,0,,,,,56,,, +DPEC Member ,District 10 ,,,,LA,,,WEBSTER,,,,,,,0,,,,,56,,, +DPEC Member ,District 11 ,,,,LA,,,WEBSTER,Cynthia Klimkiewicz,385 Martha Wood,,Heflin,LA,71039,5,318-377-0518,W,F,D,56,2/20/2012,2/20/2008,Ms. Klimkiewicz +DPEC Member ,District 12 ,,,,LA,,,WEBSTER,,,,,,,0,,,,,56,,, +RPEC Member ,at Large ,,,,LA,,,WEBSTER,Lee Estabrook,1604 Eames,,Minden,LA,71055,5,,,,,64,,5/22/2009, +RPEC Member ,at Large ,,,,LA,,,WEBSTER,Gerald Holland,510 Ninth St.,,Springhill,LA,71075,5,,,,,64,,5/22/2009, +RPEC Member ,at Large ,,,,LA,,,WEBSTER,Denise Moorhead,580 Boy Scout Rd.,,Minden,LA,71055,5,,,,,64,,5/22/2009, +RPEC Member ,District 1 ,,,,LA,,,WEBSTER,Charles Jacobs,102 Janice Dr.,,Springhill,LA,71075,5,,,,,66,,5/22/2009, +RPEC Member ,District 2 ,,,,LA,,,WEBSTER,,,,,,,0,,,,,66,,, +RPEC Member ,District 3 ,,,,LA,,,WEBSTER,Michael Corley,24624 Hwy. 371,,Sarepta,LA,,0,,,,,66,,5/22/2009, +RPEC Member ,District 4 ,,,,LA,,,WEBSTER,Carlos Martin,222 Weldon Johnson Rd.,,Minden,LA,71055,5,,,,,66,,5/22/2009, +RPEC Member ,District 5 ,,,,LA,,,WEBSTER,Jerry Hayes,717 Adkins Rd.,,Cotton Valley,LA,71018,5,,,,,66,,5/22/2009, +RPEC Member ,District 6 ,,,,LA,,,WEBSTER,Tommy Davis,225 Woodhaven Dr.,,Minden,LA,71055,5,,,,,66,,5/22/2009, +RPEC Member ,District 7 ,,,,LA,,,WEBSTER,Eric Johnson,1507 Holly,,Minden,LA,71055,5,,,,,66,,5/22/2009, +RPEC Member ,District 8 ,,,,LA,,,WEBSTER,Ronnie Broughton,110 Germantown Rd.,,Minden,LA,71055,5,,,,,66,,5/22/2009, +RPEC Member ,District 9 ,,,,LA,,,WEBSTER,Jennifer K. Smith,P.O. Box 149,,Minden,LA,71055,5,,,,,66,,5/22/2009, +RPEC Member ,District 10 ,,,,LA,,,WEBSTER,Martha Tucker,102 Tucker Ln.,,Minden,LA,71055,5,,,,,66,,5/22/2009, +RPEC Member ,District 11 ,,,,LA,,,WEBSTER,"""Pam"" Hillidge",P. O. Box 100,,Sibley,LA,71073,5,318-377-5207,W,F,R,66,2/20/2012,2/20/2008, +RPEC Member ,District 12 ,,,,LA,,,WEBSTER,Hunt Powell,862 Horseshoe Loop,,Doyline,LA,71023,5,,,,,66,,5/22/2009, +Sheriff ,,P. O. Box 877,,Minden,LA,71055,318-377-1515,WEBSTER,Gary S. Sexton,P.O. Box 877,,Minden,LA,71055,5,318-846-2810,W,M,D,225,6/30/2012,7/1/2008,Sheriff Sexton +Clerk of Court ,,P. O. Box 370,,Minden,LA,71058,318-371-0366,WEBSTER,Holli Vining,P.O. Box 370,,Minden,LA,71058,5,318-371-0366,W,F,D,230,6/30/2012,7/1/2008,Ms. Vining +Assessor ,,P.O. Box 734,,Minden,LA,71058-0734 ,318-377-9311,WEBSTER,Doris B. Cheatham,1508 King Orchard Rd.,,Sarepta,LA,71071,5,318-994-2084,W,F,D,235,12/31/2012,1/1/2009,Ms. Cheatham +Coroner ,,208 Morris Drive,,Minden,LA,71055,318-377-8311,WEBSTER,Carlos Irizarry,No. 2 Medical Plaza,,Minden,LA,71055,5,318-377-8400,O,M,O,240,3/25/2012,3/24/2008,Mr. Irizarry +Police Juror,District 1,P. O. Box 389,,Minden,LA,71058-0389,318-377-7564,WEBSTER,T. Bruce Blanton,P.O. Box 122,,Springhill,LA,71075,5,318-539-3141,W,M,D,245,1/8/2012,1/14/2008,Mr. Blanton +Police Juror ,District 2 ,P. O. Box 389,,Minden,LA,71055-0389 ,318-377-7564,WEBSTER,Jimmy D. Thomas,1116 Fifth St. SW,,Springhill,LA,71075,5,318-539-9292,B,M,D,245,1/8/2012,1/14/2008,Mr. Thomas +Police Juror ,District 3 ,P. O. Box 389,,Minden,LA,71055-0389 ,318-377-7564,WEBSTER,Daniel G. Thomas,242 Daniel Thomas Rd.,,Springhill,LA,71075,5,318-539-2902,W,M,D,245,1/8/2012,1/14/2008,Mr. Thomas +Police Juror ,District 4 ,P. O. Box 389,,Minden,LA,71055-0389 ,318-377-7564,WEBSTER,"""Steve"" Duggan",1267 Hilltop Rd.,,Shongaloo,LA,71072,5,318-539-4931,W,M,D,245,1/8/2012,1/14/2008,Mr. Duggan +Police Juror ,District 5 ,P. O. Box 389,,Minden,LA,71055-0389 ,318-377-7564,WEBSTER,"C. C. ""Cat"" Cox",P. O. Box 338,,Cotton Valley,LA,71018,5,318-832-4646,W,M,D,245,1/8/2012,1/14/2008,Mr. Cox +Police Juror ,District 6 ,P. O. Box 389,,Minden,LA,71055-0389 ,318-377-7564,WEBSTER,"""Jim"" Bonsall",1805 Old Arcadia Rd.,,Minden,LA,71055,5,318-371-0187,W,M,D,245,1/8/2012,1/14/2008,Mr. Bonsall +Police Juror ,District 7 ,P. O. Box 389,,Minden,LA,71055-0389 ,318-377-7564,WEBSTER,"""Steve"" Lemmons",271 Shadows Ln.,,Dubberly,LA,71024,5,318-377-3247,W,M,O,245,1/8/2012,1/14/2008,Mr. Lemmons +Police Juror ,District 8 ,P. O. Box 389,,Minden,LA,71055-0389 ,318-377-7564,WEBSTER,Charles D. Odom,1004 Elm St.,,Minden,LA,71055,5,318-377-6334,W,M,D,245,1/8/2012,1/14/2008,Mr. Odom +Police Juror ,District 9 ,P. O. Box 389,,Minden,LA,71055-0389 ,318-377-7564,WEBSTER,Jerri Musgrow Lee,607 Bayou Ave.,,Minden,LA,71055,5,318-377-8960,B,F,D,245,1/8/2012,1/14/2008,Ms. Musgrow +Police Juror ,District 10 ,P. O. Box 389,,Minden,LA,71055-0389 ,318-377-7564,WEBSTER,Vera Benton Davison,708 J.A. Phillips St.,,Minden,LA,71055,5,318-377-8606,B,F,D,245,1/8/2012,1/14/2008,Ms. Davison +Police Juror ,District 11 ,P. O. Box 389,,Minden,LA,71055-0389 ,318-377-7564,WEBSTER,"Steven G. ""Steve"" Ramsey",633 Aubrey Beatty Rd.,,Heflin,LA,71039,5,318-382-8060,W,M,D,245,1/8/2012,1/14/2008,Mr. Ramsey +Police Juror ,District 12 ,P. O. Box 389,,Minden,LA,71055-0389 ,318-377-7564,WEBSTER,Charles R. Walker,241 Palmyra Park Rd.,,Doyline,LA,71023,5,318-987-0032,W,M,D,245,1/8/2012,1/14/2008,Mr. Walker +City Judge ,"City Court, City of Minden ",P. O. Drawer 968,,Minden,LA,71058-0968 ,318-377-4308,WEBSTER,John C. Campbell,P.O. Box 834,,Minden,LA,71055,5,318-377-4974,W,M,D,250,12/31/2014,1/1/2009,Judge Campbell +City Judge ,"City Court, City of Springhill ",P. O. Box 86,,Springhill,LA,71075,318-539-4213,WEBSTER,"John B. SLATTERY, Jr.",1206 North Acres Circ.,,Springhill,LA,71075,5,318-539-3411,W,M,R,250,12/31/2014,1/1/2009,Judge Slattery +City Marshal ,"City Court, City of Minden ",P. O. Drawer 968,,Minden,LA,71058-0968 ,318-371-4210,WEBSTER,"Jack ""Randy"" Shelley",520 Broadway,,Minden,LA,71055,5,318-377-6294,W,M,D,250,12/31/2014,1/1/2009,Marshal Shelley +City Marshal ,"City Court, City of Springhill ",P. O. Box 86,,Springhill,LA,71075,318-539-4213,WEBSTER,Morris McClary,111 Angela Dr.,,Springhill,LA,71075,5,318-539-2361,W,M,D,250,12/31/2014,1/1/2009,Marshal McClary +Member of School Board ,District 1 ,P. O. Box 520,,Minden,LA,71058,318-377-7052,WEBSTER,Alan Stanford,900 Machen Dr.,,Springhill,LA,71075,5,318-539-9825,W,M,O,255,12/31/2010,1/1/2007,Mr. Stanford +Member of School Board ,District 2 ,P. O. Box 520,,Minden,LA,71058,318-377-7052,WEBSTER,Malachi Ridgel,1123 Third St. SW,,Springhill,LA,71075,5,318-539-5070,B,M,D,255,12/31/2010,1/1/2007,Mr. Ridgel +Member of School Board ,District 3 ,P. O. Box 520,,Minden,LA,71058,318-377-7052,WEBSTER,Charles Strong,171 Charles Strong Rd.,,Sarepta,LA,71071,5,318-994-2640,W,M,D,255,12/31/2010,1/1/2007,Mr. Strong +Member of School Board ,District 4 ,P. O. Box 520,,Minden,LA,71058,318-377-7052,WEBSTER,Bruce Williams,230 Johnny Mouser Rd.,,Shongaloo,LA,71072,5,318-846-2256,W,M,D,255,12/31/2010,1/1/2007,Mr. Williams +Member of School Board ,District 5 ,P. O. Box 520,,Minden,LA,71058,318-377-7052,WEBSTER,Ouida Garner,402 Walker Ln.,,Cotton Valley,LA,71018,5,318-832-4647,W,F,D,255,12/31/2010,1/1/2007,Ms. Garner +Member of School Board ,District 6 ,P. O. Box 520,,Minden,LA,71058,318-377-7052,WEBSTER,Harold Johnson,141 Braeburn Glen,,Minden,LA,71055,5,318-377-0963,W,M,D,255,12/31/2010,1/1/2007,Mr. Johnson +Member of School Board ,District 7 ,P. O. Box 520,,Minden,LA,71058,318-377-7052,WEBSTER,Linda Kinsey,121 Carver Dr.,,Minden,LA,71055,5,318-377-8036,B,F,D,255,12/31/2010,1/1/2007,Ms. Kinsey +Member of School Board ,District 8 ,P. O. Box 520,,Minden,LA,71058,318-377-7052,WEBSTER,Ronnie L. Broughton,110 Germantown Rd.,,Minden,LA,71055,5,318-377-4575,W,M,R,255,12/31/2010,1/1/2007,Mr. Broughton +Member of School Board ,District 9 ,P. O. Box 520,,Minden,LA,71058,318-377-7052,WEBSTER,Frankie L. Mitchell,601 Midland,,Minden,LA,71055,5,318-377-1323,B,F,D,255,12/31/2010,1/1/2007,Mr. Mitchell +Member of School Board ,District 10 ,P. O. Box 520,,Minden,LA,71058,318-377-7052,WEBSTER,Johnnye Kennon,914 Woods,,Minden,LA,71055,5,318-377-3935,B,F,D,255,12/31/2010,1/1/2007,Mr. Kennon +Member of School Board ,District 11 ,P. O. Box 520,,Minden,LA,71058,318-377-7052,WEBSTER,"""W. Greg"" Stinson",503 N. Main St.,,Sibley,LA,71073,5,318-371-9057,W,M,O,255,12/31/2010,1/1/2007,Mr. Stinson +Member of School Board ,District 12 ,P. O. Box 520,,Minden,LA,71058,318-377-7052,WEBSTER,Penny Estes Long,1331 Hwy. 163,,Doyline,LA,,0,318-745-6171,W,F,O,255,12/31/2010,1/1/2007, +Justice of the Peace ,Justice of the Peace District 1 ,1267 Hilltop Rd.,,Shongaloo,LA,71072,318-539-4931,WEBSTER,Lisa Duggan,P.O. Box 725,,Shongaloo,LA,71072,5,318-539-4931,W,F,R,265,12/31/2014,1/1/2009,MR. Duggan +Justice of the Peace ,Justice of the Peace District 1 ,1267 Hilltop Rd.,,Shongaloo,LA,71072,318-539-4931,WEBSTER,R. Glenn Johnston,216 Leton Cutoff Rd.,,Shongaloo,LA,71072,5,318-624-1879,W,M,D,265,12/31/2014,1/1/2009,Mr. Johnston +Justice of the Peace ,Justice of the Peace District 3 ,776 Elmo Burton Loop,,Minden,LA,71055,318-377-5263,WEBSTER,"Pierce Burton, Jr.",776 Elmo Burton Loop,,Minden,LA,71055,5,347-377-5263,W,M,D,265,12/31/2014,1/1/2009,Mr. Burton +Justice of the Peace ,Justice of the Peace District 5 ,1518 Diamond T. Rd.,,Heflin,LA,71039,318-377-2414,WEBSTER,Michelle Pittman,735 Airport Rd.,,Dubberly,LA,71024,5,318-377-4955,W,F,,265,12/31/2014,1/1/2009,Ms. Pittman +Justice of the Peace ,Justice of the Peace District 5 ,1518 Diamond T. Rd.,,Heflin,LA,71039,318-377-2414,WEBSTER,"Larry J. Toland, Sr.",1518 Diamond T,,Heflin,LA,71039,5,318-377-2414,W,M,R,265,12/31/2014,1/1/2009,Mr. Toland +Constable ,Justice of the Peace District 1 ,477 Bud Lee Rd.,,Shongaloo,LA,71072,318-846-2588,WEBSTER,George Hardaway,9124 Hwy. 2,,Shongaloo,LA,71072,5,318-846-2857,W,M,D,267,12/31/2014,1/1/2009,Mr. Hardaway +Constable ,Justice of the Peace District 1 ,477 Bud Lee Rd.,,Shongaloo,LA,71072,318-846-2588,WEBSTER,Tony Pipkin,12730 Hwy. 159,,Shongaloo,LA,71072,5,318-846-2820,W,M,,267,12/31/2014,1/1/2009,Mr. Pipkin +Constable ,Justice of the Peace District 3 ,685 Elmo Burton Loop,,Minden,LA,71055,318-371-2482,WEBSTER,"""Mike"" Burton",685 Elmo Burton Loop,,Minden,LA,71055,5,318-371-2482,W,M,R,267,12/31/2014,1/1/2009, +Constable ,Justice of the Peace District 5 ,3360 Hwy. 531,,Dubberly,LA,71024,318-377-2254,WEBSTER,Marsha Toland,1518 Diamond T Rd.,,Heflin,LA,71039,5,318-377-2414,W,F,R,267,12/31/2014,1/1/2009,Ms. Toland +Constable ,Justice of the Peace District 5 ,3360 Hwy. 531,,Dubberly,LA,71024,318-377-2254,WEBSTER,"Roy ""Milton"" Wells",575 Airport Rd.,,Dubberly,LA,71024,5,318-371-2607,W,M,R,267,12/31/2014,1/1/2009,Mr. Wells +Mayor ,City of Minden ,P. O. Box 580,,Minden,LA,,318-377-2144,WEBSTER,"""Bill"" Robertson",1312 Mark Dr.,,Minden,LA,71055,5,318-377-1467,W,M,D,300,12/31/2010,1/1/2007,Mayor Robertson +Mayor ,City of Springhill ,P. O. Box 398,,Springhill,LA,,318-539-5681,WEBSTER,Carroll Breaux,107 Ashley Cir.,,Springhill,LA,71075,5,318-539-2051,W,M,O,300,12/31/2010,1/1/2007,Mayor Breaux +Mayor ,Town of Cotton Valley ,P. O. Box 415,,Cotton Valley,LA,,318-832-4283,WEBSTER,Comerdis Phillips,108 Lewis Ave.,,Cotton Valley,LA,71018,5,318-832-5352,B,F,D,300,12/31/2012,1/1/2009,Mayor Phillips +Mayor ,Town of Cullen ,P. O. Box 679,,Cullen,LA,,318-994-2263,WEBSTER,Bobby Washington,P. O. Box 149,,Cullen,LA,71021,5,318-994-2731,B,M,D,300,12/31/2012,1/1/2009,Mayor Washington +Mayor ,Town of Sarepta ,P. O. Box 338,,Sarepta,LA,,318-847-4333,WEBSTER,E. L. Edwards,P. O. Box 102,,Sarepta,LA,71071,5,318-847-4598,W,M,D,300,12/31/2012,1/1/2009,Mayor Edwards +Mayor ,Town of Sibley ,P. O. Box 128,,Sibley,LA,,318-377-0345,WEBSTER,"""Jimmy"" Williams",166 Tacoma Trail,,Sibley,LA,71073,5,318-377-6096,W,M,D,300,12/31/2012,1/1/2009,Mr. Williams +Mayor ,Village of Dixie Inn ,60 Shell St.,,Dixie Inn,LA,,318-377-6855,WEBSTER,Ava N. McWhorter,1 Mason St.,,Minden,LA,71055,5,318-377-9341,W,F,D,300,12/31/2012,1/1/2009,Mayor McWhorter +Mayor ,Village of Doyline ,P. O. Box 626,,Doyline,LA,,318-745-2625,WEBSTER,Cleveland Bradfield,P.O. Box 235,,Doyline,LA,71023,5,318-745-3869,W,M,D,300,12/31/2010,1/1/2007,Mr. Bradfield +Mayor ,Village of Dubberly ,P. O. Box 69,,Dubberly,LA,,318-371-9528,WEBSTER,"W.C. ""Curtis"" Hirth",P.O. Box 115,,Dubberly,LA,71024,5,318-377-4705,W,M,,300,12/31/2012,1/1/2009,Mr. Hirth +Mayor ,Village of Heflin ,P. O. Box 98,,Heflin,LA,,318-377-9799,WEBSTER,Betty Blake,155 Smithfield Ln.,,Heflin,LA,71039,5,318-377-6724,W,F,R,300,12/31/2010,2/23/2009,Mayor Blake +Mayor ,Village of Shongaloo ,P. O. Box 74,,Shongaloo,LA,,318-846-2876,WEBSTER,Donnie Morgan,P.O. Box 28,,Shongaloo,LA,71072,5,318-846-2287,W,M,R,300,12/31/2012,1/1/2009,Mr. Morgan +Chief of Police ,City of Minden ,P. O. Box 580,,Minden,LA,71058-0580 ,318-377-2144,WEBSTER,"""T.C."" Bloxom, Jr.",P.O. Box 1081,,Minden,LA,71055,5,318-377-0411,W,M,D,305,12/31/2010,1/1/2007,Mr. Bloxom +Chief of Police ,City of Springhill ,P. O. Box 398,,Springhill,LA,71075,318-539-5681,WEBSTER,Ronnie Coleman,610 Park Loop,,Springhill,LA,71075,5,318-539-4750,B,M,D,305,12/31/2010,1/1/2007,Chief Coleman +Chief of Police ,Town of Cotton Valley ,P. O. Box 415,,Cotton Valley,LA,71018,318-832-4283,WEBSTER,Terry C. Brown,151 Duck Rd.,,Cotton Valley,LA,71018,5,318-832-4683,W,M,,305,12/31/2012,1/1/2009,Chief Brown +Chief of Police ,Town of Cullen ,P. O. Box 679,,Cullen,LA,71021,318-994-2263,WEBSTER,Mary Ann Hoof,P.O. Box 355,,Cullen,LA,71021,5,318-994-2975,B,F,D,305,12/31/2012,1/1/2009,Ms. Hoof +Chief of Police ,Town of Sarepta ,P. O. Box 338,,Sarepta,LA,71071,318-847-4333,WEBSTER,"""Bill"" Fields, Jr.",6152 Hwy. 2,,Sarepta,LA,71071,5,318-847-4726,W,M,D,305,12/31/2012,1/1/2009,Chief Fields +Chief of Police ,Town of Sibley ,P. O. Box 128,,Sibley,LA,71073,318-377-0345,WEBSTER,Jeremy Robinson,172 N.E. Natchitoches St.,,Sibley,LA,71073,5,318-268-0289,W,M,,305,12/31/2012,1/1/2009,Mr. Robinson +Chief of Police ,Village of Doyline ,P. O. Box 626,,Doyline,LA,71023,318-745-5344,WEBSTER,"""Robby"" Hayden, Jr.",P.O. Box 905,,Doyline,LA,71023,5,318-745-9944,W,M,,305,12/31/2010,1/1/2007,Mr. Hayden +Chief of Police ,Village of Dubberly ,P. O. Box 69,,Dubberly,LA,71024,318-371-9528,WEBSTER,Charles E. Mims,1748 Brushwood Dr.,,Dubberly,LA,71024,5,318-371-1020,B,M,D,305,12/31/2012,1/1/2009,Mr. Mims +Chief of Police ,Village of Heflin ,P. O. Box 98,,Heflin,LA,71039,318-377-2708,WEBSTER,Paul B. Migues,244 N. Main St.,,Heflin,LA,71039,5,318-377-0769,W,M,D,305,12/31/2010,1/1/2007,Mr. Migues +Alderman ,"District 1, City of Springhill ",P. O. Box 398,,Springhill,LA,71075,318-539-5681,WEBSTER,Edward Bankhead,539 Moore,,Springhill,LA,71075,5,318-539-4488,B,M,D,310,12/31/2010,1/1/2007,Mr. Bankhead +Alderman ,"District 2, City of Springhill ",P. O. Box 398,,Springhill,LA,71075,318-539-5681,WEBSTER,"""Johnny"" Craig, Jr.",207 N. Arkansas St.,,Springhill,LA,71075,5,318-539-5725,W,M,,310,12/31/2010,7/21/2008,Mr. Craig +Alderman ,"District 3, City of Springhill ",P. O. Box 398,,Springhill,LA,71075,318-539-5681,WEBSTER,Robert Hilburn,406 Eighth St. SE,,Springhill,LA,71075,5,318-539-4301,W,M,D,310,12/31/2010,1/1/2007,Mr. Hilburn +Alderman ,"District 4, City of Springhill ",P. O. Box 398,,Springhill,LA,71075,318-539-5681,WEBSTER,Gary Montgomery,505 Eighth St. N.E.,,Springhill,LA,71075,5,318-465-5226,W,M,D,310,12/31/2010,1/1/2007,Mr. Montgomery +Alderman ,"District 5, City of Springhill ",P. O. Box 398,,Springhill,LA,71075,318-539-5681,WEBSTER,Ray Huddleston,P.O. Box 85,,Springhill,LA,71075,5,318-539-5505,W,M,D,310,12/31/2010,1/1/2007,Mr. Huddleston +Alderman ,Town of Cotton Valley ,P. O. Box 415,,Cotton Valley,LA,71018,318-832-4283,WEBSTER,Adam Hurley,P.O. Box 353,,Cotton Valley,LA,71018,5,318-464-3843,W,M,R,310,12/31/2012,1/1/2009,Mr. Hurley +Alderman ,Town of Cotton Valley ,P. O. Box 415,,Cotton Valley,LA,71018,318-832-4283,WEBSTER,Charlene Lewis,P.O. Box 222,,Cotton Valley,LA,71018,5,318-832-4354,W,F,R,310,12/31/2012,1/1/2009,Ms. Lewis +Alderman ,Town of Cotton Valley ,P. O. Box 415,,Cotton Valley,LA,71018,318-832-4283,WEBSTER,Arnese A. Parish,P.O. Box 624,,Cotton Valley,LA,71018,5,318-578-2084,B,F,,310,12/31/2012,5/12/2009,Ms. Parish +Alderman ,Town of Cotton Valley ,P. O. Box 415,,Cotton Valley,LA,71018,318-832-4283,WEBSTER,Evelyn Parish,P.O. Box 600,,Cotton Valley,LA,71018,5,318-832-5377,B,F,D,310,12/31/2012,1/1/2009,Ms. Parish +Alderman ,Town of Cotton Valley ,P. O. Box 415,,Cotton Valley,LA,71018,318-832-4283,WEBSTER,"""Chris"" Williams",P. O. Box 620,,Cotton Valley,LA,71018,5,318-455-8966,W,M,,310,12/31/2012,1/1/2009,Mr. Williams +Alderman ,Town of Cullen ,P. O. Box 679,,Cullen,LA,71021,318-994-2263,WEBSTER,Barbara T. Green,P.O. Box 74,,Cullen,LA,71021,5,318-994-2811,B,F,D,310,12/31/2012,1/1/2009,Ms. Green +Alderman ,Town of Cullen ,P. O. Box 679,,Cullen,LA,71021,318-994-2263,WEBSTER,Tarcus Hawthorne,P.O. Box 131,,Cullen,LA,71021,5,318-205-2731,B,M,D,310,12/31/2012,1/1/2009,Mr. Hawthorne +Alderman ,Town of Cullen ,P. O. Box 679,,Cullen,LA,71021,318-994-2263,WEBSTER,"""Mr. Gary"" Sullivan",108 East Rd.,,Sarepta,LA,71071,5,318-994-2174,W,M,,310,12/31/2012,1/1/2009,Mr. Sullivan +Alderman ,Town of Cullen ,P. O. Box 679,,Cullen,LA,71021,318-994-2263,WEBSTER,Dexter Turner,P.O. Box 132,,Cullen,LA,71021,5,318-578-1805,B,M,D,310,12/31/2012,1/1/2009,Mr. Turner +Alderman ,Town of Cullen ,P. O. Box 679,,Cullen,LA,71021,318-994-2263,WEBSTER,Floydean White,P.O. Box 105,,Cullen,LA,71021,5,318-994-2032,B,F,D,310,12/31/2012,1/1/2009,Ms. White +Alderman ,Town of Sarepta ,P. O. Box 338,,Sarepta,LA,71071,318-847-4333,WEBSTER,Peggy Adkins,P.O. Box 283,,Sarepta,LA,71071,5,318-847-4032,W,F,R,310,12/31/2012,1/1/2009,Ms. Adkins +Alderman ,Town of Sarepta ,P. O. Box 338,,Sarepta,LA,71071,318-847-4333,WEBSTER,Michael A. Corley,P.O. Box 29,,Sarepta,LA,71071,5,318-847-4574,W,M,R,310,12/31/2012,1/1/2009,Mr. Corley +Alderman ,Town of Sarepta ,P. O. Box 338,,Sarepta,LA,71071,318-847-4333,WEBSTER,Jeff Franklin,P.O. Box 405,,Sarepta,LA,71071,5,318-847-4030,W,M,R,310,12/31/2012,1/1/2009,Mr. Franklin +Alderman ,Town of Sarepta ,P. O. Box 338,,Sarepta,LA,71071,318-847-4333,WEBSTER,Anthony L. Mullins,P.O. Box 301,,Sarepta,LA,71071,5,318-847-4832,W,M,,310,12/31/2012,1/1/2009,Mr. Williams +Alderman ,Town of Sarepta ,P. O. Box 338,,Sarepta,LA,71071,318-847-4333,WEBSTER,"""Jeff"" Slack",P.O. Box 741,,Sarepta,LA,71071,5,318-847-4761,W,M,,310,12/31/2012,1/1/2009,Mr. Slack +Alderman ,Town of Sibley ,P. O. Box 128,,Sibley,LA,71073,318-377-0345,WEBSTER,Wayne Bolton,574 S.E. 5th Ave.,,Sibley,LA,71073,5,318-377-8715,W,M,,310,12/31/2012,1/1/2009,Mr. Bolton +Alderman ,Town of Sibley ,P. O. Box 128,,Sibley,LA,71073,318-377-0345,WEBSTER,"""Doyle"" Chanler",536 South Main,,Sibley,LA,71073,5,318-377-3364,W,M,D,310,12/31/2012,1/1/2009,Mr. Chanler +Alderman ,Town of Sibley ,P. O. Box 128,,Sibley,LA,71073,318-377-0345,WEBSTER,"Richard W. Davis, Sr.",294 N.E. 4th Ave.,,Sibley,LA,71073,5,318-377-7767,W,M,,310,12/31/2012,1/1/2009,Mr. davis +Alderman ,Town of Sibley ,P. O. Box 128,,Sibley,LA,71073,318-377-0345,WEBSTER,John Langford,104 Doodle Trial,,Sibley,LA,71073,5,318-377-9473,W,M,,310,12/31/2012,1/1/2009,Mr. Langford +Alderman ,Town of Sibley ,P. O. Box 128,,Sibley,LA,71073,318-377-0345,WEBSTER,"Robert Smart, Jr.",140 Tacoma Trail,,Sibley,LA,71073,5,318-377-9406,W,M,D,310,12/31/2012,1/1/2009,Mr. Smart +Alderman ,Village of Dixie Inn ,60 Shell St.,,Dixie Inn,LA,71055,318-377-6855,WEBSTER,Pauline Fontenot,25 McArthur St.,,Dixie Inn,LA,71055,5,318-371-1421,W,F,D,310,12/31/2012,1/1/2009,Ms. Fontenot +Alderman ,Village of Dixie Inn ,60 Shell St.,,Dixie Inn,LA,71055,318-377-6855,WEBSTER,Verna Kay Stratton,12397 Hwy. 80,,Minden,LA,71055,5,,W,F,,310,12/31/2012,1/1/2009,Ms. Stratton +Alderman ,Village of Dixie Inn ,60 Shell St.,,Dixie Inn,LA,71055,318-377-6855,WEBSTER,Joseph Walden,54 McArthur St.,,Minden,LA,71055,5,318-377-1742,W,M,,310,12/31/2012,1/1/2009,Mr. Walden +Alderman ,Village of Doyline ,P. O. Box 626,,Doyline,LA,71023,318-745-2625,WEBSTER,Betty Ballard,505 Fuller St.,,Doyline,LA,71023,5,318-745-2402,W,F,R,310,12/31/2010,1/1/2007,Ms. Ballard +Alderman ,Village of Doyline ,P. O. Box 626,,Doyline,LA,71023,318-745-2625,WEBSTER,Billy M. Reeves,P.O. Box 595,,Doyline,LA,71023,5,318-745-2270,W,M,R,310,12/31/2010,1/1/2007,Mr. Reeves +Alderman ,Village of Doyline ,P. O. Box 626,,Doyline,LA,71023,318-745-2625,WEBSTER,Ronnie G. Watson,116 Agape Ln.,,Doyline,LA,71023,5,318-745-3002,W,M,,310,12/31/2010,1/1/2007,Mr. Watson +Alderman ,Village of Dubberly ,P. O. Box 69,,Dubberly,LA,71024,318-371-9528,WEBSTER,"""John"" Brown",317 Catalpa Lane,,Dubberly,LA,71024,5,318-371-9559,W,M,D,310,12/31/2012,1/1/2009,Mr. Brown +Alderman ,Village of Dubberly ,P. O. Box 69,,Dubberly,LA,71024,318-371-9528,WEBSTER,Douglas Culpepper,2020 Nursery Rd.,,Dubberly,LA,71024,5,318-371-1598,W,M,R,310,12/31/2012,1/1/2009,Mr. Culpepper +Alderman ,Village of Dubberly ,P. O. Box 69,,Dubberly,LA,71024,318-371-9528,WEBSTER,Lynn Pittman-Cooley,768 Airport Rd.,,Dubberly,LA,71024,5,318-377-4954,W,F,,310,12/31/2012,1/1/2009,Ms. Cooley +Alderman ,Village of Heflin ,P. O. Box 98,,Heflin,LA,71039,318-377-2708,WEBSTER,Todd Leake,P.O. Box 2,,Heflin,LA,71039,5,318-377-7325,W,M,D,310,12/31/2010,1/1/2007,Mr. Leake +Alderman ,Village of Heflin ,P. O. Box 98,,Heflin,LA,71039,318-377-2708,WEBSTER,"Catherine ""Cathy"" Lee",515 S. Main St.,,Heflin,LA,71039,5,318-377-7539,W,F,D,310,12/31/2010,1/1/2007,Ms.Lee +Alderman ,Village of Heflin ,P. O. Box 98,,Heflin,LA,71039,318-377-2708,WEBSTER,Robert Stachowicz,477 N. Main St.,,Heflin,LA,71039,5,318-371-1737,W,M,R,310,12/31/2010,1/1/2007,Mr. Stachowicz +Alderman ,Village of Shongaloo ,P. O. Box 74,,Shongaloo,LA,71072,318-846-2876,WEBSTER,Joe Morgan,P.O. Box 28,,Shongaloo,LA,71072,5,318-846-2287,W,M,R,310,12/31/2012,1/1/2009,Mr. Morgan +Alderman ,Village of Shongaloo ,P. O. Box 74,,Shongaloo,LA,71072,318-846-2876,WEBSTER,Kathy Pipkin,12730 Hwy. 159,,Shongaloo,LA,71072,5,318-846-2820,W,F,,310,12/31/2012,1/1/2009,Ms. Pipkin +Alderman ,Village of Shongaloo ,P. O. Box 74,,Shongaloo,LA,71072,318-846-2876,WEBSTER,Ann Sexton,268 Sexton Dr.,,Shongaloo,LA,71072,5,318-846-2810,W,F,R,310,12/31/2012,1/1/2009,Ms. Sexton +Councilman ,"District A, City of Minden ",P. O. Box 580,,Minden,LA,71058-0580 ,318-377-2144,WEBSTER,Rodney D. Seamster,617 Durwood Dr.,,Minden,LA,71055,5,318-377-0164,B,M,D,310,12/31/2010,1/1/2007,Mr. Seamster +Councilman ,"District B, City of Minden ",P. O. Box 580,,Minden,LA,71058-0580 ,318-377-2144,WEBSTER,Fayrine Kennon-Gilbert,P.O. Box 605,,Minden,LA,71055,5,318-377-0934,B,F,D,310,12/31/2010,1/1/2007,Ms. Gilbert +Councilman ,"District C, City of Minden ",P. O. Box 580,,Minden,LA,71058-0580 ,318-377-2144,WEBSTER,Magaline M. Quarles,1201 Bayou Ave.,,Minden,LA,71055,5,318-377-0239,B,F,D,310,12/31/2010,1/1/2007,Ms. Quarles +Councilman ,"District D, City of Minden ",P. O. Box 580,,Minden,LA,71058-0580 ,318-377-2144,WEBSTER,"""Tommy"" Davis",225 Woodhaven Dr.,,Minden,LA,71055,5,318-371-1844,W,M,R,310,12/31/2010,1/1/2007,Mr. Davis +Councilman ,"District E, City of Minden ",P. O. Box 580,,Minden,LA,71058-0580 ,318-377-2144,WEBSTER,Benny Gray,833 Country Club Cir.,,Minden,LA,71055,5,318-377-5945,W,M,D,310,12/31/2010,1/1/2007,Mr. Gray +DPEC Member ,at Large ,,,,LA,,,WEST BATON ROUGE,Michael B. Cazes,2047 Antonio Dr.,,Port Allen,LA,70767,5,225-749-3341,W,M,D,54,2/20/2012,2/20/2008,Mr. Cazes +DPEC Member ,at Large ,,,,LA,,,WEST BATON ROUGE,Jeffrey C. Kershaw,2041 Holly Wood Ct.,,Port Allen,LA,70767,5,225-749-9173,W,M,D,54,2/20/2012,2/20/2008,Mr. Kershaw +DPEC Member ,District 1 ,,,,LA,,,WEST BATON ROUGE,,,,,,,0,,,,,56,,, +DPEC Member ,District 2 ,,,,LA,,,WEST BATON ROUGE,"George ""Skipper"" Grady",1848 Allene St.,,Brusly,LA,70719,5,225-749-0081,W,M,D,56,2/20/2012,2/20/2008,Mr. Grady +DPEC Member ,District 3 ,,,,LA,,,WEST BATON ROUGE,"Rawlston D. Phillips, Jr.",P.O. Box 917,,Port Allen,LA,70767,5,225-749-3504,W,M,D,56,2/20/2012,2/20/2008,Mr. Phillips +DPEC Member ,District 4 ,,,,LA,,,WEST BATON ROUGE,Thomas J. Leblanc,675 Florida Ave.,,Port Allen,LA,70767,5,225-343-4134,W,M,D,56,2/20/2012,2/20/2008,Mr. Leblanc +DPEC Member ,District 5 ,,,,LA,,,WEST BATON ROUGE,,,,,,,0,,,,,56,,, +DPEC Member ,District 6 ,,,,LA,,,WEST BATON ROUGE,Huey P. Brown,3924 North River Rd.,,Port Allen,LA,70767,5,225-343-5900,W,M,D,56,2/20/2012,2/20/2008,Mr. Brown +DPEC Member ,District 7 ,,,,LA,,,WEST BATON ROUGE,,,,,,,0,,,,,56,,, +DPEC Member ,District 8 ,,,,LA,,,WEST BATON ROUGE,Anthony R. Ferdinand,5337 Flynn Rd.,,Port Allen,LA,70767,5,225-627-6880,B,M,D,56,2/20/2012,2/20/2008,Mr. Ferdinand +DPEC Member ,District 9 ,,,,LA,,,WEST BATON ROUGE,,,,,,,0,,,,,56,,, +RPEC Member ,at Large ,,,,LA,,,WEST BATON ROUGE,,,,,,,0,,,,,64,,, +RPEC Member ,District 1 ,,,,LA,,,WEST BATON ROUGE,,,,,,,0,,,,,66,,, +RPEC Member ,District 2 ,,,,LA,,,WEST BATON ROUGE,,,,,,,0,,,,,66,,, +RPEC Member ,District 3 ,,,,LA,,,WEST BATON ROUGE,,,,,,,0,,,,,66,,, +RPEC Member ,District 4 ,,,,LA,,,WEST BATON ROUGE,Joseph B. Hagmann,651 Georgia Ave.,,Port Allen,LA,70767,5,225-388-0990,W,M,R,66,2/20/2012,2/20/2008,Mr. Hagmann +RPEC Member ,District 5 ,,,,LA,,,WEST BATON ROUGE,,,,,,,0,,,,,66,,, +RPEC Member ,District 6 ,,,,LA,,,WEST BATON ROUGE,,,,,,,0,,,,,66,,, +RPEC Member ,District 7 ,,,,LA,,,WEST BATON ROUGE,,,,,,,0,,,,,66,,, +RPEC Member ,District 8 ,,,,LA,,,WEST BATON ROUGE,,,,,,,0,,,,,66,,, +RPEC Member ,District 9 ,,,,LA,,,WEST BATON ROUGE,,,,,,,0,,,,,66,,, +Sheriff ,,P. O. Box 129,,Port Allen,LA,70767,225-343-9234,WEST BATON ROUGE,"Michael ""Mike"" Cazes",P.O. Box 129,,Port Allen,LA,70767,5,225-749-3341,W,M,D,225,6/30/2012,7/1/2008,Sheriff Cazes +Clerk of Court ,,P. O. Box 107,,Port Allen,LA,70767,225-383-0378,WEST BATON ROUGE,Mark J. Graffeo,P.O. Box 107,,Port Allen,LA,70767,5,225-381-9721,W,M,D,230,6/30/2012,7/1/2008,Mr. Graffeo +Assessor ,,P.O. Box 76,,Port Allen,LA,70767,225-344-6777,WEST BATON ROUGE,"Barney ""Frog"" Altazan",603 Oaks Ave.,,Port Allen,LA,70767,5,225-343-4152,W,M,D,235,12/31/2012,1/1/2009,Mr. Altazan +Coroner ,,P.O. Box 951,,Port Allen,LA,70767,225-336-2429,WEST BATON ROUGE,"""Phil"" Padgett",635 Maryland Ave.,,Port Allen,LA,70767,5,225-343-2922,W,M,R,240,3/25/2012,3/24/2008,Mr. Padgett +Parish President ,,P.O. Box 757,,Port Allen,LA,70767-0757 ,225-383-4755,WEST BATON ROUGE,"Riley ""Pee Wee"" Berthelot",4185 Fitzgerald St.,,Addis,LA,70710,5,225-687-4767,W,M,D,243,1/9/2012,1/14/2008,Mr. Berthelot +Council Member,District 1,P. O. Box 757,,Port Allen,LA,70767,225-383-4755,WEST BATON ROUGE,Randal Mouch,8326 First St.,,Addis,LA,70710,5,225-687-3891,W,M,D,245,1/9/2012,1/14/2008,Mr. Mouch +Council Member ,District 2 ,P. O. Box 757,,Port Allen,LA,70767,225-383-4755,WEST BATON ROUGE,"Jeffrey ""Petit"" Kershaw",2041 Holly Wood Court,,Port Allen,LA,70767,5,225-749-9173,W,M,D,245,1/9/2012,1/14/2008,Mr. Kershaw +Council Member ,District 3 ,P. O. Box 757,,Port Allen,LA,70767,225-383-4755,WEST BATON ROUGE,"Keith K. ""Keedy"" Washington, Sr.",P.O. Box 360,,Brusly,LA,70719,5,225-749-7902,B,M,D,245,1/9/2012,1/14/2008,Mr. Washington +Council Member ,District 4 ,P. O. Box 757,,Port Allen,LA,70767,225-383-4755,WEST BATON ROUGE,Ricky Loupe,2439 Riverside Dr.,,Port Allen,LA,70767,5,225-749-9305,W,M,D,245,1/9/2012,1/14/2008,Mr. Loupe +Council Member ,District 5 ,P. O. Box 757,,Port Allen,LA,70767,225-383-4755,WEST BATON ROUGE,Charlene Gordon,P.O. Box 421,,Port Allen,LA,70767,5,225-336-4176,B,F,D,245,1/9/2012,1/14/2008,Ms. Gordon +Council Member ,District 6 ,P. O. Box 757,,Port Allen,LA,70767,225-383-4755,WEST BATON ROUGE,"""Phil"" Porto, Jr.",3226 Rosario St.,,Port Allen,LA,70767,5,225-383-9673,W,M,D,245,1/9/2012,1/14/2008,Mr. Porto +Council Member ,District 7 ,P. O. Box 757,,Port Allen,LA,70767,225-383-4755,WEST BATON ROUGE,"Gary ""Sprout"" Spillman",6949 Bueche Rd.,,Bueche,LA,70729,5,225-627-6438,W,M,D,245,1/9/2012,1/14/2008,Mr. Spillman +Council Member ,District 8 ,P. O. Box 757,,Port Allen,LA,70767,225-383-4755,WEST BATON ROUGE,"Alethea ""Lisa Green"" Johnson",4426 Rougon Rd.,,Port Allen,LA,70767,5,,B,F,D,245,1/9/2012,1/14/2008,Mr. Johnson +Council Member ,District 9 ,P. O. Box 757,,Port Allen,LA,70767,225-383-4755,WEST BATON ROUGE,"Edward G. ""Bob"" Robertson",P.O. Box 504,,Port Allen,LA,70767,5,225-344-5164,B,M,D,245,1/9/2012,1/14/2008,Mr. Robertson +City Judge ,"City Court, City of Port Allen ",P. O. Box 93,,Port Allen,LA,70767,225-346-4702,WEST BATON ROUGE,"William T. ""Will"" Kleinpeter",1848 Fairview Dr.,,Port Allen,LA,70767,5,225-749-9269,W,M,R,250,12/31/2014,1/1/2009,Mr. Kleinpeter +City Marshal ,"City Court, City of Port Allen ",P. O. Box 93,,Port Allen,LA,70767,225-346-4702,WEST BATON ROUGE,"Michael ""Mike"" Zito",917 Brantford Dr.,,Port Allen,LA,70767,5,225-383-2747,W,M,D,250,12/31/2014,1/1/2009,Marshal Zito +Member of School Board ,at Large ,3761 Rosedale Rd.,,Port Allen,LA,70767,225-343-6100,WEST BATON ROUGE,C.A. Altazan,824 Ave. E,,Port Allen,LA,70767,5,225-383-5445,W,M,D,255,12/31/2010,1/1/2007,Mr. Altazan +Member of School Board ,District I ,3761 Rosedale Rd.,,Port Allen,LA,70767,225-343-6100,WEST BATON ROUGE,Cynthia Mouch Crochet,7022 S. River Rd.,,Addis,LA,70710,5,225-749-2094,W,F,R,255,12/31/2010,1/1/2007,Mr. Crochet +Member of School Board ,District II ,3761 Rosedale Rd.,,Port Allen,LA,70767,225-343-6100,WEST BATON ROUGE,Cecile G. Gauthreaux,3760 Emily Dr.,,Port Allen,LA,70767,5,225-749-8458,W,F,D,255,12/31/2010,1/1/2007,Mr. Gauthreaux +Member of School Board ,District III ,3761 Rosedale Rd.,,Port Allen,LA,70767,225-343-6100,WEST BATON ROUGE,Atley D. Walker,3751 Lukeville Lane,,Brusly,LA,70719,5,225-749-3036,B,M,D,255,12/31/2010,1/1/2007,Mr. Walker +Member of School Board ,District IV ,3761 Rosedale Rd.,,Port Allen,LA,70767,225-343-6100,WEST BATON ROUGE,"Ronald ""Blue"" LeBlanc",740 Oaks Ave.,,Port Allen,LA,70767,5,225-346-8127,W,M,D,255,12/31/2010,1/1/2007,Mr. LeBlanc +Member of School Board ,District IX ,3761 Rosedale Rd.,,Port Allen,LA,70767,225-343-6100,WEST BATON ROUGE,"Michael ""Mike"" Maranto",18515 North River Rd.,,Bueche,LA,70729,5,225-627-5689,W,M,D,255,12/31/2010,1/1/2007,Mr. Maranto +Member of School Board ,District V ,3761 Rosedale Rd.,,Port Allen,LA,70767,225-343-6100,WEST BATON ROUGE,"Leon N. Goudeau, Sr.",515 Heliotrope St.,,Port Allen,LA,70767,5,225-383-6392,B,M,D,255,12/31/2010,5/12/2009,Mr. Goudeau +Member of School Board ,District VI ,3761 Rosedale Rd.,,Port Allen,LA,70767,225-343-6100,WEST BATON ROUGE,"Thelma L. Pattan, ",3761 Rosedale Rd,,Port Allen,LA,70767,5,,,,,255,,2/9/2010,Mrs. Pattan +Member of School Board ,District VII ,3761 Rosedale Rd.,,Port Allen,LA,70767,225-343-6100,WEST BATON ROUGE,"George Alden Chustz, Jr.",10941 L. J. Lane,,Port Allen,LA,70767,5,225-627-9389,W,M,D,255,12/31/2010,1/1/2007,Mr. Chutz +Member of School Board ,District VIII ,3761 Rosedale Rd.,,Port Allen,LA,70767,225-343-6100,WEST BATON ROUGE,Jason Manola,2644 Riverside Dr.,,Port Allen,LA,70767,5,225-749-3432,W,M,D,255,12/31/2010,1/1/2007,Mr. Manola +Justice of the Peace ,Justice of the Peace Ward 1 ,7656 S. River Rd.,,Addis,LA,70710,225-749-2035,WEST BATON ROUGE,Thomas Glenn Prejean,7656 South River Rd.,,Addis,LA,70710,5,225-749-2035,W,M,D,265,12/31/2014,1/1/2009,Mr. Prejean +Justice of the Peace ,Justice of the Peace Ward 2 ,210 Richard St.,,Brusly,LA,70719,225-749-2142,WEST BATON ROUGE,"H. ""Gil"" Banta",3130 Live Oak Dr.,,Brusly,LA,70719,5,225-749-8128,W,M,R,265,12/31/2014,1/1/2009,Mr. Banta +Justice of the Peace ,Justice of the Peace Ward 4 ,2141 Lafiton Ln.,,Port Allen,LA,70767,225-267-6719,WEST BATON ROUGE,"Michael ""Mike"" Ryan",2141 Lafiton Ln.,,Port Allen,LA,70767,5,225-267-6719,W,M,,265,12/31/2014,1/1/2009,Mr. Ryan +Justice of the Peace ,Justice of the Peace Ward 5 ,6111 David Rd.,,Port Allen,LA,70767,225-383-7909,WEST BATON ROUGE,Fern David,6111 Nolan David Rd.,,Port Allen,LA,70767,5,225-383-7909,W,F,D,265,12/31/2014,1/1/2009,Ms. David +Justice of the Peace ,Justice of the Peace Ward 6 ,6738 Bueche Rd.,,Bueche,LA,70720,225-627-6637,WEST BATON ROUGE,James Ducote,9243 Burnside Rd.,,Erwinville,LA,70729,5,225-627-3975,W,M,D,265,12/31/2014,1/1/2009,Mr. Ducote +Justice of the Peace ,Justice of the Peace Ward 7 ,P.O.Box 172,,Port Allen,LA,70767,225-627-5215,WEST BATON ROUGE,"James ""Jimmy"" Womack",P.O. Box 172,,Erwinville,LA,70729,5,225-627-5215,W,M,D,265,12/31/2014,1/1/2009,Mr. Womack +Constable ,Justice of the Peace Ward 1 ,4932 Myrle Dr.,,Addis,LA,70710,225-687-5352,WEST BATON ROUGE,Rhonda LeBlanc Kelley,4932 Myrle St.,,Addis,LA,70710,5,225-687-5352,W,F,D,267,12/31/2014,1/1/2009,Ms. Kelleu +Constable ,Justice of the Peace Ward 2 ,210 Richard St.,,Brusly,LA,70719,225-749-2142,WEST BATON ROUGE,Charles Zalfen,2228 Live Oak Dr.,,Brusly,LA,70719,5,225-749-3373,W,M,D,267,12/31/2014,1/1/2009,Mr. Zalfren +Constable ,Justice of the Peace Ward 4 ,3534 Kahns Rd.,,Port Allen,LA,70767,225-383-0027,WEST BATON ROUGE,"Jerome M. ""Jimmy"" Fontana",3534 Kahns Rd.,,Port Allen,LA,70767,5,225-383-0027,W,M,D,267,12/31/2014,1/1/2009,Mr. Fonatana +Constable ,Justice of the Peace Ward 5 ,P.O. Box 513,,Port Allen,LA,70767,225-343-0336,WEST BATON ROUGE,"Michael ""Mike"" David",P. O. Box 513,,Port Allen,LA,70767,5,225-343-0336,W,M,D,267,12/31/2014,1/1/2009, +Constable ,Justice of the Peace Ward 6 ,6358 Bueche Rd.,,Port Allen,LA,70767,225-627-5468,WEST BATON ROUGE,Vorise Miller,6358 Bueche Rd.,,Erwinville,LA,70729,5,225-627-5468,W,M,D,267,12/31/2014,1/1/2009,Mr. Miller +Constable ,Justice of the Peace Ward 7 ,3953 Poydras Bayou Dr.,,Port Allen,LA,70767,225-627-4017,WEST BATON ROUGE,"""Johnny"" Lurry",3623 Poydras Bayou,,Port Allen,LA,70767,5,225-627-4475,W,M,R,267,12/31/2014,1/1/2009,Mr. Lurry +Mayor ,City of Port Allen ,P. O. Box 468,,Port Allen,LA,,225-346-5670,WEST BATON ROUGE,Derek A. Lewis,P. O. Box 1093,,Port Allen,LA,70767,5,225-387-1540,B,M,D,300,12/31/2012,1/1/2009,Mayor Lewis +Mayor ,Town of Addis ,P. O. Box 237,,Addis,LA,,225-687-4844,WEST BATON ROUGE,Carroll P. Bourgeois,P. O. Box 293,,Addis,LA,70710,5,225-687-2932,W,M,D,300,12/31/2012,1/1/2009,Mayor Bourgeois +Mayor ,Town of Brusly ,P. O. Box 510,,Brusly,LA,,225-749-2909,WEST BATON ROUGE,"""Joey"" Normand",3419 Live Oak Dr.,,Brusly,LA,70719,5,225-749-3435,W,M,,300,12/31/2012,1/1/2009,Mayor +Chief of Police ,City of Port Allen ,P. O. Box 468,,Port Allen,LA,70767,225-346-5670,WEST BATON ROUGE,"""Fred"" Smith",980 Sixth St.,,Port Allen,LA,70767,5,225-387-0506,B,M,D,305,12/31/2012,1/1/2009,Chief Smith +Chief of Police ,Town of Addis ,P. O. Box 237,,Addis,LA,70710,225-687-4844,WEST BATON ROUGE,"Richard Alton ""Ricky"" Anderson",P. O. Box 716,,Addis,LA,70710,5,225-687-8881,W,M,D,305,12/31/2012,1/1/2009,Chief Anderson +Chief of Police ,Town of Brusly ,P. O. Box 510,,Brusly,LA,70719,225-749-2909,WEST BATON ROUGE,Jamie Whaley,2021 Allene St.,,Brusly,LA,70719,5,225-749-8104,W,M,D,305,12/31/2012,1/1/2009,Chief Whaley +Council Member at Large ,City of Port Allen ,,,,LA,,,WEST BATON ROUGE,R. J. Loupe,138 N. Jefferson Ave.,,Port Allen,LA,70767,5,225-344-7909,W,M,D,308,12/31/2012,1/1/2009,Mr. Loupe +Council Member ,"District I, City of Port Allen ",P. O. Box 468,,Port Allen,LA,70767,225-346-5670,WEST BATON ROUGE,Ray Helen Lawrence,1334 Oregon Ave.,,Port Allen,LA,70767,5,225-344-4830,B,F,D,310,12/31/2012,1/1/2009,Mr. Lawrence +Council Member ,"District II, City of Port Allen ",P. O. Box 468,,Port Allen,LA,70767,225-346-5670,WEST BATON ROUGE,"Hugh ""Hootie"" Riviere",456 Ave. D,,Port Allen,LA,70767,5,225-344-1279,W,M,,310,12/31/2012,1/1/2009,Mr. Riviere +Council Member ,"District III, City of Port Allen ",P. O. Box 468,,Port Allen,LA,70767,225-346-5670,WEST BATON ROUGE,Ralph Bergeron,244 Palm St.,,Port Allen,LA,70767,5,,W,M,D,310,12/31/2012,1/1/2009,Mr. Bergeron +Council Member ,"District IV, City of Port Allen ",P. O. Box 468,,Port Allen,LA,70767,225-346-5670,WEST BATON ROUGE,"Irvrie A. ""Ivory"" Johnson",1085 Georgia Ave.,,Port Allen,LA,70767,5,225-383-3428,B,M,D,310,12/31/2012,1/1/2009,Mr. Johnson +Council Member ,Town of Addis ,P. O. Box 237,,Addis,LA,70710,225-687-4844,WEST BATON ROUGE,"Wilson ""Hook"" Cazes",3777 Justice Ave.,,Addis,LA,70710,5,225-687-9737,W,M,D,310,12/31/2012,1/1/2009,Mr. Cazes +Council Member ,Town of Addis ,P. O. Box 237,,Addis,LA,70710,225-687-4844,WEST BATON ROUGE,"Lance ""Yogi"" Gauthreaux",8123 First St.,,Addis,LA,70710,5,225-687-4741,W,M,,310,12/31/2012,1/1/2009,Mr. Gauthreaux +Council Member ,Town of Addis ,P. O. Box 237,,Addis,LA,70710,225-687-4844,WEST BATON ROUGE,"Joseph ""Blackie"" Landry",P.O. Box 329,,Addis,LA,70710,5,225-687-2255,W,M,D,310,12/31/2012,1/1/2009,Mr. Landry +Council Member ,Town of Addis ,P. O. Box 237,,Addis,LA,70710,225-687-4844,WEST BATON ROUGE,"Russell ""Rusty"" Parrish",7723 First St.,,Addis,LA,70710,5,,W,M,D,310,12/31/2012,1/1/2009,Mr. Parrish +Council Member ,Town of Addis ,P. O. Box 237,,Addis,LA,70710,225-687-4844,WEST BATON ROUGE,David H. Toups,8246 First St.,,Addis,LA,70710,5,225-687-3776,W,M,D,310,12/31/2012,1/1/2009,Mr. Toups +Council Member ,Town of Brusly ,P. O. Box 510,,Brusly,LA,70719,225-749-2909,WEST BATON ROUGE,David Shane Andre',300 Gleason St.,,Brusly,LA,70719,5,225-749-6251,W,M,,310,12/31/2012,1/1/2009,Mr. Andre +Council Member ,Town of Brusly ,P. O. Box 510,,Brusly,LA,70719,225-749-2909,WEST BATON ROUGE,Joanne C. Bourgeois,P. O. Box 628,,Brusly,LA,70719,5,225-749-3270,W,F,,310,12/31/2012,1/1/2009,Mr. Bourgeois +Council Member ,Town of Brusly ,P. O. Box 510,,Brusly,LA,70719,225-749-2909,WEST BATON ROUGE,James Landess Hebert,P. O. Box 389,,Brusly,LA,70719,5,225-749-2200,W,M,R,310,12/31/2012,1/1/2009,Mr. Hebert +Council Member ,Town of Brusly ,P. O. Box 510,,Brusly,LA,70719,225-749-2909,WEST BATON ROUGE,"Chris ""Fish"" Kershaw",P. O. Box 1234,,,LA,70719,5,225-749-7798,W,M,D,310,12/31/2012,1/1/2009,Mr. Kershaw +Council Member ,Town of Brusly ,P. O. Box 510,,Brusly,LA,70719,225-749-2909,WEST BATON ROUGE,Thomas Olinde,240 Oakbend Dr.,,Brusly,LA,70719,5,225-772-1493,W,M,R,310,12/31/2012,1/1/2009,Mr. Olinde +DPEC Member ,at Large ,,,,LA,,,WEST CARROLL,,,,,,,0,,,,,54,,, +DPEC Member ,District A ,,,,LA,,,WEST CARROLL,,,,,,,0,,,,,56,,, +DPEC Member ,District B ,,,,LA,,,WEST CARROLL,,,,,,,0,,,,,56,,, +DPEC Member ,District C ,,,,LA,,,WEST CARROLL,,,,,,,0,,,,,56,,, +DPEC Member ,District D ,,,,LA,,,WEST CARROLL,,,,,,,0,,,,,56,,, +DPEC Member ,District E ,,,,LA,,,WEST CARROLL,,,,,,,0,,,,,56,,, +RPEC Member ,at Large ,,,,LA,,,WEST CARROLL,Lisa Cox Reardon,P.O. Box 761,,Oak Grove,LA,71263,5,318-428-2535,,,,64,,6/18/2008,Ms. Reardon +RPEC Member ,District A ,,,,LA,,,WEST CARROLL,,,,,,,0,,,,,66,,, +RPEC Member ,District B ,,,,LA,,,WEST CARROLL,,,,,,,0,,,,,66,,, +RPEC Member ,District C ,,,,LA,,,WEST CARROLL,,,,,,,0,,,,,66,,, +RPEC Member ,District D ,,,,LA,,,WEST CARROLL,,,,,,,0,,,,,66,,, +RPEC Member ,District E ,,,,LA,,,WEST CARROLL,,,,,,,0,,,,,66,,, +Sheriff ,,P. O. Box 744,,Oak Grove,LA,71263,318-428-2331,WEST CARROLL,Jerry Philley,P O. Box 744,,Oak Grove,LA,71263,5,318-428-4390,W,M,R,225,6/30/2012,7/1/2008,Sheriff +Clerk of Court ,,P. O. Box 1078,,Oak Grove,LA,71263,318-428-2369,WEST CARROLL,Kay S. Bolding,P.O. Box 1078,,Oak Grove,LA,71263,5,318-428-4689,W,F,D,230,6/30/2012,7/1/2008,Mr. Bolding +Assessor ,,P.O. Box 610,,Oak Grove,LA,71263,318-428-2371,WEST CARROLL,DeAnna Smith,9468 Hwy. 17,,Oak Grove,LA,71263,5,318-428-9545,W,F,O,235,12/31/2012,1/1/2009,Ms. Smith +Coroner ,,502 Ross Street,,Oak Grove,LA,71263,318-428-2358,WEST CARROLL,Noli C. Guinigundo,502 Ross St.,,Oak Grove,LA,71263,5,318-428-2358,W,M,R,240,3/25/2012,3/24/2008,Mr. Guinigundo +Police Juror,District A,P.O. Drawer 630,,Oak Grove,LA,71263,318-428-3390,WEST CARROLL,Johnny Lee Simms,P.O. Box 610,,Epps,LA,71237,5,318-926-8495,W,M,D,245,1/8/2012,1/14/2008,Mr. Simms. +Police Juror ,District B ,P.O. Drawer 1608,,Oak Grove,LA,71263,318-428-3390,WEST CARROLL,"""Bill"" Ellerbe",1405 Hwy. 878,,Oak Grove,LA,71263,5,318-428-8427,W,M,D,245,1/8/2012,1/14/2008,Mr. Ellerbe +Police Juror ,District C ,P.O. Drawer 1608,,Oak Grove,LA,71263,318-428-3390,WEST CARROLL,Jack L. Madden,326 Country Lane,,Oak Grove,LA,71263,5,318-428-3346,W,M,O,245,1/8/2012,1/14/2008,Mr. Madden +Police Juror ,District D ,P.O. Drawer 1608,,Oak Grove,LA,71263,318-428-3390,WEST CARROLL,"Eugene ""Pop"" Crosby",P.O. Box 89,,Oak Grove,LA,71263,5,318-428-4398,W,M,D,245,1/8/2012,1/14/2008,Mr. Crosby +Police Juror ,District E ,P.O. Drawer 1608,,Oak Grove,LA,71263,318-428-3390,WEST CARROLL,"""Eddie"" Russell",783 Newell Rd.,,Oak Grove,LA,71263,5,318-428-8970,W,M,D,245,1/8/2012,1/14/2008,Mr. Russell +Member of School Board ,District 1 ,314 E. Main St.,,Oak Grove,LA,71263,318-428-2378,WEST CARROLL,"C. T. ""Red"" Rawls",P.O. Box 93,,Epps,LA,71237,5,318-926-5473,W,M,O,255,12/31/2010,1/1/2007,Mr. Rawls +Member of School Board ,District 2 ,314 E. Main St.,,Oak Grove,LA,71263,318-428-2378,WEST CARROLL,Donald Ray Gwin,262 Gwin Rd.,,Epps,LA,71237,5,318-926-3908,W,M,D,255,12/31/2010,1/1/2007,Mr. Gwin +Member of School Board ,District 3 ,314 E. Main St.,,Oak Grove,LA,71263,318-428-2378,WEST CARROLL,"""Kathy"" McAllister",307 Hwy. 589,,Oak Grove,LA,71263,5,318-428-2091,W,F,O,255,12/31/2010,1/1/2007,Ms. McAllister +Member of School Board ,District 4 ,314 E. Main St.,,Oak Grove,LA,71263,318-428-2378,WEST CARROLL,J. Kelly Coleman,P. O. Box 241,,Oak Grove,LA,71263,5,318-428-0405,W,M,R,255,12/31/2010,1/1/2007,Mr. Coleman +Member of School Board ,District 5 ,314 E. Main St.,,Oak Grove,LA,71263,318-428-2378,WEST CARROLL,"""J. T."" Martin, Sr.",P.O. Box 469,,Oak Grove,LA,71263,5,318-428-8840,B,M,D,255,12/31/2010,1/1/2007,Mr. Martin +Member of School Board ,District 6 ,314 E. Main St.,,Oak Grove,LA,71263,318-428-2378,WEST CARROLL,Raymond Desselle,252 Thomas Loop,,Oak Grove,LA,71263,5,318-669-1293,W,M,,255,12/31/2010,2/23/2009,Mr. Desselle +Member of School Board ,District 7 ,314 E. Main St.,,Oak Grove,LA,71263,318-428-2378,WEST CARROLL,Jerry M. Gathings,15202 Hwy. 585,,Oak Grove,LA,71263,5,318-428-2639,W,M,,255,12/31/2010,1/1/2007,Mr. Gathings +Justice of the Peace ,Justice of the Peace District 1 ,579 Hurt Rd.,,Pioneer,LA,71266,318-926-3928,WEST CARROLL,Doris Varner,579 Hurt Rd.,,Pioneer,LA,71266,5,318-926-3928,W,F,O,265,12/31/2014,1/1/2009,Ms. Varner +Justice of the Peace ,Justice of the Peace District 2 ,1038 Turner Rd.,,Oak Grove,LA,71263,318-428-3405,WEST CARROLL,Bobby R. Lee,154 Robinson Rd.,,Oak Grove,LA,71263,5,318-428-8347,W,M,,265,12/31/2014,1/1/2009,Mr. Lee +Justice of the Peace ,Justice of the Peace District 3 ,4325 Hwy 582,,Oak Grove,LA,71263,318-428-2643,WEST CARROLL,Vendal W. Fairchild,4325 Hwy. 582,,Oak Grove,LA,71263,5,318-428-2643,W,M,R,265,12/31/2014,1/1/2009,Mr. Fairchild +Justice of the Peace ,Justice of the Peace District 4 ,P.O.Box 510,,Oak Grove,LA,71263,318-428-7137,WEST CARROLL,Cecil Wayne Jones,907 East Main St.,,Oak Grove,LA,71263,5,318-428-4701,W,M,,265,12/31/2014,8/24/2009,Mr. Jones +Justice of the Peace ,Justice of the Peace District 5 ,P.O. Box 205,,Kilbourne,LA,71253,318-428-4913,WEST CARROLL,Connie Green,P.O. Box 205,,Kilbourne,LA,71253,5,318-428-4913,W,F,,265,12/31/2014,1/1/2009,Ms. Green +Constable ,Justice of the Peace District 1 ,848 Loyd Rd.,,Epps,LA,71237,318-926-3309,WEST CARROLL,Annette Sullivan King,5952 Hwy. 577,,Pioneer,LA,71266,5,318-926-4887,W,F,,267,12/31/2014,1/1/2009,Ms. King +Constable ,Justice of the Peace District 2 ,P.O. Box 176,,Pioneer,LA,71266,318-428-2227,WEST CARROLL,Tammy Thompson Hartley,6723 Hwy. 588,,Pioneer,LA,71266,5,318-428-3140,W,F,,267,12/31/2014,1/1/2009,Ms. Hartley +Constable ,Justice of the Peace District 3 ,P.O. Box 367,,Oak Grove,LA,71263,318-428-4919,WEST CARROLL,Perry W. Brantley,P.O. Box272,,Forest,LA,71242,5,318-428-8143,W,M,R,267,12/31/2014,1/1/2009,Mr. Brantley +Constable ,Justice of the Peace District 4 ,6405 Hwy. 589,,Oak Grove,LA,71263,318-428-3895,WEST CARROLL,Nell Chambless,6405 Hwy. 589,,Oak Grove,LA,71263,5,318-428-0547,W,F,D,267,12/31/2014,1/1/2009,Ms. Chambless +Constable ,Justice of the Peace District 5 ,P.O. Box 236,,Kilbourne,LA,71253,,WEST CARROLL,John A. Tullos,P.O. Box,,Kilbourne,LA,71253,5,318-428-2848,W,M,,267,12/31/2014,1/1/2009,Mr. Tullos +Mayor ,Town of Oak Grove ,P. O. Drawer 1014,,Oak Grove,LA,,318-428-3275,WEST CARROLL,Lavelle Brown,P.O. Box 421,,Oak Grove,LA,71263,5,318-428-2509,W,M,D,300,6/30/2010,7/1/2006,Mayor Brown +Mayor ,Village of Epps ,P. O. Box 253,,Epps,LA,,318-926-5224,WEST CARROLL,"""Jeff"" Guice",P.O. Box 767,,Epps,LA,71237,5,318-926-5649,W,M,O,300,12/31/2010,1/1/2007,Mr. Guice +Mayor ,Village of Forest ,P. O. Box 338,,Forest,LA,,318-428-9058,WEST CARROLL,Michael Wayne Jones,P.O. Box 397,,Forest,LA,71242,5,318-428-4779,W,M,O,300,12/31/2012,8/24/2009,Mayor Jones +Mayor ,Village of Kilbourne ,P. O. Box 395,,Kilbourne,LA,,318-428-2774,WEST CARROLL,"""Jim"" Sowell",P.O. Box 318,,Kilbourne,LA,71253,5,318-428-2926,W,M,R,300,12/31/2010,1/1/2007,Mr. Sowell +Mayor ,Village of Pioneer ,P. O. Box 153,,Pioneer,LA,,318-428-8581,WEST CARROLL,Sonia Reiter,P.O. Box 143,,Pioneer,LA,71266,5,318-428-2151,W,F,,300,12/31/2010,1/1/2007,Ms. Reiter +Chief of Police ,Village of Epps ,P. O. Box 253,,Epps,LA,71237,318-926-5224,WEST CARROLL,Roosevelt Porter,P.O. Box 73,,Epps,LA,71237,5,318-926-4487,B,M,D,305,12/31/2010,2/20/2008,Chief Porter +Chief of Police ,Village of Forest ,P. O. Box 338,,Forest,LA,71242,318-428-9058,WEST CARROLL,"James R. ""Bob"" Smith",3585 Hwy. 582,,Oak Grove,LA,71263,5,318-428-2752,W,M,O,305,12/31/2012,1/1/2009,Mr. Smith +Chief of Police ,Village of Kilbourne ,P. O. Box 395,,Kilbourne,LA,71253,318-428-2774,WEST CARROLL,Howard Tullos,P.O. Box 234,,Kilbourne,LA,71253,5,318-428-8561,W,M,R,305,12/31/2010,1/1/2007,Mr. Tullos +Chief of Police ,Village of Pioneer ,P. O. Box 153,,Pioneer,LA,71266,318-428-8581,WEST CARROLL,Michael Henderson,P.O. Box 153,,Pioneer,LA,71266,5,318-428-8581,,,,305,,11/2/2009,Chief Henderson +Alderman ,Village of Epps ,P. O. Box 253,,Epps,LA,71237,318-926-5224,WEST CARROLL,Shirley Gibson,P.O. Box 66,,Epps,LA,71237,5,318-926-5210,W,F,O,310,12/31/2010,1/1/2007,Ms. Epps +Alderman ,Village of Epps ,P. O. Box 253,,Epps,LA,71237,318-926-5224,WEST CARROLL,Charlie M. Grimble,P.O. Box 641,,Epps,LA,71237,5,318-926-5330,B,M,D,310,12/31/2010,1/1/2007,Mr. Grimble +Alderman ,Village of Epps ,P. O. Box 253,,Epps,LA,71237,318-926-5224,WEST CARROLL,Roberta P. Simms,P.O. Box 179,,Epps,LA,71237,5,318-926-1126,W,F,O,310,12/31/2010,1/1/2007,Ms. Simms +Alderman ,Village of Forest ,P. O. Box 338,,Forest,LA,71242,318-428-9058,WEST CARROLL,Theresa G. Brantley,P.O. Box 272,,Forest,LA,71242,5,318-428-8143,W,F,R,310,12/31/2012,1/1/2009,Ms. Brantley +Alderman ,Village of Forest ,P. O. Box 338,,Forest,LA,71242,318-428-9058,WEST CARROLL,"Charles ""Buddy"" Dukes",P.O. Box 279,,Forest,LA,71242,5,318-428-9320,W,M,,310,12/31/2012,1/1/2009,Mr. Dukes +Alderman ,Village of Forest ,P. O. Box 338,,Forest,LA,71242,318-428-9058,WEST CARROLL,Edward McKaskle,P.O. Box 357,,Forest,LA,71242,5,318-235-2254,W,M,R,310,12/31/2012,8/24/2009,Mr. McKaskle +Alderman ,Village of Forest ,P. O. Box 338,,Forest,LA,71242,318-428-9058,WEST CARROLL,Bobbie J. Wise,P.O. Box 387,,Forest,LA,71242,5,318-428-8053,W,F,,310,12/31/2012,1/1/2009,Ms. Wise +Alderman ,Village of Kilbourne ,P. O. Box 395,,Kilbourne,LA,71253,318-428-2774,WEST CARROLL,Joe Lee Allen,P.O. Box 451,,Kilbourne,LA,71253,5,318-428-8455,W,M,,310,12/31/2010,2/19/2007,Mr. Allen +Alderman ,Village of Kilbourne ,P. O. Box 395,,Kilbourne,LA,71253,318-428-2774,WEST CARROLL,Billy M. Owens,P.O. Box 24,,Kilbourne,LA,71253,5,318-428-7019,W,M,O,310,12/31/2010,1/1/2007,Mr. Owens +Alderman ,Village of Kilbourne ,P. O. Box 395,,Kilbourne,LA,71253,318-428-2774,WEST CARROLL,Toni Prine Shumate,P.O. Box 172,,Kilbourne,LA,71253,5,318-428-8906,W,F,,310,12/31/2010,1/1/2007,Mr. Shumate +Alderman ,Village of Pioneer ,P. O. Box 153,,Pioneer,LA,71266,318-428-8581,WEST CARROLL,Tamra Deniece Gunter,5967 Broadway St.,,Pioneer,LA,71266,5,318-428-0707,W,F,O,310,12/31/2010,1/1/2007,Ms. Gunter +Alderman ,Village of Pioneer ,P. O. Box 153,,Pioneer,LA,71266,318-428-8581,WEST CARROLL,Clifton Ward,P.O. Box 21,,Pioneer,LA,71266,5,318-428-2273,B,M,,310,12/31/2010,1/1/2007,Mr. Ward +Alderman ,Village of Pioneer ,P. O. Box 153,,Pioneer,LA,71266,318-428-8581,WEST CARROLL,Timmy Whatley,P.O. Box 333,,Pioneer,LA,71266,5,318-428-8387,W,M,O,310,12/31/2010,1/1/2007,Mr. Whatley +Councilman ,Town of Oak Grove ,P. O. Drawer 1014,,Oak Grove,LA,71263,318-428-3275,WEST CARROLL,Kent Elkins,P.O. Box 806,,Oak Grove,LA,71263,5,318-428-4358,W,M,R,310,6/30/2010,7/1/2006,Mr. Elkins +Councilman ,Town of Oak Grove ,P. O. Drawer 1014,,Oak Grove,LA,71263,318-428-3275,WEST CARROLL,Noel Haynes,P.O. Drawer 1014,,Oak Grove,LA,,0,,,,,310,,2/1/2009,Ms. Haynes +Councilman ,Town of Oak Grove ,P. O. Drawer 1014,,Oak Grove,LA,71263,318-428-3275,WEST CARROLL,Jim Holland,500 Park Ave.,,Oak Grove,LA,71263,5,318-428-9280,W,M,D,310,6/30/2010,7/1/2006,Mr. Holland +Councilman ,Town of Oak Grove ,P. O. Drawer 1014,,Oak Grove,LA,71263,318-428-3275,WEST CARROLL,Robert McFarlin,P.O. Box 162,,Oak Grove,LA,71263,5,318-428-3235,W,M,,310,6/30/2010,7/1/2006,Mr. McFarlin +Councilman ,Town of Oak Grove ,P. O. Drawer 1014,,Oak Grove,LA,71263,318-428-3275,WEST CARROLL,"W. B. Russell, Jr.",P.O. Box 518,,Oak Grove,LA,71263,5,318-428-2589,W,M,O,310,6/30/2010,7/1/2006,Mr. Russell +DPEC Member ,at Large ,,,,LA,,,WEST FELICIANA,,,,,,,0,,,,,54,,, +DPEC Member ,District 1 ,,,,LA,,,WEST FELICIANA,,,,,,,0,,,,,56,,, +DPEC Member ,District 2 ,,,,LA,,,WEST FELICIANA,,,,,,,0,,,,,56,,, +DPEC Member ,District 3 ,,,,LA,,,WEST FELICIANA,,,,,,,0,,,,,56,,, +DPEC Member ,District 4 ,,,,LA,,,WEST FELICIANA,,,,,,,0,,,,,56,,, +DPEC Member ,District 5 ,,,,LA,,,WEST FELICIANA,,,,,,,0,,,,,56,,, +DPEC Member ,District 6 ,,,,LA,,,WEST FELICIANA,,,,,,,0,,,,,56,,, +DPEC Member ,District 7 ,,,,LA,,,WEST FELICIANA,,,,,,,0,,,,,56,,, +RPEC Member ,at Large ,,,,LA,,,WEST FELICIANA,Philip G. Accardo,13039 Hwy. 10,,St. Francisville,LA,70775,5,225-268-2201,W,M,R,64,2/20/2012,2/20/2008,Mr. Accardo +RPEC Member ,at Large ,,,,LA,,,WEST FELICIANA,"""Mike"" Smith",P.O. BOX 295,,St. Francisville,LA,70775,5,225-266-2793,W,M,R,64,2/20/2012,2/20/2008,Mr. Smith +RPEC Member ,District 1 ,,,,LA,,,WEST FELICIANA,,,,,,,0,,,,,66,,, +RPEC Member ,District 2 ,,,,LA,,,WEST FELICIANA,,,,,,,0,,,,,66,,, +RPEC Member ,District 3 ,,,,LA,,,WEST FELICIANA,,,,,,,0,,,,,66,,, +RPEC Member ,District 4 ,,,,LA,,,WEST FELICIANA,,,,,,,0,,,,,66,,, +RPEC Member ,District 5 ,,,,LA,,,WEST FELICIANA,,,,,,,0,,,,,66,,, +RPEC Member ,District 6 ,,,,LA,,,WEST FELICIANA,,,,,,,0,,,,,66,,, +RPEC Member ,District 7 ,,,,LA,,,WEST FELICIANA,,,,,,,0,,,,,66,,, +Sheriff ,,P.O. Box 1844,,St. Francisville,LA,70775,225-635-3241,WEST FELICIANA,Austin Daniel,P.O. Box 1844,,St. Francisville,LA,70775,5,225-635-3298,W,M,D,225,6/30/2012,7/1/2008,Sheriff Daniel +Clerk of Court ,,P. O. Box 1843,,St. Francisville,LA,70775,225-635-3794,WEST FELICIANA,Felicia Ann Daniel-Hendl,P.O. Box 1843,,St. Francisville,LA,70775,5,225-635-3723,W,F,D,230,6/30/2012,7/1/2008,Ms. Daniel-Hendl +Assessor ,,P.O. Box 279,,St. Francisville,LA,70775,225-635-3350,WEST FELICIANA,"""Randy"" Ritchie",8791 Tunica Trace,,St. Francisville,LA,70775,5,225-635-3093,W,M,D,235,12/31/2012,1/1/2009,Mr. Ritchie +Coroner ,,P.O. Box 1850,,St. Francisville,LA,70775,225-635-3256,WEST FELICIANA,Chaillie P. Daniel,5393 Audubon Lane,,St. Francisville,LA,70775,5,225-635-9724,W,M,O,240,3/25/2012,3/24/2008,Mr. Daniel +Police Juror ,District 1 ,P. O. Box 1921,,St. Francisville,LA,,225-635-3864,WEST FELICIANA,Lea Reid Williams,P.O. Box 516,,St. Francisville,LA,70775,5,225-635-6540,W,F,O,245,1/8/2012,1/14/2008,Ms. Williams +Police Juror ,District 2 ,P. O. Box 1921,,St. Francisville,LA,70775,225-635-3864,WEST FELICIANA,Randy Stevens,2978 Hwy. 966,,St. Francisville,LA,70775,5,225-635-6621,W,M,R,245,1/8/2012,1/14/2008,Mr. Stevens +Police Juror ,District 3 ,P. O. Box 1921,,St. Francisville,LA,70775,225-635-3864,WEST FELICIANA,John Cobb,10637 Tunica Trace,,St. Francisville,LA,70775,5,225-635-6177,B,M,D,245,1/8/2012,1/14/2008,Mr. Cobb +Police Juror ,District 4 ,P. O. Box 1921,,St. Francisville,LA,70775,225-635-3864,WEST FELICIANA,Billy D. Shoemake,P.O. Box 23,,Tunica,LA,70782,5,225-655-3294,W,M,D,245,1/8/2012,1/14/2008,Mr. Shoemake +Police Juror ,District 5 ,P. O. Box 1921,,St. Francisville,LA,70775,225-635-3864,WEST FELICIANA,John K. Roach,15456 Hwy. 421,,St. Francisville,LA,70775,5,225-635-4736,B,M,D,245,1/8/2012,1/14/2008,Mr. Roach +Police Juror ,District 6 ,P. O. Box 1921,,St. Francisville,LA,70775,225-635-3864,WEST FELICIANA,Kenneth R. Dawson,P.O. Box 32,,St. Francisville,LA,70775,5,225-635-4935,B,M,D,245,1/8/2012,1/14/2008,Mr. Dawson +Police Juror ,District 7 ,P. O. Box 1921,,St. Francisville,LA,70775,225-635-3864,WEST FELICIANA,Otis L. Wilson,P.O. Box 162,,St. Francisville,LA,70775,5,225-721-0881,B,M,D,245,1/8/2012,1/14/2008,Mr. Wilson +Member of School Board ,District 1 ,P. O. Box 1910,,St. Francisville,LA,70775,225-635-3891,WEST FELICIANA,Amanda Temple McKinney,P.O. Box 2431,,St. Francisville,LA,70775,5,225-635-9753,W,F,O,255,12/31/2010,1/1/2007,Ms McKinney +Member of School Board ,District 2 ,P. O. Box 1910,,St. Francisville,LA,70775,225-635-3891,WEST FELICIANA,Kevin Beauchamp,5916 Hwy. 966,,St. Francisville,LA,70775,5,225-635-6418,W,M,O,255,12/31/2010,1/1/2007,Mr. Beauchamp +Member of School Board ,District 3 ,P. O. Box 1910,,St. Francisville,LA,70775,225-635-3891,WEST FELICIANA,"James A. ""Jimmy"" White",8868 Heir Rd.,,Solitude,LA,70775,5,225-635-6835,B,M,D,255,12/31/2010,1/1/2007,Mr. White +Member of School Board ,District 4 ,P. O. Box 1910,,St. Francisville,LA,70775,225-635-3891,WEST FELICIANA,"David A. Cornette, Sr.",P.O. Box 1910,,St. Francisville,LA,70775,5,225-655-4866,W,M,D,255,12/31/2010,1/1/2007,Mr. Cornette +Member of School Board ,District 5 ,P. O. Box 1910,,St. Francisville,LA,70775,225-635-3891,WEST FELICIANA,Milton Coats,8245 Sage Hill Rd.,,St. Francisville,LA,70775,5,225-635-6007,B,M,D,255,12/31/2010,1/1/2007,Mr. Coats +Member of School Board ,District 6 ,P. O. Box 1910,,St. Francisville,LA,70775,225-635-3891,WEST FELICIANA,Kelly O'Brien,9093 Airport Rd.,,St. Francisville,LA,70775,5,225-635-9547,W,F,R,255,12/31/2010,4/14/2009,Ms. O'Brien +Member of School Board ,District 7 ,P. O. Box 1910,,St. Francisville,LA,70775,225-635-3891,WEST FELICIANA,Sara Wilson-Wright,P.O. Box 1543,,St. Francisville,LA,70775,5,225-635-3017,B,F,D,255,12/31/2010,1/1/2007,Ms. Wright +Justice of the Peace ,Parishwide Justice of the Peace District ,P.O.Box 1337,,St. Francisville,LA,70775,225-635-6073,WEST FELICIANA,"""Dusty"" Bickham",P.O. Box 2671,,St. Francisville,LA,70775,5,225-784-9733,W,M,R,265,12/31/2014,1/1/2009,Mr. Bickham +Constable ,Parishwide Justice of the Peace District ,P.O. Box 2093,,St. Francisville,LA,70775,225-635-5254,WEST FELICIANA,Dennis Neal,P.O. Box 452,,St. Francisville,LA,70775,5,225-635-3528,W,M,O,267,12/31/2014,1/1/2009,Mr. Neal +Mayor ,Town of St. Francisville ,P. O. Box 400,,St. Francisville,LA,,225-635-3688,WEST FELICIANA,"""Billy"" D'Aquilla",P.O. Box 905,,St. Francisville,LA,70775,5,225-635-6852,W,M,D,300,12/31/2012,1/1/2009,Mr. D'Aquilla +Alderman ,"Election Section 1, Town of St. Francisville ",P. O. Box 400,,St. Francisville,LA,70775,225-635-3688,WEST FELICIANA,"Oscar Robertson, Jr.",P.O. Box 265,,St. Francisville,LA,70775,5,225-635-0282,B,M,D,310,12/31/2012,1/1/2009,MR. Robertson +Alderman ,"Election Section 2, Town of St. Francisville ",P. O. Box 400,,St. Francisville,LA,70775,225-635-3688,WEST FELICIANA,"James C. ""Jim"" Davis",P.O. Box 542,,St. Francisville,LA,70775,5,225-635-3460,W,M,D,310,12/31/2012,1/1/2009,Mr. Davis +Alderman ,"Election Section 2, Town of St. Francisville ",P. O. Box 400,,St. Francisville,LA,70775,225-635-3688,WEST FELICIANA,"James Rucker Leake, Jr.",P.O. Box 458,,St. Francisville,LA,70775,5,225-635-6115,W,M,R,310,12/31/2012,1/1/2009,Mr. Leake +Alderman ,"Election Section 2, Town of St. Francisville ",P. O. Box 400,,St. Francisville,LA,70775,225-635-3688,WEST FELICIANA,"Robert P. Leake, Jr.",P.O. Box 1428,,St. Francisville,LA,70775,5,225-324-4052,W,M,O,310,12/31/2012,1/1/2009,Mr. Leake +Alderman ,"Election Section 2, Town of St. Francisville ",P. O. Box 400,,St. Francisville,LA,70775,225-635-3688,WEST FELICIANA,Abby Temple,P.O. Box 2884,,St. Francisville,LA,70775,5,225-721-3171,W,F,O,310,12/31/2012,1/1/2009,Ms. Temple +DPEC Member ,at Large ,,,,LA,,,WINN,Marvin R. Harrell,114 Dogwood Dr.,,Winnfield,LA,71483,5,318-628-4587,W,M,D,54,2/20/2012,2/20/2008,Mr. Harrell +DPEC Member ,at Large ,,,,LA,,,WINN,Wayne T. Moore,7451 Hwy. 167 South,,Winnfield,LA,71483,5,318-628-6124,W,M,D,54,2/20/2012,2/20/2008,Mr. Moore +DPEC Member ,at Large ,,,,LA,,,WINN,Deano Thornton,201 Cherokee Dr.,,Winnfield,LA,71483,5,318-628-3418,W,M,D,54,2/20/2012,2/20/2008,Mr. Thornton +DPEC Member ,at Large ,,,,LA,,,WINN,Michael L. Tinnerello,9374 Hwy. 84,,Winnfield,LA,71483,5,318-628-6010,W,M,D,54,2/20/2012,2/20/2008,Mr. Tinnerello +DPEC Member ,District 1 ,,,,LA,,,WINN,,,,,,,0,,,,,56,,, +DPEC Member ,District 2 ,,,,LA,,,WINN,Chester Derr,1503 Center St.,,Winnfield,LA,71483,5,318-628-4994,W,M,D,56,2/20/2012,2/20/2008,Mr. Derr +DPEC Member ,District 3 ,,,,LA,,,WINN,"""Gregg"" Davies",120 Ted Price Ln.,,Winnfield,LA,71483,5,318-628-4451,W,M,D,56,2/20/2012,2/20/2008,Mr. Davies +DPEC Member ,District 4 ,,,,LA,,,WINN,,,,,,,0,,,,,56,,, +DPEC Member ,District 5 ,,,,LA,,,WINN,Puckett Willis,P.O. Box 56,,Sikes,LA,71473,5,318-628-2431,W,M,D,56,2/20/2012,2/20/2008,Mr. Willis +DPEC Member ,District 6 ,,,,LA,,,WINN,Herman A. Castete,625 Old Union Church Rd.,,Winnfield,LA,71483,5,318-628-1911,W,M,D,56,2/20/2012,2/20/2008,Mr. Castete +DPEC Member ,District 7 ,,,,LA,,,WINN,,,,,,,0,,,,,56,,, +RPEC Member ,at Large ,,,,LA,,,WINN,,,,,,,0,,,,,64,,, +RPEC Member ,District 1 ,,,,LA,,,WINN,,,,,,,0,,,,,66,,, +RPEC Member ,District 2 ,,,,LA,,,WINN,,,,,,,0,,,,,66,,, +RPEC Member ,District 3 ,,,,LA,,,WINN,,,,,,,0,,,,,66,,, +RPEC Member ,District 4 ,,,,LA,,,WINN,,,,,,,0,,,,,66,,, +RPEC Member ,District 5 ,,,,LA,,,WINN,,,,,,,0,,,,,66,,, +RPEC Member ,District 6 ,,,,LA,,,WINN,,,,,,,0,,,,,66,,, +RPEC Member ,District 7 ,,,,LA,,,WINN,,,,,,,0,,,,,66,,, +Sheriff ,,P. O. Box 950,,Winnfield,LA,71483,318-628-4611,WINN,"A. D. ""Bodie"" Little",P.O. Box 950,,Winnfield,LA,71483,5,318-628-5603,W,M,D,225,6/30/2012,7/1/2008,Sheriff Little +Clerk of Court ,,"100 Main St., Rm. 103",,Winnfield,LA,71483,318-628-3515,WINN,"Donald E. ""Don"" Kelley","100 Main St., Rm. 103",,Winnfield,LA,71483,5,318-628-4712,W,M,D,230,6/30/2012,7/1/2008,Mr. Kelley +Assessor ,,Rm. 101 Courthouse,,Winnfield,LA,71483,318-628-3267,WINN,Lawrence Desadier,407 Bernstein St.,,Winnfield,LA,71483,5,318-628-6471,W,M,D,235,12/31/2012,1/1/2009,Mr. Desadier +Coroner ,,1405 A. Court St.,,Winnfield,LA,71483,318-628-2734,WINN,Randolph Williams,1401 Maple Street,,Winnfield,LA,71483,5,318-628-2734,W,M,D,240,3/25/2012,3/24/2008,Mr. Williams +Police Juror,District 1,P. O. Box 951,,Winnfield,LA,71483,318-628-5824,WINN,Phillip Evans,117 Eugene Evans Rd.,,St. Maurice,LA,71457,5,318-646-2045,B,M,D,245,1/8/2012,1/14/2008,Mr. Evans +Police Juror ,District 2 ,P. O. Box 951,,Winnfield,LA,71483-0951 ,318-628-5824,WINN,"Deionne ""Dee"" Carpenter",P.O. Box 1291,,Winnfield,LA,71483,5,318-628-2921,B,F,,245,1/8/2012,1/14/2008,Ms. Carpenter +Police Juror ,District 3 ,P. O. Box 951,,Winnfield,LA,71483-0951 ,318-628-5824,WINN,Doris Leeper,2960 Coldwater Road,,Winnfield,LA,71483,5,318-727-9470,W,F,D,245,1/8/2012,1/14/2008,Ms. Leeper +Police Juror ,District 4 ,P. O. Box 951,,Winnfield,LA,71483-0951 ,318-628-5824,WINN,Jack McFarland,150 Douglas Garrett Road,,Winnfield,LA,71483,5,318-727-4564,W,M,R,245,1/8/2012,1/14/2008,Mr. McFarland +Police Juror ,District 5 ,P. O. Box 951,,Winnfield,LA,71483-0951 ,318-628-5824,WINN,Kirk Miles,827 Aunt Maries Rd.,,Dodson,LA,71422,5,318-628-5408,W,M,D,245,1/8/2012,1/14/2008,Mr. Miles +Police Juror ,District 6 ,P. O. Box 951,,Winnfield,LA,71483-0951 ,318-628-5824,WINN,Dewayne Sanders,P.O. Box 199,,Joyce,LA,71440,5,318-628-3306,W,M,D,245,1/8/2012,1/14/2008,Mr. Sanders +Police Juror ,District 7 ,P. O. Box 951,,Winnfield,LA,71483-0951 ,318-628-5824,WINN,David Shelton,2909 Hwy. 1228,,Winnfield,LA,71483,5,318-628-6616,W,M,D,245,1/8/2012,1/14/2008,Mr. Shelton +City Judge ,"City Court, City of Winnfield ",P. O. Box 908,,Winnfield,LA,71483,318-628-4844,WINN,"Anastasia ""Staci"" Wiley",P. O. Box 132,,Winnfield,LA,71483,5,318-628-3825,W,F,D,250,12/31/2014,1/1/2009,Judge Wiley +City Marshal ,"City Court, City of Winnfield ",P. O. Box 908,,Winnfield,LA,71483,318-628-3900,WINN,Sidney Walton,1606 Maple St.,,Winnfield,LA,71483,5,318-628-2440,W,M,D,250,12/31/2014,1/1/2009,Marshal Walton +Member of School Board ,District 1 ,P. O. Drawer 430,,Winnfield,LA,71483,318-628-6936,WINN,David E. Procell,P.O. Box 226,,Joyce,LA,71440,5,318-628-6586,W,M,D,255,12/31/2010,1/1/2007,Mr. Procell +Member of School Board ,District 2 ,P. O. Drawer 430,,Winnfield,LA,71483,318-628-6936,WINN,Dianne Carpenter Peters,P.O. Box 121,,Winnfield,LA,71483,5,318-628-0528,B,F,,255,12/31/2010,1/1/2007,Mr. Peters +Member of School Board ,District 3 ,P. O. Drawer 430,,Winnfield,LA,71483,318-628-6936,WINN,Marsha Booker Goff,702 Hodges St.,,Winnfield,LA,71483,5,318-628-4002,B,F,D,255,12/31/2010,1/1/2007,Ms. Goff +Member of School Board ,District 4 ,P. O. Drawer 430,,Winnfield,LA,71483,318-628-6936,WINN,Rosa Williams,P.O. Box 47,,Winnfield,LA,71483,5,318-628-6394,B,F,D,255,12/31/2010,1/1/2007,Ms. Williams +Member of School Board ,District 5 ,P. O. Drawer 430,,Winnfield,LA,71483,318-628-6936,WINN,Christy Harrell,133 Dogwood Dr.,,Winnfield,LA,71483,5,318-628-1920,W,F,D,255,12/31/2010,1/1/2007,Ms. Harrell +Member of School Board ,District 6 ,P. O. Drawer 430,,Winnfield,LA,71483,318-628-6936,WINN,"""B.R."" Audirsch",904 Center St.,,Winnfield,LA,71483,5,318-628-3608,W,M,R,255,12/31/2010,1/1/2007,Mr. Audirsch +Member of School Board ,District 7 ,P. O. Drawer 430,,Winnfield,LA,71483,318-628-6936,WINN,Donald L. Richardson,849 E. Thomas Rd/,,Winnfield,LA,71483,5,318-727-8754,W,M,R,255,12/31/2010,1/1/2007,Mr. Richardson +Member of School Board ,District 8 ,P. O. Drawer 430,,Winnfield,LA,71483,318-628-6936,WINN,Rodger Smith,7057 Gum Springs Rd.,,Atlanta,LA,71404,5,318-648-0331,W,M,R,255,12/31/2010,1/1/2007,Mr. Smith +Member of School Board ,District 9 ,P. O. Drawer 430,,Winnfield,LA,71483,318-628-6936,WINN,Todd H. Martin,P.O. Box1392,,Winnfield,LA,71483,5,318-727-9291,W,M,D,255,12/31/2010,1/1/2007,Mr. Martin +Member of School Board ,District 10 ,P. O. Drawer 430,,Winnfield,LA,71483,318-628-6936,WINN,Joe Lynn Browning,231 Browning Rd.,,Dodson,LA,71422,5,318-628-5598,W,M,D,255,12/31/2010,1/1/2007,Mr. Browning +Member of School Board ,District 11 ,P. O. Drawer 430,,Winnfield,LA,71483,318-628-6936,WINN,"Gary Michael ""Mickey"" Parker, ",2285 Buckskin Rd.,,Sikes,LA,71473,5,318-628-5180,,,,255,,2/1/2010,Mr. Parker +Justice of the Peace ,Justice of the Peace Ward 6 ,163 Lynn McCoy Rd.,,Winnfield,LA,71483,318-628-5375,WINN,Ricky T. White,287 Manuel Long Rd.,,Winnfield,LA,71483,5,318-648-6970,W,M,,265,12/31/2014,1/1/2009,Mr. White +Justice of the Peace ,Justice of the Peace Ward 7 ,849 E. Thomas Rd.,,Winnfield,LA,71483,318-727-8754,WINN,Brenda Kae Richardson,849 E. Thomas Rd.,,Winnfield,LA,71483,5,318-727-8754,W,F,R,265,12/31/2014,1/1/2009,Ms. Richardson +Justice of the Peace ,Justice of the Peace Ward 8 ,148 School Rd.,,Atlanta,LA,71404,318-628-2619,WINN,Jenny Geisman,122 New Mars Hill Rd,,Atlanta,LA,71404,5,318-646-9415,W,F,R,265,12/31/2014,1/1/2009,Ms. Geisman +Justice of the Peace ,Justice of the Peace Ward 9 ,163 Hilltop Rd.,,Goldonna,LA,71031,318-727-9279,WINN,Tammy M. Griffin,163 Hilltop Rd.,,Goldonna,LA,71031,5,318-727-9279,W,F,R,265,12/31/2014,1/1/2009,Ms. Griffin +Justice of the Peace ,Justice of the Peace Ward 10 ,1992 Carter Crossing Rd.,,Dodson,LA,71422,318-628-5279,WINN,Shirley Tubbs,446 Durbin Rd.,,Dodson,LA,71422,5,318-628-2224,W,F,D,265,12/31/2014,1/1/2009,Ms. Tubbs +Justice of the Peace ,Justice of the Peace Ward 11 ,3231 Hwy. 34,,Dodson,LA,71422,318-628-7451,WINN,Nelda Murphy,3231 Hwy. 34,,Dodson,LA,71422,5,318-628-7451,W,F,D,265,12/31/2014,1/1/2009,Ms. Murphy +Justice of the Peace ,Justice of the Peace Ward 12 ,201 D. Prescott Rd.,,Winnfield,LA,71483,318-628-6555,WINN,"J. E. ""Roy"" Jones",201 D. Prescott Rd.,,Winnfield,LA,71483,5,318-628-6555,W,M,D,265,12/31/2014,1/1/2009,Mr. Jones +Constable ,Justice of the Peace Ward 6 ,146 Gene Keen Rd.,,Winnfield,LA,71483,318-628-6528,WINN,Mark C. Johns,653 Hwy. 472,,Winnfield,LA,71483,5,318-628-6582,W,M,D,267,12/31/2014,1/1/2009, +Constable ,Justice of the Peace Ward 7 ,1189 E. Thomas Rd.,,Winnfield,LA,71483,318-727-9608,WINN,"Chad Blundell, ",256 Blundell Rd.,,Winnfield,LA,71483-7628,10,318-727-8697,W,M,D,267,,2/15/2010, +Constable ,Justice of the Peace Ward 7 ,1189 E. Thomas Rd.,,Winnfield,LA,71483,318-727-9608,WINN,Kenneth Chad Blundell,P.O. Drawer 951,,Winnfield,LA,71483-0951 ,11,318-628-5824,,,,267,,9/1/2009,Mr. Blundell +Constable ,Justice of the Peace Ward 8 ,478 Hwy. 1229,,Atlanta,LA,71404,318-628-2344,WINN,John T. Williams,478 Hwy. 1229,,Atlanta,LA,71404,5,318-628-2344,W,M,D,267,12/31/2014,1/1/2009,Mr. Williams +Constable ,Justice of the Peace Ward 9 ,P.O. Box 60,,Calvin,LA,71410,318-727-9667,WINN,A. D. Abels,P.O. Box 60,,Calvin,LA,71410,5,318-727-9667,W,M,O,267,12/31/2014,1/1/2009,Mr. Abels +Constable ,Justice of the Peace Ward 10 ,1992 Carter Crossing Rd.,,Dodson,LA,71422,318-628-5279,WINN,Ernest Tubbs,446 Durbin Rd.,,Dodson,LA,71422,5,318-628-2224,W,M,D,267,12/31/2014,1/1/2009,Mr. Tubbs +Constable ,Justice of the Peace Ward 11 ,574 Shell Rd.,,Sikes,LA,71473,318-628-2857,WINN,Kaye Frances Willis,6460 Hwy. 499,,Sikes,LA,71473,5,318-628-5686,W,F,,267,12/31/2014,2/23/2009,Ms. Willis +Constable ,Justice of the Peace Ward 12 ,P.O. Drawer 951,,Winnfield,LA,71483-0951 ,318-628-6155,WINN,Kenneth Spangler,P.O. Box 252,,Joyce,LA,71440,5,318-628-5946,W,M,D,267,12/31/2014,1/1/2009,Mr. Spangler +Mayor ,City of Winnfield ,P. O. Box 509,,Winnfield,LA,,318-628-3939,WINN,Ronald Goff,P.O. Drawer 312,,Winnfield,LA,71483,5,318-628-4002,,,,300,,11/19/2009,Mayor Goff +Mayor ,Village of Atlanta ,P. O. Box 268,,Atlanta,LA,,318-628-3035,WINN,Horace Ray Teal,596 Hwy. 3136,,Atlanta,LA,71404,5,318-628-7284,W,M,O,300,12/31/2012,1/1/2009,Mayor Teal +Mayor ,Village of Calvin ,P. O. Box 180,,Calvin,LA,,318-727-9276,WINN,Bob Carpenter,P.O. Box 25,,Calvin,LA,71410,5,318-727-8772,W,M,D,300,12/31/2010,1/1/2007,Mr. Carpenter +Mayor ,Village of Dodson ,P. O. Box 86,,Dodson,LA,,318-628-3775,WINN,Loyd E. Vines,202 N. Third St.,,Dodson,LA,71422,5,318-628-5568,W,M,D,300,12/31/2010,1/1/2007,Mr. Loyd +Mayor ,Village of Sikes ,P. O. Box 116,,Sikes,LA,,318-628-7128,WINN,Kenneth Ray Womack,P.O. Box 73,,Sikes,LA,71473,5,318-628-7968,W,M,,300,12/31/2012,1/1/2009,Mr. Womack +Chief of Police ,City of Winnfield ,P. O. Box 509,,Winnfield,LA,71483,318-628-3939,WINN,Johnny Ray Carpenter,P.O. Box 694,,Winnfield,LA,71483,5,318-628-2921,B,M,,305,6/30/2010,7/1/2006,Chief Carpenter +Chief of Police ,Village of Atlanta ,P. O. Box 268,,Atlanta,LA,71404,318-628-3450,WINN,"Raymond V. Whittington, Sr.",3776 Packton-Alexandria Rd.,,Atlanta,LA,71404,5,318-628-3450,W,M,O,305,12/31/2012,1/1/2009,Mr. Whittington +Chief of Police ,Village of Calvin ,P. O. Box 180,,Calvin,LA,71410,318-727-9276,WINN,Ronald D. Canerday,P.O. Box 3,,Calvin,LA,71410,5,318-727-8729,W,M,D,305,12/31/2010,1/1/2007,Mr. Canerday +Chief of Police ,Village of Dodson ,P. O. Box 86,,Dodson,LA,71422,318-628-3775,WINN,"Vernon ""Pat"" Ashley",P.O. Box 21,,Dodson,LA,71422,5,318-628-9886,W,M,D,305,12/31/2010,1/1/2007,Mr. Ashley +Alderman ,Village of Atlanta ,P. O. Box 268,,Atlanta,LA,71404,318-628-3450,WINN,Angela G. Hanson,143 Hanson Loop,,Atlanta,LA,71404,5,318-628-5595,W,F,O,310,12/31/2012,1/1/2009,Ms. Hanson +Alderman ,Village of Atlanta ,P. O. Box 268,,Atlanta,LA,71404,318-628-3450,WINN,C.O. Spikes,184 Spikes Ln.,,Atlanta,LA,71404,5,318-628-6607,W,M,R,310,12/31/2012,1/1/2009,Mr. Spikes +Alderman ,Village of Atlanta ,P. O. Box 268,,Atlanta,LA,71404,318-628-3450,WINN,Deborah Whittington,3776 Packton-Alexandria Rd.,,Atlanta,LA,71404,5,318-628-3450,W,F,O,310,12/31/2012,1/1/2009,Ms. Whittington +Alderman ,Village of Calvin ,P. O. Box 180,,Calvin,LA,71410,318-727-9276,WINN,Bobby D. Canerday,P.O. Box 240,,Calvin,LA,71410,5,318-727-9233,W,M,D,310,12/31/2010,1/1/2007,Mr. Canerday +Alderman ,Village of Calvin ,P. O. Box 180,,Calvin,LA,71410,318-727-9276,WINN,"""Jeff"" Canerday",P.O. Box 121,,Calvin,LA,71410,5,318-727-8439,W,M,R,310,12/31/2010,1/1/2007,Mr. Canerday +Alderman ,Village of Calvin ,P. O. Box 180,,Calvin,LA,71410,318-727-9276,WINN,Mike Carpenter,P.O. Box 54,,Calvin,LA,71410,5,318-727-4767,W,M,D,310,12/31/2010,1/1/2007,Mr. Carpenter +Alderman ,Village of Dodson ,P. O. Box 86,,Dodson,LA,71422,318-628-3775,WINN,Verna Hollingsworth,P.O. Box 205,,Dodson,LA,71422,5,318-628-5162,B,F,D,310,12/31/2010,1/1/2007,Ms. Hollingsworth +Alderman ,Village of Dodson ,P. O. Box 86,,Dodson,LA,71422,318-628-3775,WINN,Karla Shively,P.O. Box 188,,Dodson,LA,71422,5,318-628-6018,W,F,D,310,12/31/2010,1/1/2007,Ms. Shively +Alderman ,Village of Dodson ,P. O. Box 86,,Dodson,LA,71422,318-628-3775,WINN,Deidre Knapp Stapleton,P.O. Box 251,,Dodson,LA,71422,5,318-628-5355,W,F,O,310,12/31/2010,1/1/2007,Ms. Stapleton +Alderman ,Village of Sikes ,P. O. Box 116,,Sikes,LA,71473,318-628-2634,WINN,Reba P. Berry,P.O. Box 75,,Sikes,LA,71473,5,318-648-6918,W,F,,310,12/31/2012,1/1/2009,Ms. Perry +Alderman ,Village of Sikes ,P. O. Box 116,,Sikes,LA,71473,318-628-2634,WINN,Michael Riffe,P.O. Box 111,,Sikes,LA,71473,5,318-628-2214,W,M,,310,12/31/2012,1/1/2009,Mr. Riffe +Alderman ,Village of Sikes ,P. O. Box 116,,Sikes,LA,71473,318-628-2634,WINN,Rita Wroten,P.o. Box 211,,Sikes,LA,71473,5,318-648-2764,W,F,,310,12/31/2012,1/1/2009,Ms. Wroten +Council Member ,"District 1, City of Winnfield ",P. O. Box 509,,Winnfield,LA,71483,318-628-3939,WINN,"Willie ""Sunset"" Holden",213 West Jones St.,,Winnfield,LA,71483,5,318-628-5987,B,M,D,310,6/30/2010,7/1/2006,Mr. Holden +Council Member ,"District 2, City of Winnfield ",P. O. Box 509,,Winnfield,LA,71483,318-628-3939,WINN,"Jeffery Hamilton, ",P.O. Box 509,,Winnfield,LA,71483,5,318-648-2941,,,,310,,12/8/2009,Mr. Hamilton +Council Member ,"District 3, City of Winnfield ",P. O. Box 509,,Winnfield,LA,71483,318-628-3939,WINN,"Sarah Junkin, ",300 Wren St.,,Winnfield,LA,71483-2662,10,318-648-6951,W,F,D,310,,, +Council Member ,"District 3, City of Winnfield ",P. O. Box 509,,Winnfield,LA,71483,318-628-3939,WINN,Sarah Russell Junkin,300 Wren St.,,Winnfield,LA,71483,5,318-648-6951,W,F,D,310,6/30/2010,7/1/2006,Ms. Junkin +Council Member ,"District 4, City of Winnfield ",P. O. Box 509,,Winnfield,LA,71483,318-628-3939,WINN,"""Matt"" Walton",1100 Maple St.,,Winnfield,LA,71483,5,318-628-6358,W,M,R,310,6/30/2010,7/1/2006,Mr. Walton +Council Member ,"District 5, City of Winnfield ",P. O. Box 509,,Winnfield,LA,71483,318-628-3939,WINN,"Kenneth ""Kenny"" Caldwell",203 East Boundary St.,,Winnfield,LA,71483,5,318-628-2350,W,M,D,310,6/30/2010,7/1/2006,Mr. Caldwell diff --git a/tests/test_refine.py b/tests/test_refine.py index 5d34775..572e082 100644 --- a/tests/test_refine.py +++ b/tests/test_refine.py @@ -38,7 +38,7 @@ def test_get_version(self): self.assertTrue(item in version_info) def test_version(self): - self.assertTrue(self.server.version in ('2.8',)) + self.assertTrue(self.server.version in ('3.0-beta',)) class RefineTest(refinetest.RefineTestCase): From a8dded8a56eed8d216b7e256ee42e85e3c9f8487 Mon Sep 17 00:00:00 2001 From: Daniel Butler windows Date: Thu, 21 Jun 2018 16:56:41 -0400 Subject: [PATCH 16/25] tests updated for server versions 2.0, 2.1, 2.5 and 2.8 --- tests/test_refine.py | 2 +- tests/test_tutorial.py | 25 ++++++++++++++++++++----- 2 files changed, 21 insertions(+), 6 deletions(-) diff --git a/tests/test_refine.py b/tests/test_refine.py index 572e082..c478047 100644 --- a/tests/test_refine.py +++ b/tests/test_refine.py @@ -38,7 +38,7 @@ def test_get_version(self): self.assertTrue(item in version_info) def test_version(self): - self.assertTrue(self.server.version in ('3.0-beta',)) + self.assertTrue(self.server.version in ('2.0', '2.1', '2.5', '2.8','3.0-beta',)) class RefineTest(refinetest.RefineTestCase): diff --git a/tests/test_tutorial.py b/tests/test_tutorial.py index 75dd48f..58c2cbd 100644 --- a/tests/test_tutorial.py +++ b/tests/test_tutorial.py @@ -139,7 +139,12 @@ def test_editing(self): self.project.engine.remove_all() # redundant due to setUp # {2} self.project.text_transform(column='Zip Code 2', expression='value.toString()[0, 5]') - self.assertInResponse('transform on 1441 cells in column Zip Code 2') + if self.server.version in ('2.0', '2.1', '2.5',): + self.assertInResponse('transform on 6067 cells in column Zip Code 2') + elif self.server.version in ('2.8',): + self.assertInResponse('transform on 1441 cells in column Zip Code 2') + elif self.server.version in ('3.0-beta'): + self.assertInResponse('transform on 1441 cells in column Zip Code 2') # {3} - XXX history # {4} office_title_facet = facet.TextFacet('Office Title') @@ -163,8 +168,12 @@ def test_editing(self): self.assertEqual(len(clusters), 7) first_cluster = clusters[0] self.assertEqual(len(first_cluster), 2) - self.assertEqual(first_cluster[0]['value'], 'DPEC Member at Large') - self.assertEqual(first_cluster[0]['count'], 6) + if self.server.version in ('2.0', '2.1', '2.5'): + self.assertEqual(first_cluster[0]['value'], 'RSCC Member') + self.assertEqual(first_cluster[0]['count'], 233) + elif self.server.version in ('2.8', '3.0-beta'): + self.assertEqual(first_cluster[0]['value'], 'DPEC Member at Large') + self.assertEqual(first_cluster[0]['count'], 6) # Not strictly necessary to repeat 'Council Member' but a test # of mass_edit, and it's also what the front end sends. self.project.mass_edit('Office Title', [{'from': ['Council Member', 'Councilmember'], 'to': 'Council Member'}]) @@ -192,9 +201,15 @@ def test_editing(self): # {5}, {6}, {7} response = self.project.compute_facets(facet.StarredFacet(True)) self.assertEqual(len(response.facets[0].choices), 2) # true & false - self.assertEqual(response.facets[0].choices[True].count, 2) + if self.server.version in ('2.0', '2.1', '2.5'): + self.assertEqual(response.facets[0].choices[True].count, 3) + elif self.server.version in ('2.8', '3.0-beta'): + self.assertEqual(response.facets[0].choices[True].count, 2) self.project.remove_rows() - self.assertInResponse('2 rows') + if self.server.version in ('2.0', '2.1', '2.5'): + self.assertInResponse('3 rows') + elif self.server.version in ('2.8', '3.0-beta'): + self.assertInResponse('2 rows') class TutorialTestDuplicateDetection(refinetest.RefineTestCase): From 417e3665c4d652ff22a03a5c0123115bd367480a Mon Sep 17 00:00:00 2001 From: Daniel Butler windows Date: Thu, 21 Jun 2018 17:00:36 -0400 Subject: [PATCH 17/25] updated for pep8 --- open/refine/refine.py | 31 +++++++++++++++++-------------- 1 file changed, 17 insertions(+), 14 deletions(-) diff --git a/open/refine/refine.py b/open/refine/refine.py index f243437..6ed7413 100644 --- a/open/refine/refine.py +++ b/open/refine/refine.py @@ -23,7 +23,10 @@ import os import re import time -import urllib.request, urllib.parse, urllib.error, urllib.response +import urllib.request +import urllib.parse +import urllib.error +import urllib.response import requests from open.refine import facet @@ -80,7 +83,8 @@ def urlopen_json(self, command, *args, **kwargs): @staticmethod def check_response_ok(response): if 'code' in response and response['code'] not in ('ok', 'pending'): - error_message = ('server ' + response['code'] + ': ' + response.get('message', response.get('stack', response))) + error_message = ('server ' + response['code'] + ': ' + + response.get('message', response.get('stack', response))) raise Exception(error_message) def get_version(self): @@ -106,8 +110,6 @@ def __init__(self, server): def new_project(self, project_file=None, project_url=None, project_name=None, project_format='text/line-based/*sv', project_file_name=None, **opts): - # TODO: Ability to add Creator, Subject, Custom Metadata - # TODO: What is Custom Metadata? Can I include information that I pass around to even out of the project if (project_file and project_url) or (not project_file and not project_url): raise ValueError('Either a project_file or project_url must be set. Both cannot be used.') params = { @@ -406,9 +408,6 @@ def json_data(operations, file_path): def export(self, export_format='tsv'): """Return a fileobject of a project's data.""" - # TODO: add functionality to be able to export large sets of data - # TODO: add functionality only one request will set data size "requirement" to choose what size sets chunking - # Probably implement response.raw and export/save it in chunks. url = ('export-rows/' + urllib.parse.quote(self.project_name()) + '.' + export_format) response = self.do_raw(url, data={'format': export_format}) return response.text @@ -445,7 +444,8 @@ def get_rows(self, facets=None, sort_by=None, start=0, limit=10): self.sorting = facet.Sorting([]) elif sort_by is not None: self.sorting = facet.Sorting(sort_by) - response = self.do_json('get-rows', params={'start': start, 'limit': limit}, data={'sorting': self.sorting.as_json()}) + response = self.do_json('get-rows', + params={'start': start, 'limit': limit}, data={'sorting': self.sorting.as_json()}) return self.rows_response_factory(response) def reorder_rows(self, sort_by=None): @@ -497,13 +497,13 @@ def mass_edit(self, column, edits, expression='value'): }, } - def compute_clusters(self, column, clusterer_type='binning', function=None, params=None): + def compute_clusters(self, column, clusterer_type='binning', refine_function=None, params=None): """Returns a list of clusters of {'value': ..., 'count': ...}.""" clusterer = self.clusterer_defaults[clusterer_type] if params is not None: clusterer['params'] = params - if function is not None: - clusterer['function'] = function + if refine_function is not None: + clusterer['function'] = refine_function clusterer['column'] = column response = self.do_json('compute-clusters', data={'clusterer': str(clusterer)}) @@ -538,8 +538,11 @@ def add_column(self, column, new_column, expression='value', column_insert_index self.get_models() return response - def split_column(self, column, separator=',', mode='separator', regex=False, guess_cell_type=True, remove_original_column=True): - response = self.do_json('split-column', + def split_column( + self, column, separator=',', mode='separator', regex=False, guess_cell_type=True, + remove_original_column=True): + response = self.do_json( + 'split-column', params={ 'columnName': column, 'separator': separator, @@ -684,4 +687,4 @@ def reconcile(self, column, service, reconciliation_type=None, reconciliation_co class InvalidFileFormat(ValueError): - pass \ No newline at end of file + pass From bb13a7264c8d1300597cd737906a06d24193c73c Mon Sep 17 00:00:00 2001 From: Daniel Butler windows Date: Thu, 21 Jun 2018 17:01:27 -0400 Subject: [PATCH 18/25] update to comply with pep8 --- open/refine/facet.py | 1 - 1 file changed, 1 deletion(-) diff --git a/open/refine/facet.py b/open/refine/facet.py index 9084ba8..8c5a507 100644 --- a/open/refine/facet.py +++ b/open/refine/facet.py @@ -18,7 +18,6 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see -import json import re From fd0066f08e701b0c6f4dbcbf6533c982aeca6989 Mon Sep 17 00:00:00 2001 From: Daniel Butler windows Date: Thu, 21 Jun 2018 17:04:24 -0400 Subject: [PATCH 19/25] updated to comply with pep8 --- tests/test_commands.py | 53 ++++++++++++++++++++++-------------------- 1 file changed, 28 insertions(+), 25 deletions(-) diff --git a/tests/test_commands.py b/tests/test_commands.py index 51cf822..6ab00f4 100644 --- a/tests/test_commands.py +++ b/tests/test_commands.py @@ -41,34 +41,38 @@ def test_get_operations(self): def test_apply_operations(self): operations_list = [ - {'op': 'core/column-addition', - 'description': 'Create column zip type at index 15 based on column Zip Code 2 using expression grel:value.type()', - 'engineConfig': - { - 'mode': 'row-based', - 'facets': [] - }, - 'newColumnName': 'zip type', - 'columnInsertIndex': 15, - 'baseColumnName': 'Zip Code 2', - 'expression': 'grel:value.type()', - 'onError': 'set-to-blank'}, { 'op': 'core/column-addition', - 'description': 'Create column testing at index 15 based on column Zip Code 2 using expression grel:value.toString()[0,5]', - 'engineConfig': - { - 'mode': 'row-based', - 'facets': [] - }, - 'newColumnName': 'testing', - 'columnInsertIndex': 15, - 'baseColumnName': 'Zip Code 2', - 'expression': 'grel:value.toString()[0,5]', - 'onError': 'set-to-blank'}, + 'description': 'Create column zip type at index 15 based on column Zip Code 2 using expression ' + 'grel:value.type()', + 'engineConfig': + { + 'mode': 'row-based', + 'facets': [] + }, + 'newColumnName': 'zip type', + 'columnInsertIndex': 15, + 'baseColumnName': 'Zip Code 2', + 'expression': 'grel:value.type()', + 'onError': 'set-to-blank'}, { 'op': 'core/column-addition', - 'description': 'Create column the same? at index 16 based on column testing using expression grel:cells["Zip Code 2"].value == value', + 'description': 'Create column testing at index 15 based on column Zip Code 2 using expression ' + 'grel:value.toString()[0,5]', + 'engineConfig': + { + 'mode': 'row-based', + 'facets': [] + }, + 'newColumnName': 'testing', + 'columnInsertIndex': 15, + 'baseColumnName': 'Zip Code 2', + 'expression': 'grel:value.toString()[0,5]', + 'onError': 'set-to-blank'}, + { + 'op': 'core/column-addition', + 'description': 'Create column the same? at index 16 based on column testing using expression ' + 'grel:cells["Zip Code 2"].value == value', 'engineConfig': { 'mode': 'row-based', @@ -120,6 +124,5 @@ def test_apply_operations(self): self.assertTrue(response["columnModel"]["columns"][15]["name"] == 'testing') - if __name__ == '__main__': unittest.main() From 568ba04a575dfe3c498441710ac440f4c6734dc1 Mon Sep 17 00:00:00 2001 From: Daniel Butler windows Date: Thu, 21 Jun 2018 17:06:50 -0400 Subject: [PATCH 20/25] updated to comply with pep8 --- tests/test_facet.py | 31 ++++++++++++++++++++++++++++--- 1 file changed, 28 insertions(+), 3 deletions(-) diff --git a/tests/test_facet.py b/tests/test_facet.py index 7b14b2a..39e3e9e 100644 --- a/tests/test_facet.py +++ b/tests/test_facet.py @@ -82,9 +82,30 @@ def test_serialize(self): engine_json = engine.as_json() self.assertEqual(engine_json, "{'facets': [], 'mode': 'row-based'}") facet = TextFacet(column='column') - self.assertEqual(facet.as_dict(), {'selectError': False, 'name': 'column', 'selection': [], 'expression': 'value', 'invert': False, 'columnName': 'column', 'selectBlank': False, 'omitBlank': False, 'type': 'list', 'omitError': False}) + self.assertEqual(facet.as_dict(), { + 'selectError': False, + 'name': 'column', + 'selection': [], + 'expression': 'value', + 'invert': False, + 'columnName': 'column', + 'selectBlank': False, + 'omitBlank': False, + 'type': 'list', + 'omitError': False + }) facet = NumericFacet(column='column', From=1, to=5) - self.assertEqual(facet.as_dict(), {'from': 1, 'to': 5, 'selectBlank': True, 'name': 'column', 'selectError': True, 'expression': 'value', 'selectNumeric': True, 'columnName': 'column', 'selectNonNumeric': True, 'type': 'range'}) + self.assertEqual(facet.as_dict(), { + 'from': 1, 'to': 5, + 'selectBlank': True, + 'name': 'column', + 'selectError': True, + 'expression': 'value', + 'selectNumeric': True, + 'columnName': 'column', + 'selectNonNumeric': True, + 'type': 'range' + }) def test_add_facet(self): facet = TextFacet(column='Party Code') @@ -130,7 +151,11 @@ def test_sorting(self): class FacetsResponseTest(unittest.TestCase): - response = """{"facets":[{"name":"Party Code","expression":"value","columnName":"Party Code","invert":false,"choices":[{"v":{"v":"D","l":"D"},"c":3700,"s":false},{"v":{"v":"R","l":"R"},"c":1613,"s":false},{"v":{"v":"N","l":"N"},"c":15,"s":false},{"v":{"v":"O","l":"O"},"c":184,"s":false}],"blankChoice":{"s":false,"c":1446}}],"mode":"row-based"}""" + response = """{"facets":[{ + "name":"Party Code","expression":"value","columnName":"Party Code","invert":false, + "choices":[{"v":{"v":"D","l":"D"},"c":3700,"s":false},{"v":{"v":"R","l":"R"},"c":1613,"s":false}, + {"v":{"v":"N","l":"N"},"c":15,"s":false},{"v":{"v":"O","l":"O"},"c":184,"s":false}], + "blankChoice":{"s":false,"c":1446}}],"mode":"row-based"}""" def test_facet_response(self): party_code_facet = TextFacet('Party Code') From e8cd4b2285a6c1721b796f605c7a005855aa9571 Mon Sep 17 00:00:00 2001 From: Daniel Butler windows Date: Thu, 21 Jun 2018 17:09:48 -0400 Subject: [PATCH 21/25] updated test to look for M or F in lines. Was looking in the entire content body --- tests/test_refine.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/test_refine.py b/tests/test_refine.py index c478047..24d4312 100644 --- a/tests/test_refine.py +++ b/tests/test_refine.py @@ -63,7 +63,9 @@ def test_delete_project(self): def test_open_export(self): content = refine.RefineProject(self.project.project_url()).export() self.assertTrue('email' in content) - for line in content: + for line in content.splitlines(): + if line == 'email name state gender purchase': + continue self.assertTrue('M' in content or 'F' in content) def test_open_export_csv(self): From e0f75fe87729fedbd4585248e3987039941d54ed Mon Sep 17 00:00:00 2001 From: Daniel Butler windows Date: Thu, 21 Jun 2018 17:10:36 -0400 Subject: [PATCH 22/25] updated for pep8 --- tests/test_refine.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/tests/test_refine.py b/tests/test_refine.py index 24d4312..d4e5c2e 100644 --- a/tests/test_refine.py +++ b/tests/test_refine.py @@ -9,9 +9,7 @@ # Copyright (c) 2011 Paul Makepeace, Real Programmers. All rights reserved. -import csv import unittest -import io from open.refine import refine from tests import refinetest @@ -38,7 +36,7 @@ def test_get_version(self): self.assertTrue(item in version_info) def test_version(self): - self.assertTrue(self.server.version in ('2.0', '2.1', '2.5', '2.8','3.0-beta',)) + self.assertTrue(self.server.version in ('2.0', '2.1', '2.5', '2.8', '3.0-beta',)) class RefineTest(refinetest.RefineTestCase): @@ -112,5 +110,6 @@ def test_options_set_properly(self): } self.assertEqual(options, expected) + if __name__ == '__main__': unittest.main() From 1c78ad60bdcd482fb8f4b7dcae6681b947202927 Mon Sep 17 00:00:00 2001 From: Daniel Butler windows Date: Thu, 21 Jun 2018 17:13:27 -0400 Subject: [PATCH 23/25] updated for pep8 --- tests/test_tutorial.py | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/tests/test_tutorial.py b/tests/test_tutorial.py index 58c2cbd..b3e7361 100644 --- a/tests/test_tutorial.py +++ b/tests/test_tutorial.py @@ -143,7 +143,7 @@ def test_editing(self): self.assertInResponse('transform on 6067 cells in column Zip Code 2') elif self.server.version in ('2.8',): self.assertInResponse('transform on 1441 cells in column Zip Code 2') - elif self.server.version in ('3.0-beta'): + elif self.server.version in ('3.0-beta',): self.assertInResponse('transform on 1441 cells in column Zip Code 2') # {3} - XXX history # {4} @@ -346,9 +346,9 @@ def test_transpose_fixed_number_of_rows_into_columns(self): # XXX there seems to be some kind of bug where the model doesn't # match get_rows() output - cellIndex being returned that are # out of range. - #self.assertTrue(a_row['Sender'] is None) - #self.assertTrue(a_row['Recipient'] is None) - #self.assertTrue(a_row['Amount'] is None) + # self.assertTrue(a_row['Sender'] is None) + # self.assertTrue(a_row['Recipient'] is None) + # self.assertTrue(a_row['Amount'] is None) # {16} for column, expression in ( ('Sender', @@ -379,7 +379,7 @@ class TutorialTestTransposeVariableNumberOfRowsIntoColumns( def test_transpose_variable_number_of_rows_into_columns(self): # {20}, {21} - if self.server.version not in ('2.0', '2.1') : + if self.server.version not in ('2.0', '2.1'): self.project.rename_column('Column 1', 'Column') self.project.add_column( 'Column', 'First Line', 'if(value.contains(" on "), value, null)') @@ -497,8 +497,8 @@ def test_web_scraping(self): self.project.text_transform('line', expression=self.filter_expr_1) self.assertInResponse('Text transform on 4554 cells in column line') # {9} - XXX following is generating Java exceptions - #filter_expr = self.filter_expr_2 % 16 - #self.project.add_column('line', 'Name', expression=filter_expr) + # filter_expr = self.filter_expr_2 % 16 + # self.project.add_column('line', 'Name', expression=filter_expr) # {10} to the final {19} - nothing new in terms of exercising the API. From 65c981425690aa3633114fac3ffbdeedcc84b857 Mon Sep 17 00:00:00 2001 From: Daniel Butler windows Date: Thu, 21 Jun 2018 17:19:58 -0400 Subject: [PATCH 24/25] updated test to be correct --- tests/test_tutorial.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_tutorial.py b/tests/test_tutorial.py index b3e7361..413f645 100644 --- a/tests/test_tutorial.py +++ b/tests/test_tutorial.py @@ -142,7 +142,7 @@ def test_editing(self): if self.server.version in ('2.0', '2.1', '2.5',): self.assertInResponse('transform on 6067 cells in column Zip Code 2') elif self.server.version in ('2.8',): - self.assertInResponse('transform on 1441 cells in column Zip Code 2') + self.assertInResponse('transform on 6958 cells in column Zip Code 2') elif self.server.version in ('3.0-beta',): self.assertInResponse('transform on 1441 cells in column Zip Code 2') # {3} - XXX history From 159b4a34524f4cbd469293f1630a93c470bf42f8 Mon Sep 17 00:00:00 2001 From: Daniel Butler windows Date: Thu, 21 Jun 2018 17:21:26 -0400 Subject: [PATCH 25/25] updated test to be correct --- tests/test_tutorial.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_tutorial.py b/tests/test_tutorial.py index 413f645..b3e7361 100644 --- a/tests/test_tutorial.py +++ b/tests/test_tutorial.py @@ -142,7 +142,7 @@ def test_editing(self): if self.server.version in ('2.0', '2.1', '2.5',): self.assertInResponse('transform on 6067 cells in column Zip Code 2') elif self.server.version in ('2.8',): - self.assertInResponse('transform on 6958 cells in column Zip Code 2') + self.assertInResponse('transform on 1441 cells in column Zip Code 2') elif self.server.version in ('3.0-beta',): self.assertInResponse('transform on 1441 cells in column Zip Code 2') # {3} - XXX history