function disableSuche() {
	
}

function schnellsuche(id) {
	
	var html1 = ('<select name="sem_ort[]" id="sem_ort[]"><option value="">Bitte Auswählen</option>');
	
	 
	
	
	
	
	jQuery.ajax({
  				dataType: 'jsonp',
  				jsonp: 'jsonp_callback',
  				//url: ',
  				url: 'getOrte.php?cat='+id,
 				success: function (data) {

		jQuery.each(data.items, function(i,item){
             
              var ort1 = item.ort;
              var ortName1 = item.ortAnz;
             
              
              html1 += '<option value="'+ort1+'">'+ortName1+'</option>';
                 

            });    				
		
      	
		
		jQuery('#semOrteDiv').html(html1+'</select>'); 
          
  				} // Ende success     
	
			  }); // Ende $.ajax			
	
	
	
	

	
			
	

}

jQuery(document).ready(function(){
    
	
    /*
     * schnellsuche();
     */
});