var geo_component_class = function(){ this.on_country_select_change = function(){ var country = $('#countries_select').val(); var url = 'http://calvarygrace.net/index.php/geo_public/on_country_select_change/'+country; $.post(url, function(data){ $('#geo_canvass').html(data); }); } this.on_state_select_change = function(){ var state = $('#states_select').val(); var url = 'http://calvarygrace.net/index.php/geo_public/on_state_select_change/'+state; $.post(url, function(data){ $('#cities_canvass').html(data); }); } }