load only working once

load only working once

I need to reload a select list, everytime the user clicks on a save button. I got it to work, but it only works once. When you click on the save button again (without refreshing the page), the list is not reloaded. This is the js I'm using to reload the list

  1. $(function(){
        $('#save').click(function(){
            $('#loadForm').fadeOut('fast').load('reload.php').fadeIn('fast');
            $('#loadForm').css('display', 'none');
        });
    });




EDIT:

ok seems like it's working fine the 1st time, but then it refreshes every 2 clicks

so:
1st save/name = 1
list value(s) = 1

2nd save/ name = 2
list value(s) = 1

3rd save/ name = 3
list value(s) = 1, 2

4th save/ name = 4
list value(s) = 1,2,3