diff --git a/app/views/origami/payments/show.html.erb b/app/views/origami/payments/show.html.erb
index 00852f95..2cf6fea5 100755
--- a/app/views/origami/payments/show.html.erb
+++ b/app/views/origami/payments/show.html.erb
@@ -435,16 +435,18 @@
diff --git a/app/views/settings/employees/_form.html.erb b/app/views/settings/employees/_form.html.erb
index 0b973416..ad50e9b8 100755
--- a/app/views/settings/employees/_form.html.erb
+++ b/app/views/settings/employees/_form.html.erb
@@ -7,7 +7,11 @@
<%= f.input :name %>
- <%= f.input :role, :collection => Lookup.collection_of("employee_roles"),:class=>'form-group' %>
+ <% if current_user.role == "administrator" %>
+ <%= f.input :role, :collection => Lookup.collection_of("employee_roles"),:class=>'form-group' %>
+ <% else %>
+ <%= f.input :role, :collection => Lookup.collection_of("employee_roles").select{|r| r[1] != "administrator"},:class=>'form-group' %>
+ <% end %>
<%= f.input :emp_id, :label => "Employee Numberic ID (*Unique)" %>
<%= f.input :password %>