// Updates the list of floor plans with the selected building
$( document ).ready( function (){
	$( '#building_id' ).change( function (){
		$( '#Unit' ).load( '/buildings/get_unit_options/' + $('#building_id').val() );
	});
	$( '#Unit' ).load( '/buildings/get_unit_options/' + $('#building_id').val() );
});