- 01
 - 02
 - 03
 - 04
 - 05
 - 06
 - 07
 - 08
 - 09
 - 10
 - 11
 - 12
 - 13
 - 14
 - 15
 
jQuery("select[id='select1']").change(
			function () 
			{
				var city_id = jQuery(this).attr("value");
				jQuery("select[id='select_hotel']").html('<option>Выберите категорию</option>');
				jQuery("select[name='room']").html('<option>Выберите категорию и отель</option>');
				
				jQuery("select[id='select_5']").change(
					function () 
					{
						....................................
					}
				);			
			}
		);
                                    
 Follow us!