diff --git a/app/views/projects/_form.html.erb b/app/views/projects/_form.html.erb
index 6055477..2c86f7b 100644
--- a/app/views/projects/_form.html.erb
+++ b/app/views/projects/_form.html.erb
@@ -25,20 +25,15 @@
<% [:client, :owner, :builder].each do |role| %>
<%= sp_form.label "#{role}_id", "Select Existing #{role.capitalize}" %>
- <%= sp_form.collection_select "#{role}_id", Client.all, :id, :company_name, prompt: "Select #{role.capitalize}" %>
+ <%= sp_form.collection_select "#{role}_id", Client.all, :id, -> (client) { "#{client.company_name} (#{client.lastname}, #{client.firstname})" }, prompt: "Select #{role.capitalize}" %>