diff --git a/app/views/collections/_form.html.erb b/app/views/collections/_form.html.erb
index 9a60e28..38f2336 100644
--- a/app/views/collections/_form.html.erb
+++ b/app/views/collections/_form.html.erb
@@ -5,7 +5,7 @@
<%= form.text_area :description %>
<%= form.label :album %>
-<%= collection_select :collection, :album_list, Album.find(:all), :id, :title, {:selected => @collection.albums.map{|album|album.id} }, {:multiple => true, :rows => 10} %>
+<%= collection_select :collection, :album_list, Album.find(:all, :order => :title), :id, :title, {:selected => @collection.albums.map{|album|album.id} }, {:multiple => true, :rows => 10} %>
\ No newline at end of file